diff options
author | Andreas Geissler <andreas-geissler@telekom.de> | 2023-06-23 06:41:08 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2023-06-23 06:41:08 +0000 |
commit | 0c3f15fe1a61e0361f601ffca291693928c75350 (patch) | |
tree | ebc1107a5dd7e8f08ebcdd8521c5d4e7d577d571 /kubernetes/a1policymanagement | |
parent | c6144829d2c4ee22cbdb4591ed34557b83999bc2 (diff) | |
parent | 3dbdcdb96ae6ffbd149e8610d5b15a7a4af465ea (diff) |
Merge "[A1P] Correct the ConfigMap Naming"
Diffstat (limited to 'kubernetes/a1policymanagement')
-rw-r--r-- | kubernetes/a1policymanagement/templates/configmap.yaml | 3 | ||||
-rw-r--r-- | 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 }} |