From 7a08dde7ac3505ca57e5312134bf9b89f5782bad Mon Sep 17 00:00:00 2001 From: Mauren Berti Date: Fri, 13 Oct 2023 18:35:27 -0400 Subject: [PATCH] fix: change spaces for tabs --- kustomize/commands/edit/add/configmap.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kustomize/commands/edit/add/configmap.go b/kustomize/commands/edit/add/configmap.go index 46fd58601..0d12d60b9 100644 --- a/kustomize/commands/edit/add/configmap.go +++ b/kustomize/commands/edit/add/configmap.go @@ -38,8 +38,8 @@ func newCmdAddConfigMap( # Adds a configmap from env-file with behavior merge kustomize edit add configmap my-configmap --behavior=merge --from-env-file=env/path.env - # Adds a configmap to the kustomization file with a specific namespace - kustomize edit add configmap my-configmap --namespace test-ns --from-literal=my-key=my-value + # Adds a configmap to the kustomization file with a specific namespace + kustomize edit add configmap my-configmap --namespace test-ns --from-literal=my-key=my-value `, RunE: func(_ *cobra.Command, args []string) error { return runEditAddConfigMap(flags, fSys, args, ldr, rf)