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>
140 lines
3.6 KiB
Go
140 lines
3.6 KiB
Go
// Code generated by pluginator on PatchTransformer; DO NOT EDIT.
|
|
// pluginator {unknown 1970-01-01T00:00:00Z }
|
|
|
|
package builtins
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
jsonpatch "github.com/evanphx/json-patch"
|
|
"sigs.k8s.io/kustomize/api/filters/patchjson6902"
|
|
"sigs.k8s.io/kustomize/api/resmap"
|
|
"sigs.k8s.io/kustomize/api/resource"
|
|
"sigs.k8s.io/kustomize/api/types"
|
|
"sigs.k8s.io/yaml"
|
|
)
|
|
|
|
type PatchTransformerPlugin struct {
|
|
loadedPatch *resource.Resource
|
|
decodedPatch jsonpatch.Patch
|
|
Path string `json:"path,omitempty" yaml:"path,omitempty"`
|
|
Patch string `json:"patch,omitempty" yaml:"patch,omitempty"`
|
|
Target *types.Selector `json:"target,omitempty" yaml:"target,omitempty"`
|
|
}
|
|
|
|
func (p *PatchTransformerPlugin) Config(
|
|
h *resmap.PluginHelpers, c []byte) error {
|
|
err := yaml.Unmarshal(c, p)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
p.Patch = strings.TrimSpace(p.Patch)
|
|
if p.Patch == "" && p.Path == "" {
|
|
return fmt.Errorf(
|
|
"must specify one of patch and path in\n%s", string(c))
|
|
}
|
|
if p.Patch != "" && p.Path != "" {
|
|
return fmt.Errorf(
|
|
"patch and path can't be set at the same time\n%s", string(c))
|
|
}
|
|
if p.Path != "" {
|
|
loaded, loadErr := h.Loader().Load(p.Path)
|
|
if loadErr != nil {
|
|
return loadErr
|
|
}
|
|
p.Patch = string(loaded)
|
|
}
|
|
|
|
patchSM, errSM := h.ResmapFactory().RF().FromBytes([]byte(p.Patch))
|
|
patchJson, errJson := jsonPatchFromBytes([]byte(p.Patch))
|
|
if (errSM == nil && errJson == nil) ||
|
|
(patchSM != nil && patchJson != nil) {
|
|
return fmt.Errorf(
|
|
"illegally qualifies as both an SM and JSON patch: [%v]",
|
|
p.Patch)
|
|
}
|
|
if errSM != nil && errJson != nil {
|
|
return fmt.Errorf(
|
|
"unable to parse SM or JSON patch from [%v]", p.Patch)
|
|
}
|
|
if errSM == nil {
|
|
p.loadedPatch = patchSM
|
|
} else {
|
|
p.decodedPatch = patchJson
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (p *PatchTransformerPlugin) Transform(m resmap.ResMap) error {
|
|
if p.loadedPatch == nil {
|
|
return p.transformJson6902(m, p.decodedPatch)
|
|
} else {
|
|
// The patch was a strategic merge patch
|
|
return p.transformStrategicMerge(m, p.loadedPatch)
|
|
}
|
|
}
|
|
|
|
// transformStrategicMerge applies the provided strategic merge patch
|
|
// to all the resources in the ResMap that match either the Target or
|
|
// the identifier of the patch.
|
|
func (p *PatchTransformerPlugin) transformStrategicMerge(m resmap.ResMap, patch *resource.Resource) error {
|
|
if p.Target == nil {
|
|
target, err := m.GetById(patch.OrgId())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return target.ApplySmPatch(patch)
|
|
}
|
|
selected, err := m.Select(*p.Target)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return m.ApplySmPatch(resource.MakeIdSet(selected), patch)
|
|
}
|
|
|
|
// transformJson6902 applies the provided json6902 patch
|
|
// to all the resources in the ResMap that match the Target.
|
|
func (p *PatchTransformerPlugin) transformJson6902(m resmap.ResMap, patch jsonpatch.Patch) error {
|
|
if p.Target == nil {
|
|
return fmt.Errorf("must specify a target for patch %s", p.Patch)
|
|
}
|
|
resources, err := m.Select(*p.Target)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, res := range resources {
|
|
res.StorePreviousId()
|
|
err = res.ApplyFilter(patchjson6902.Filter{
|
|
Patch: p.Patch,
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// jsonPatchFromBytes loads a Json 6902 patch from
|
|
// a bytes input
|
|
func jsonPatchFromBytes(
|
|
in []byte) (jsonpatch.Patch, error) {
|
|
ops := string(in)
|
|
if ops == "" {
|
|
return nil, fmt.Errorf("empty json patch operations")
|
|
}
|
|
|
|
if ops[0] != '[' {
|
|
jsonOps, err := yaml.YAMLToJSON(in)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
ops = string(jsonOps)
|
|
}
|
|
return jsonpatch.DecodePatch([]byte(ops))
|
|
}
|
|
|
|
func NewPatchTransformerPlugin() resmap.TransformerPlugin {
|
|
return &PatchTransformerPlugin{}
|
|
}
|