mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-21 22:41:42 +00:00
55 lines
1.7 KiB
Go
55 lines
1.7 KiB
Go
/*
|
|
Copyright 2018 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package patch
|
|
|
|
import "sigs.k8s.io/kustomize/v3/pkg/types"
|
|
|
|
// Append appends a slice of patch paths to a PatchStrategicMerge slice
|
|
func Append(patches []types.PatchStrategicMerge, paths ...string) []types.PatchStrategicMerge {
|
|
for _, p := range paths {
|
|
patches = append(patches, types.PatchStrategicMerge(p))
|
|
}
|
|
return patches
|
|
}
|
|
|
|
// Exist determines if a patch path exists in a slice of PatchStrategicMerge
|
|
func Exist(patches []types.PatchStrategicMerge, path string) bool {
|
|
for _, p := range patches {
|
|
if p == types.PatchStrategicMerge(path) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// Delete deletes patches from a PatchStrategicMerge slice
|
|
func Delete(patches []types.PatchStrategicMerge, paths ...string) []types.PatchStrategicMerge {
|
|
// Convert paths into PatchStrategicMerge slice
|
|
convertedPath := make([]types.PatchStrategicMerge, len(paths))
|
|
for i, p := range paths {
|
|
convertedPath[i] = types.PatchStrategicMerge(p)
|
|
}
|
|
|
|
filteredPatches := make([]types.PatchStrategicMerge, 0, len(patches))
|
|
for _, containedPatch := range patches {
|
|
if !Exist(convertedPath, string(containedPatch)) {
|
|
filteredPatches = append(filteredPatches, containedPatch)
|
|
}
|
|
}
|
|
return filteredPatches
|
|
}
|