mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-09-15 12:18:57 +00:00
refactor edit remove patch
This commit is contained in:
@@ -35,22 +35,26 @@ var CatExamples = `
|
|||||||
# unwrap Resource config from a directory in an ResourceList
|
# unwrap Resource config from a directory in an ResourceList
|
||||||
... | kustomize cfg cat`
|
... | kustomize cfg cat`
|
||||||
|
|
||||||
var CompletionShort = `Install shell completion.`
|
var CompletionShort = `Generate shell completion.`
|
||||||
var CompletionLong = `
|
var CompletionLong = `
|
||||||
Install shell completion for kustomize commands and flags -- supports bash, fish and zsh.
|
Generate shell completion for ` + "`" + `kustomize` + "`" + ` -- supports bash, zsh, fish and powershell.
|
||||||
|
`
|
||||||
|
var CompletionExamples = `
|
||||||
|
# load completion for Bash
|
||||||
|
source <(kustomize completion bash)
|
||||||
|
|
||||||
kustomize install-completion
|
# install for Bash in Linux
|
||||||
|
kustomize completion bash > /etc/bash_completion.d/kustomize
|
||||||
|
|
||||||
Registers the completion command with known shells (e.g. .bashrc, .bash_profile, etc):
|
# install for Bash in MacOS
|
||||||
|
kustomize completion bash > /usr/local/etc/bash_completion.d/kustomize
|
||||||
|
|
||||||
complete -C /Users/USER/go/bin/kustomize kustomize
|
# package for Bash
|
||||||
|
kustomize completion bash > /usr/share/bash-completion/completions/kustomize
|
||||||
|
|
||||||
Because the completion command is embedded in kustomize directly, there is no need to update
|
# package for zsh
|
||||||
it separately from the kustomize binary.
|
kustomize completion zsh > /usr/share/zsh/site-functions/_kustomize
|
||||||
|
`
|
||||||
To uninstall shell completion run:
|
|
||||||
|
|
||||||
COMP_UNINSTALL=1 kustomize install-completion`
|
|
||||||
|
|
||||||
var CountShort = `[Alpha] Count Resources Config from a local directory.`
|
var CountShort = `[Alpha] Count Resources Config from a local directory.`
|
||||||
var CountLong = `
|
var CountLong = `
|
||||||
|
|||||||
@@ -119,7 +119,7 @@ spec:
|
|||||||
value: prod
|
value: prod
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
kustomize edit add patch patch.yaml
|
kustomize edit add patch --path patch.yaml --name sbdemo --kind Deployment --group apps --version v1
|
||||||
|
|
||||||
cat <<EOF >$DEMO_HOME/application-prod.properties
|
cat <<EOF >$DEMO_HOME/application-prod.properties
|
||||||
spring.jpa.hibernate.ddl-auto=update
|
spring.jpa.hibernate.ddl-auto=update
|
||||||
@@ -284,17 +284,32 @@ Add these patches to the kustomization:
|
|||||||
<!-- @addPatch @testAgainstLatestRelease -->
|
<!-- @addPatch @testAgainstLatestRelease -->
|
||||||
```
|
```
|
||||||
cd $DEMO_HOME
|
cd $DEMO_HOME
|
||||||
kustomize edit add patch memorylimit_patch.yaml
|
kustomize edit add patch --path memorylimit_patch.yaml --name sbdemo --kind Deployment --group apps --version v1
|
||||||
kustomize edit add patch healthcheck_patch.yaml
|
kustomize edit add patch --path healthcheck_patch.yaml --name sbdemo --kind Deployment --group apps --version v1
|
||||||
```
|
```
|
||||||
|
|
||||||
`kustomization.yaml` should have patches field:
|
`kustomization.yaml` should have patches field:
|
||||||
|
|
||||||
> ```
|
> ```
|
||||||
> patchesStrategicMerge:
|
> patches:
|
||||||
> - patch.yaml
|
> - path: patch.yaml
|
||||||
> - memorylimit_patch.yaml
|
> target:
|
||||||
> - healthcheck_patch.yaml
|
> group: apps
|
||||||
|
> version: v1
|
||||||
|
> kind: Deployment
|
||||||
|
> name: sbdemo
|
||||||
|
> - path: memorylimit_patch.yaml
|
||||||
|
> target:
|
||||||
|
> group: apps
|
||||||
|
> version: v1
|
||||||
|
> kind: Deployment
|
||||||
|
> name: sbdemo
|
||||||
|
> - path: healthcheck_patch.yaml
|
||||||
|
> target:
|
||||||
|
> group: apps
|
||||||
|
> version: v1
|
||||||
|
> kind: Deployment
|
||||||
|
> name: sbdemo
|
||||||
> ```
|
> ```
|
||||||
|
|
||||||
The output of the following command can now be applied
|
The output of the following command can now be applied
|
||||||
|
|||||||
@@ -106,7 +106,7 @@ spec:
|
|||||||
value: prod
|
value: prod
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
kustomize edit add patch patch.yaml
|
kustomize edit add patch --path patch.yaml --name sbdemo --kind Deployment --group apps --version v1
|
||||||
|
|
||||||
cat <<EOF >$DEMO_HOME/application-prod.properties
|
cat <<EOF >$DEMO_HOME/application-prod.properties
|
||||||
spring.jpa.hibernate.ddl-auto=update
|
spring.jpa.hibernate.ddl-auto=update
|
||||||
@@ -260,20 +260,35 @@ cat $DEMO_HOME/healthcheck_patch.yaml
|
|||||||
<!-- @addPatch @testAgainstLatestRelease -->
|
<!-- @addPatch @testAgainstLatestRelease -->
|
||||||
```
|
```
|
||||||
cd $DEMO_HOME
|
cd $DEMO_HOME
|
||||||
kustomize edit add patch memorylimit_patch.yaml
|
kustomize edit add patch --path memorylimit_patch.yaml --name sbdemo --kind Deployment --group apps --version v1
|
||||||
kustomize edit add patch healthcheck_patch.yaml
|
kustomize edit add patch --path healthcheck_patch.yaml --name sbdemo --kind Deployment --group apps --version v1
|
||||||
```
|
```
|
||||||
|
|
||||||
执行上面的命令后,`kustomization.yaml` 的 patchesStrategicMerge 字段如下:
|
执行上面的命令后,`kustomization.yaml` 的 patches 字段如下:
|
||||||
|
|
||||||
> ```
|
> ```
|
||||||
> patchesStrategicMerge:
|
> patches:
|
||||||
> - patch.yaml
|
> - path: patch.yaml
|
||||||
> - memorylimit_patch.yaml
|
> target:
|
||||||
> - healthcheck_patch.yaml
|
> group: apps
|
||||||
|
> version: v1
|
||||||
|
> kind: Deployment
|
||||||
|
> name: sbdemo
|
||||||
|
> - path: memorylimit_patch.yaml
|
||||||
|
> target:
|
||||||
|
> group: apps
|
||||||
|
> version: v1
|
||||||
|
> kind: Deployment
|
||||||
|
> name: sbdemo
|
||||||
|
> - path: healthcheck_patch.yaml
|
||||||
|
> target:
|
||||||
|
> group: apps
|
||||||
|
> version: v1
|
||||||
|
> kind: Deployment
|
||||||
|
> name: sbdemo
|
||||||
> ```
|
> ```
|
||||||
|
|
||||||
现在就可以将完整的配置输出并在集群中部署(将结果通过管道输出给 `kubectl apply`),在生产环境创建Spring Boot 应用。
|
现在就可以将完整的配置输出并在集群中部署(将结果通过管道输出给 `kubectl apply`),在生产环境创建 Spring Boot 应用。
|
||||||
|
|
||||||
<!-- @finalBuild @testAgainstLatestRelease -->
|
<!-- @finalBuild @testAgainstLatestRelease -->
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ func NewCmdAdd(
|
|||||||
kustomize edit add resource <filepath>
|
kustomize edit add resource <filepath>
|
||||||
|
|
||||||
# Adds a patch to the kustomization
|
# Adds a patch to the kustomization
|
||||||
kustomize edit add patch <filepath>
|
kustomize edit add patch --path {filepath} --group {target group name} --version {target version}
|
||||||
|
|
||||||
# Adds a component to the kustomization
|
# Adds a component to the kustomization
|
||||||
kustomize edit add component <filepath>
|
kustomize edit add component <filepath>
|
||||||
|
|||||||
@@ -1,41 +0,0 @@
|
|||||||
// Copyright 2019 The Kubernetes Authors.
|
|
||||||
// SPDX-License-Identifier: Apache-2.0
|
|
||||||
|
|
||||||
package patch
|
|
||||||
|
|
||||||
import "sigs.k8s.io/kustomize/api/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
|
|
||||||
}
|
|
||||||
@@ -1,83 +0,0 @@
|
|||||||
// Copyright 2019 The Kubernetes Authors.
|
|
||||||
// SPDX-License-Identifier: Apache-2.
|
|
||||||
|
|
||||||
package patch
|
|
||||||
|
|
||||||
import (
|
|
||||||
"testing"
|
|
||||||
|
|
||||||
"sigs.k8s.io/kustomize/api/types"
|
|
||||||
)
|
|
||||||
|
|
||||||
func buildPatchStrategicMergeSlice(patchStrings []string) []types.PatchStrategicMerge {
|
|
||||||
var patches []types.PatchStrategicMerge
|
|
||||||
for _, patchString := range patchStrings {
|
|
||||||
patches = append(patches, types.PatchStrategicMerge(patchString))
|
|
||||||
}
|
|
||||||
return patches
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestAppend(t *testing.T) {
|
|
||||||
patchStrings := []string{"patch1.yaml", "patch2.yaml"}
|
|
||||||
patches := buildPatchStrategicMergeSlice(patchStrings)
|
|
||||||
|
|
||||||
patches = Append(patches, "patch3.yaml")
|
|
||||||
|
|
||||||
for i, k := range []string{"patch1.yaml", "patch2.yaml", "patch3.yaml"} {
|
|
||||||
if patches[i] != types.PatchStrategicMerge(k) {
|
|
||||||
t.Fatalf("patches[%d] must be %s, got %s", i, k, patches[i])
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestExistTrue(t *testing.T) {
|
|
||||||
patchStrings := []string{"patch1.yaml", "patch2.yaml"}
|
|
||||||
patches := buildPatchStrategicMergeSlice(patchStrings)
|
|
||||||
|
|
||||||
for _, patchString := range patchStrings {
|
|
||||||
if !Exist(patches, patchString) {
|
|
||||||
t.Fatalf("%s must exist", patchString)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestExistFalse(t *testing.T) {
|
|
||||||
patchStrings := []string{"patch1.yaml", "patch2.yaml"}
|
|
||||||
patches := buildPatchStrategicMergeSlice(patchStrings)
|
|
||||||
|
|
||||||
for _, patchString := range []string{"invalid1.yaml", "invalid2.yaml"} {
|
|
||||||
if Exist(patches, patchString) {
|
|
||||||
t.Fatalf("%s must not exist", patchString)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestDelete(t *testing.T) {
|
|
||||||
patchStrings := []string{"patch1.yaml", "patch2.yaml"}
|
|
||||||
patches := buildPatchStrategicMergeSlice(patchStrings)
|
|
||||||
|
|
||||||
patches = Delete(patches, "patch1.yaml")
|
|
||||||
|
|
||||||
if Exist(patches, "patch1.yaml") {
|
|
||||||
t.Fatalf("patch1.yaml should be deleted")
|
|
||||||
}
|
|
||||||
if !Exist(patches, "patch2.yaml") {
|
|
||||||
t.Fatalf("patch2.yaml should exist")
|
|
||||||
}
|
|
||||||
if len(patches) != 1 {
|
|
||||||
t.Fatalf("Length of slice must be 1: actual %d", len(patches))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestDeleteMultiple(t *testing.T) {
|
|
||||||
patchStrings := []string{"patch1.yaml", "patch2.yaml"}
|
|
||||||
patches := buildPatchStrategicMergeSlice(patchStrings)
|
|
||||||
|
|
||||||
patches = Delete(patches, "patch2.yaml", "patch4.yaml", "patch1.yaml", "patch3.yaml")
|
|
||||||
|
|
||||||
for _, k := range patchStrings {
|
|
||||||
if Exist(patches, k) {
|
|
||||||
t.Fatalf("%s should be deleted", k)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -23,7 +23,7 @@ func NewCmdRemove(
|
|||||||
kustomize edit remove resource {pattern}
|
kustomize edit remove resource {pattern}
|
||||||
|
|
||||||
# Removes one or more patches from the kustomization file
|
# Removes one or more patches from the kustomization file
|
||||||
kustomize edit remove patch <filepath>
|
kustomize edit remove patch --path {filepath} --group {target group name} --version {target version}
|
||||||
|
|
||||||
# Removes one or more commonLabels from the kustomization file
|
# Removes one or more commonLabels from the kustomization file
|
||||||
kustomize edit remove label {labelKey1},{labelKey2}
|
kustomize edit remove label {labelKey1},{labelKey2}
|
||||||
|
|||||||
@@ -10,55 +10,58 @@ import (
|
|||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
"sigs.k8s.io/kustomize/api/filesys"
|
"sigs.k8s.io/kustomize/api/filesys"
|
||||||
"sigs.k8s.io/kustomize/api/konfig"
|
"sigs.k8s.io/kustomize/api/konfig"
|
||||||
"sigs.k8s.io/kustomize/kustomize/v3/internal/commands/edit/patch"
|
"sigs.k8s.io/kustomize/api/types"
|
||||||
"sigs.k8s.io/kustomize/kustomize/v3/internal/commands/kustfile"
|
"sigs.k8s.io/kustomize/kustomize/v3/internal/commands/kustfile"
|
||||||
"sigs.k8s.io/kustomize/kustomize/v3/internal/commands/util"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type removePatchOptions struct {
|
type removePatchOptions struct {
|
||||||
patchFilePaths []string
|
Patch types.Patch
|
||||||
}
|
}
|
||||||
|
|
||||||
// newCmdRemovePatch removes the name of a file containing a patch from the kustomization file.
|
// newCmdRemovePatch removes the name of a file containing a patch from the kustomization file.
|
||||||
func newCmdRemovePatch(fSys filesys.FileSystem) *cobra.Command {
|
func newCmdRemovePatch(fSys filesys.FileSystem) *cobra.Command {
|
||||||
var o removePatchOptions
|
var o removePatchOptions
|
||||||
|
o.Patch.Target = &types.Selector{}
|
||||||
|
|
||||||
cmd := &cobra.Command{
|
cmd := &cobra.Command{
|
||||||
Use: "patch",
|
Use: "patch",
|
||||||
Short: "Removes one or more patches from " +
|
Short: "Removes a patch from " +
|
||||||
konfig.DefaultKustomizationFileName(),
|
konfig.DefaultKustomizationFileName(),
|
||||||
|
Long: `Removes a patch from patches field. The fields specified by flags must
|
||||||
|
exactly match the patch item to successfully remote the item.`,
|
||||||
Example: `
|
Example: `
|
||||||
remove patch {filepath}`,
|
remove patch --path {filepath} --group {target group name} --version {target version}`,
|
||||||
RunE: func(cmd *cobra.Command, args []string) error {
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
err := o.Validate(args)
|
err := o.Validate()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
return o.RunRemovePatch(fSys)
|
return o.RunRemovePatch(fSys)
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
cmd.Flags().StringVar(&o.Patch.Path, "path", "", "Path to the patch file. Cannot be used with --patch at the same time.")
|
||||||
|
cmd.Flags().StringVar(&o.Patch.Patch, "patch", "", "Literal string of patch content. Cannot be used with --path at the same time.")
|
||||||
|
cmd.Flags().StringVar(&o.Patch.Target.Group, "group", "", "API group in patch target")
|
||||||
|
cmd.Flags().StringVar(&o.Patch.Target.Version, "version", "", "API version in patch target")
|
||||||
|
cmd.Flags().StringVar(&o.Patch.Target.Kind, "kind", "", "Resource kind in patch target")
|
||||||
|
cmd.Flags().StringVar(&o.Patch.Target.Name, "name", "", "Resource name in patch target")
|
||||||
|
cmd.Flags().StringVar(&o.Patch.Target.Namespace, "namespace", "", "Resource namespace in patch target")
|
||||||
|
cmd.Flags().StringVar(&o.Patch.Target.AnnotationSelector, "annotation-selector", "", "annotationSelector in patch target")
|
||||||
|
cmd.Flags().StringVar(&o.Patch.Target.LabelSelector, "label-selector", "", "labelSelector in patch target")
|
||||||
|
|
||||||
return cmd
|
return cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
// Validate validates removePatch command.
|
// Validate validates removePatch command.
|
||||||
func (o *removePatchOptions) Validate(args []string) error {
|
func (o *removePatchOptions) Validate() error {
|
||||||
if len(args) == 0 {
|
if o.Patch.Patch != "" && o.Patch.Path != "" {
|
||||||
return errors.New("must specify a patch file")
|
return errors.New("patch and path can't be set at the same time")
|
||||||
}
|
}
|
||||||
o.patchFilePaths = args
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// RunRemovePatch runs removePatch command (do real work).
|
// RunRemovePatch runs removePatch command (do real work).
|
||||||
func (o *removePatchOptions) RunRemovePatch(fSys filesys.FileSystem) error {
|
func (o *removePatchOptions) RunRemovePatch(fSys filesys.FileSystem) error {
|
||||||
patches, err := util.GlobPatterns(fSys, o.patchFilePaths)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if len(patches) == 0 {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
mf, err := kustfile.NewKustomizationFile(fSys)
|
mf, err := kustfile.NewKustomizationFile(fSys)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@@ -69,15 +72,23 @@ func (o *removePatchOptions) RunRemovePatch(fSys filesys.FileSystem) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
var removePatches []string
|
// Omit target if it's empty
|
||||||
for _, p := range patches {
|
emptyTarget := types.Selector{}
|
||||||
if !patch.Exist(m.PatchesStrategicMerge, p) {
|
if o.Patch.Target != nil && *o.Patch.Target == emptyTarget {
|
||||||
log.Printf("patch %s doesn't exist in kustomization file", p)
|
o.Patch.Target = nil
|
||||||
continue
|
|
||||||
}
|
|
||||||
removePatches = append(removePatches, p)
|
|
||||||
}
|
}
|
||||||
m.PatchesStrategicMerge = patch.Delete(m.PatchesStrategicMerge, removePatches...)
|
|
||||||
|
var patches []types.Patch
|
||||||
|
for _, p := range m.Patches {
|
||||||
|
if !p.Equals(o.Patch) {
|
||||||
|
patches = append(patches, p)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(patches) == len(m.Patches) {
|
||||||
|
log.Printf("patch %s doesn't exist in kustomization file", o.Patch)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
m.Patches = patches
|
||||||
|
|
||||||
return mf.Write(m)
|
return mf.Write(m)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,29 +4,53 @@
|
|||||||
package remove
|
package remove
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"strings"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"sigs.k8s.io/kustomize/api/filesys"
|
"sigs.k8s.io/kustomize/api/filesys"
|
||||||
"sigs.k8s.io/kustomize/kustomize/v3/internal/commands/edit/patch"
|
|
||||||
testutils_test "sigs.k8s.io/kustomize/kustomize/v3/internal/commands/testutils"
|
testutils_test "sigs.k8s.io/kustomize/kustomize/v3/internal/commands/testutils"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
patchFileContent = `
|
patchFileContent = `- op: replace
|
||||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
|
path: /some/existing/path
|
||||||
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
value: new value`
|
||||||
`
|
kind = "myKind"
|
||||||
|
group = "myGroup"
|
||||||
|
version = "myVersion"
|
||||||
|
name = "myName"
|
||||||
|
namespace = "myNamespace"
|
||||||
|
annotationSelector = "myAnnotationSelector"
|
||||||
|
labelSelector = "myLabelSelector"
|
||||||
)
|
)
|
||||||
|
|
||||||
func makeKustomizationPatchFS() filesys.FileSystem {
|
func makeKustomizationPatchFS() filesys.FileSystem {
|
||||||
fSys := filesys.MakeEmptyDirInMemory()
|
fSys := filesys.MakeEmptyDirInMemory()
|
||||||
patches := []string{"patch1.yaml", "patch2.yaml"}
|
patches := []string{"patch1.yaml", "patch2.yaml"}
|
||||||
|
|
||||||
testutils_test.WriteTestKustomizationWith(fSys, []byte(
|
testutils_test.WriteTestKustomizationWith(fSys, []byte(`
|
||||||
fmt.Sprintf("patchesStrategicMerge:\n - %s",
|
patches:
|
||||||
strings.Join(patches, "\n - "))))
|
- path: patch1.yaml
|
||||||
|
target:
|
||||||
|
group: myGroup
|
||||||
|
version: myVersion
|
||||||
|
kind: myKind
|
||||||
|
name: myName
|
||||||
|
namespace: myNamespace
|
||||||
|
labelSelector: myLabelSelector
|
||||||
|
annotationSelector: myAnnotationSelector
|
||||||
|
- path: patch2.yaml
|
||||||
|
target:
|
||||||
|
group: myGroup
|
||||||
|
version: myVersion
|
||||||
|
kind: myKind
|
||||||
|
- patch: |-
|
||||||
|
- op: replace
|
||||||
|
path: /some/existing/path
|
||||||
|
value: new value
|
||||||
|
target:
|
||||||
|
kind: myKind
|
||||||
|
labelSelector: myLabelSelector
|
||||||
|
`))
|
||||||
|
|
||||||
for _, p := range patches {
|
for _, p := range patches {
|
||||||
fSys.WriteFile(p, []byte(patchFileContent))
|
fSys.WriteFile(p, []byte(patchFileContent))
|
||||||
@@ -38,69 +62,86 @@ func makeKustomizationPatchFS() filesys.FileSystem {
|
|||||||
func TestRemovePatch(t *testing.T) {
|
func TestRemovePatch(t *testing.T) {
|
||||||
fSys := makeKustomizationPatchFS()
|
fSys := makeKustomizationPatchFS()
|
||||||
cmd := newCmdRemovePatch(fSys)
|
cmd := newCmdRemovePatch(fSys)
|
||||||
args := []string{"patch1.yaml"}
|
patchPath := "patch1.yaml"
|
||||||
err := cmd.RunE(cmd, args)
|
args := []string{
|
||||||
|
"--path", patchPath,
|
||||||
|
"--kind", kind,
|
||||||
|
"--group", group,
|
||||||
|
"--version", version,
|
||||||
|
"--name", name,
|
||||||
|
"--namespace", namespace,
|
||||||
|
"--annotation-selector", annotationSelector,
|
||||||
|
"--label-selector", labelSelector,
|
||||||
|
}
|
||||||
|
cmd.SetArgs(args)
|
||||||
|
err := cmd.Execute()
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Errorf("unexpected error %v", err)
|
t.Fatalf("unexpected error %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
m := readKustomizationFS(t, fSys)
|
m := readKustomizationFS(t, fSys)
|
||||||
for _, k := range args {
|
for _, p := range m.Patches {
|
||||||
if patch.Exist(m.PatchesStrategicMerge, k) {
|
if p.Path == patchPath {
|
||||||
t.Errorf("%s must be deleted", k)
|
t.Fatalf("%s must be deleted", patchPath)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestRemovePatchMultipleArgs(t *testing.T) {
|
func TestRemovePatch2(t *testing.T) {
|
||||||
fSys := makeKustomizationPatchFS()
|
fSys := makeKustomizationPatchFS()
|
||||||
cmd := newCmdRemovePatch(fSys)
|
cmd := newCmdRemovePatch(fSys)
|
||||||
args := []string{"patch1.yaml", "patch2.yaml"}
|
args := []string{
|
||||||
err := cmd.RunE(cmd, args)
|
"--patch", patchFileContent,
|
||||||
|
"--kind", kind,
|
||||||
|
"--label-selector", labelSelector,
|
||||||
|
}
|
||||||
|
cmd.SetArgs(args)
|
||||||
|
err := cmd.Execute()
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Errorf("unexpected error %v", err)
|
t.Fatalf("unexpected error %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
m := readKustomizationFS(t, fSys)
|
m := readKustomizationFS(t, fSys)
|
||||||
for _, k := range args {
|
for _, p := range m.Patches {
|
||||||
if patch.Exist(m.PatchesStrategicMerge, k) {
|
if p.Patch == patchFileContent {
|
||||||
t.Errorf("%s must be deleted", k)
|
t.Fatalf("%s must be deleted", patchFileContent)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestRemovePatchGlob(t *testing.T) {
|
|
||||||
fSys := makeKustomizationPatchFS()
|
|
||||||
cmd := newCmdRemovePatch(fSys)
|
|
||||||
args := []string{"patch*.yaml"}
|
|
||||||
err := cmd.RunE(cmd, args)
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("unexpected error %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
m := readKustomizationFS(t, fSys)
|
|
||||||
if len(m.PatchesStrategicMerge) != 0 {
|
|
||||||
t.Errorf("all patch must be deleted")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestRemovePatchNotDefinedInKustomization(t *testing.T) {
|
func TestRemovePatchNotDefinedInKustomization(t *testing.T) {
|
||||||
fSys := makeKustomizationPatchFS()
|
fSys := makeKustomizationPatchFS()
|
||||||
cmd := newCmdRemovePatch(fSys)
|
cmd := newCmdRemovePatch(fSys)
|
||||||
args := []string{"patch3.yaml"}
|
args := []string{
|
||||||
err := cmd.RunE(cmd, args)
|
"--path", "patch3.yaml",
|
||||||
|
"--kind", kind,
|
||||||
|
"--group", group,
|
||||||
|
"--version", version,
|
||||||
|
"--name", name,
|
||||||
|
"--namespace", namespace,
|
||||||
|
"--annotation-selector", annotationSelector,
|
||||||
|
"--label-selector", labelSelector,
|
||||||
|
}
|
||||||
|
cmd.SetArgs(args)
|
||||||
|
err := cmd.Execute()
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Errorf("unexpected error %v", err)
|
t.Fatalf("unexpected error %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
m := readKustomizationFS(t, fSys)
|
m := readKustomizationFS(t, fSys)
|
||||||
for _, k := range []string{"patch1.yaml", "patch2.yaml"} {
|
for _, k := range []string{"patch1.yaml", "patch2.yaml"} {
|
||||||
if !patch.Exist(m.PatchesStrategicMerge, k) {
|
found := false
|
||||||
t.Errorf("%s must exist", k)
|
for _, p := range m.Patches {
|
||||||
|
if p.Path == k {
|
||||||
|
found = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if !found {
|
||||||
|
t.Fatalf("%s must exist", k)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -108,30 +149,45 @@ func TestRemovePatchNotDefinedInKustomization(t *testing.T) {
|
|||||||
func TestRemovePatchNotExist(t *testing.T) {
|
func TestRemovePatchNotExist(t *testing.T) {
|
||||||
fSys := makeKustomizationPatchFS()
|
fSys := makeKustomizationPatchFS()
|
||||||
cmd := newCmdRemovePatch(fSys)
|
cmd := newCmdRemovePatch(fSys)
|
||||||
args := []string{"patch4.yaml"}
|
args := []string{
|
||||||
err := cmd.RunE(cmd, args)
|
"--path", "patch4.yaml",
|
||||||
|
"--kind", kind,
|
||||||
|
"--group", group,
|
||||||
|
"--version", version,
|
||||||
|
"--name", name,
|
||||||
|
"--namespace", namespace,
|
||||||
|
"--annotation-selector", annotationSelector,
|
||||||
|
"--label-selector", labelSelector,
|
||||||
|
}
|
||||||
|
cmd.SetArgs(args)
|
||||||
|
err := cmd.Execute()
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Errorf("unexpected error %v", err)
|
t.Fatalf("unexpected error %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
m := readKustomizationFS(t, fSys)
|
m := readKustomizationFS(t, fSys)
|
||||||
for _, k := range []string{"patch1.yaml", "patch2.yaml"} {
|
for _, k := range []string{"patch1.yaml", "patch2.yaml"} {
|
||||||
if !patch.Exist(m.PatchesStrategicMerge, k) {
|
found := false
|
||||||
t.Errorf("%s must exist", k)
|
for _, p := range m.Patches {
|
||||||
|
if p.Path == k {
|
||||||
|
found = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if !found {
|
||||||
|
t.Fatalf("%s must exist", k)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestRemovePatchNoArgs(t *testing.T) {
|
func TestRemovePatchNoArgs(t *testing.T) {
|
||||||
|
// if no flags specified, we should do nothing
|
||||||
fSys := makeKustomizationPatchFS()
|
fSys := makeKustomizationPatchFS()
|
||||||
cmd := newCmdRemovePatch(fSys)
|
cmd := newCmdRemovePatch(fSys)
|
||||||
err := cmd.RunE(cmd, nil)
|
err := cmd.Execute()
|
||||||
|
|
||||||
if err == nil {
|
if err != nil {
|
||||||
t.Errorf("expected an error")
|
t.Fatalf("unexpected error %v", err)
|
||||||
}
|
|
||||||
if err.Error() != "must specify a patch file" {
|
|
||||||
t.Errorf("incorrect error: %v", err.Error())
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user