mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-12 01:14:22 +00:00
Allow setting every array element in replacements
This commit is contained in:
@@ -796,6 +796,12 @@ func SplitIndexNameValue(p string) (string, string, error) {
|
||||
return parts[0], parts[1], nil
|
||||
}
|
||||
|
||||
// IsMatchEveryIndex returns true if p is matching every elements.
|
||||
// e.g. "*"
|
||||
func IsMatchEveryIndex(p string) bool {
|
||||
return p == "*"
|
||||
}
|
||||
|
||||
// IncrementFieldIndex increments i to point to the next field name element in
|
||||
// a slice of Contents.
|
||||
func IncrementFieldIndex(i int) int {
|
||||
|
||||
Reference in New Issue
Block a user