aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Geissler <andreas-geissler@telekom.de>2023-06-25 10:57:54 +0000
committerGerrit Code Review <gerrit@onap.org>2023-06-25 10:57:54 +0000
commit2d637b64c1c5848abded920966e073f2df2b7718 (patch)
tree3ae350e80e17c4eb23dde11ae06e55127f8107c7
parentb5bd1a3b0023a2b56fafb092465723bf9fa7856c (diff)
parentb0fc540158a2a55fdd692c8237b3280ca18e4a57 (diff)
Merge "[A1P] Correct the ConfigMap Naming" into london
-rw-r--r--kubernetes/a1policymanagement/templates/configmap.yaml3
-rw-r--r--kubernetes/a1policymanagement/templates/envsubst-configmap.yaml3
2 files changed, 2 insertions, 4 deletions
diff --git a/kubernetes/a1policymanagement/templates/configmap.yaml b/kubernetes/a1policymanagement/templates/configmap.yaml
index e84beac2ab..13dd4dbd05 100644
--- a/kubernetes/a1policymanagement/templates/configmap.yaml
+++ b/kubernetes/a1policymanagement/templates/configmap.yaml
@@ -18,7 +18,6 @@
apiVersion: v1
kind: ConfigMap
-metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
- name: {{ include "common.fullname" . }}-policy-conf
+metadata: {{- include "common.resourceMetadata" (dict "dot" . "suffix" "policy-conf" ) | nindent 2 }}
data:
{{ tpl (.Files.Glob "resources/config/*").AsConfig . | indent 2 }}
diff --git a/kubernetes/a1policymanagement/templates/envsubst-configmap.yaml b/kubernetes/a1policymanagement/templates/envsubst-configmap.yaml
index 99449638f4..f12d60127f 100644
--- a/kubernetes/a1policymanagement/templates/envsubst-configmap.yaml
+++ b/kubernetes/a1policymanagement/templates/envsubst-configmap.yaml
@@ -17,7 +17,6 @@
*/}}
apiVersion: v1
kind: ConfigMap
-metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
- name: {{ include "common.fullname" . }}-envsubst-scripts
+metadata: {{- include "common.resourceMetadata" (dict "dot" . "suffix" "envsubst-scripts" ) | nindent 2 }}
data:
{{ tpl (.Files.Glob "resources/envsubst/*").AsConfig . | indent 2 }}