mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
e8381db778
* Update Kubernetes to v1.21.0 * Update to golang v1.16.2 * Update dependent modules to track with upstream * Switch to upstream flannel * Track changes to upstream cloud-controller-manager and FeatureGates Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
40 lines
1.0 KiB
Go
40 lines
1.0 KiB
Go
// Code generated by pluginator on SecretGenerator; DO NOT EDIT.
|
|
// pluginator {unknown 1970-01-01T00:00:00Z }
|
|
|
|
package builtins
|
|
|
|
import (
|
|
"sigs.k8s.io/kustomize/api/kv"
|
|
"sigs.k8s.io/kustomize/api/resmap"
|
|
"sigs.k8s.io/kustomize/api/types"
|
|
"sigs.k8s.io/yaml"
|
|
)
|
|
|
|
type SecretGeneratorPlugin struct {
|
|
h *resmap.PluginHelpers
|
|
types.ObjectMeta `json:"metadata,omitempty" yaml:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
|
|
types.SecretArgs
|
|
}
|
|
|
|
func (p *SecretGeneratorPlugin) Config(h *resmap.PluginHelpers, config []byte) (err error) {
|
|
p.SecretArgs = types.SecretArgs{}
|
|
err = yaml.Unmarshal(config, p)
|
|
if p.SecretArgs.Name == "" {
|
|
p.SecretArgs.Name = p.Name
|
|
}
|
|
if p.SecretArgs.Namespace == "" {
|
|
p.SecretArgs.Namespace = p.Namespace
|
|
}
|
|
p.h = h
|
|
return
|
|
}
|
|
|
|
func (p *SecretGeneratorPlugin) Generate() (resmap.ResMap, error) {
|
|
return p.h.ResmapFactory().FromSecretArgs(
|
|
kv.NewLoader(p.h.Loader(), p.h.Validator()), p.SecretArgs)
|
|
}
|
|
|
|
func NewSecretGeneratorPlugin() resmap.GeneratorPlugin {
|
|
return &SecretGeneratorPlugin{}
|
|
}
|