From 447d433457da40869f949dfcd4a0b4af805d1f67 Mon Sep 17 00:00:00 2001 From: Mauren Berti Date: Sat, 18 Nov 2023 18:44:48 -0500 Subject: [PATCH] chore: rename files to match package pattern Rename files that deal with configmaps and secrets to include the name of the package as a prefix, as those were not following the pattern from the remaining files in the package before. --- kustomize/commands/edit/add/{configmap.go => addconfigmap.go} | 0 .../commands/edit/add/{configmap_test.go => addconfigmap_test.go} | 0 kustomize/commands/edit/add/{secret.go => addsecret.go} | 0 kustomize/commands/edit/add/{secret_test.go => addsecret_test.go} | 0 kustomize/commands/edit/set/{configmap.go => setconfigmap.go} | 0 .../commands/edit/set/{configmap_test.go => setconfigmap_test.go} | 0 6 files changed, 0 insertions(+), 0 deletions(-) rename kustomize/commands/edit/add/{configmap.go => addconfigmap.go} (100%) rename kustomize/commands/edit/add/{configmap_test.go => addconfigmap_test.go} (100%) rename kustomize/commands/edit/add/{secret.go => addsecret.go} (100%) rename kustomize/commands/edit/add/{secret_test.go => addsecret_test.go} (100%) rename kustomize/commands/edit/set/{configmap.go => setconfigmap.go} (100%) rename kustomize/commands/edit/set/{configmap_test.go => setconfigmap_test.go} (100%) diff --git a/kustomize/commands/edit/add/configmap.go b/kustomize/commands/edit/add/addconfigmap.go similarity index 100% rename from kustomize/commands/edit/add/configmap.go rename to kustomize/commands/edit/add/addconfigmap.go diff --git a/kustomize/commands/edit/add/configmap_test.go b/kustomize/commands/edit/add/addconfigmap_test.go similarity index 100% rename from kustomize/commands/edit/add/configmap_test.go rename to kustomize/commands/edit/add/addconfigmap_test.go diff --git a/kustomize/commands/edit/add/secret.go b/kustomize/commands/edit/add/addsecret.go similarity index 100% rename from kustomize/commands/edit/add/secret.go rename to kustomize/commands/edit/add/addsecret.go diff --git a/kustomize/commands/edit/add/secret_test.go b/kustomize/commands/edit/add/addsecret_test.go similarity index 100% rename from kustomize/commands/edit/add/secret_test.go rename to kustomize/commands/edit/add/addsecret_test.go diff --git a/kustomize/commands/edit/set/configmap.go b/kustomize/commands/edit/set/setconfigmap.go similarity index 100% rename from kustomize/commands/edit/set/configmap.go rename to kustomize/commands/edit/set/setconfigmap.go diff --git a/kustomize/commands/edit/set/configmap_test.go b/kustomize/commands/edit/set/setconfigmap_test.go similarity index 100% rename from kustomize/commands/edit/set/configmap_test.go rename to kustomize/commands/edit/set/setconfigmap_test.go