From 3dbdcdb96ae6ffbd149e8610d5b15a7a4af465ea Mon Sep 17 00:00:00 2001 From: Andreas Geissler Date: Thu, 22 Jun 2023 11:36:14 +0200 Subject: [PATCH] [A1P] Correct the ConfigMap Naming Fix the definition of ConfigMap definitions to remove doubled names Issue-ID: OOM-3198 Signed-off-by: Andreas Geissler Change-Id: Ibe56b731eeaf59ee55e260a3684595a0b75ee288 --- kubernetes/a1policymanagement/templates/configmap.yaml | 3 +-- kubernetes/a1policymanagement/templates/envsubst-configmap.yaml | 3 +-- 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 }} -- 2.16.6