mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-17 18:25:26 +00:00
38 lines
948 B
Go
38 lines
948 B
Go
// Copyright 2019 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
//go:generate pluginator
|
|
package main
|
|
|
|
import (
|
|
"sigs.k8s.io/kustomize/api/filters/annotations"
|
|
"sigs.k8s.io/kustomize/api/resmap"
|
|
"sigs.k8s.io/kustomize/api/types"
|
|
"sigs.k8s.io/yaml"
|
|
)
|
|
|
|
// Add the given annotations to the given field specifications.
|
|
type plugin struct {
|
|
Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"`
|
|
FieldSpecs []types.FieldSpec `json:"fieldSpecs,omitempty" yaml:"fieldSpecs,omitempty"`
|
|
}
|
|
|
|
var KustomizePlugin plugin //nolint:gochecknoglobals
|
|
|
|
func (p *plugin) Config(
|
|
_ *resmap.PluginHelpers, c []byte) (err error) {
|
|
p.Annotations = nil
|
|
p.FieldSpecs = nil
|
|
return yaml.Unmarshal(c, p)
|
|
}
|
|
|
|
func (p *plugin) Transform(m resmap.ResMap) error {
|
|
if len(p.Annotations) == 0 {
|
|
return nil
|
|
}
|
|
return m.ApplyFilter(annotations.Filter{
|
|
Annotations: p.Annotations,
|
|
FsSlice: p.FieldSpecs,
|
|
})
|
|
}
|