mirror of https://github.com/k3s-io/k3s
34 lines
872 B
Go
34 lines
872 B
Go
|
// Code generated by pluginator on IAMPolicyGenerator; DO NOT EDIT.
|
||
|
// pluginator {unknown 1970-01-01T00:00:00Z }
|
||
|
|
||
|
package builtins
|
||
|
|
||
|
import (
|
||
|
"sigs.k8s.io/kustomize/api/filters/iampolicygenerator"
|
||
|
"sigs.k8s.io/kustomize/api/resmap"
|
||
|
"sigs.k8s.io/kustomize/api/types"
|
||
|
"sigs.k8s.io/yaml"
|
||
|
)
|
||
|
|
||
|
type IAMPolicyGeneratorPlugin struct {
|
||
|
types.IAMPolicyGeneratorArgs
|
||
|
}
|
||
|
|
||
|
func (p *IAMPolicyGeneratorPlugin) Config(h *resmap.PluginHelpers, config []byte) (err error) {
|
||
|
p.IAMPolicyGeneratorArgs = types.IAMPolicyGeneratorArgs{}
|
||
|
err = yaml.Unmarshal(config, p)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
func (p *IAMPolicyGeneratorPlugin) Generate() (resmap.ResMap, error) {
|
||
|
r := resmap.New()
|
||
|
err := r.ApplyFilter(iampolicygenerator.Filter{
|
||
|
IAMPolicyGenerator: p.IAMPolicyGeneratorArgs,
|
||
|
})
|
||
|
return r, err
|
||
|
}
|
||
|
|
||
|
func NewIAMPolicyGeneratorPlugin() resmap.GeneratorPlugin {
|
||
|
return &IAMPolicyGeneratorPlugin{}
|
||
|
}
|