From f4004b2d36abc56b9248406462f422eeefccc6f1 Mon Sep 17 00:00:00 2001 From: Barahalikar Siddharth Date: Thu, 9 Jun 2022 18:30:06 +0530 Subject: [PATCH] Create configmap.yaml --- helm-chart/templates/configmap.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 helm-chart/templates/configmap.yaml diff --git a/helm-chart/templates/configmap.yaml b/helm-chart/templates/configmap.yaml new file mode 100644 index 0000000..d121ec4 --- /dev/null +++ b/helm-chart/templates/configmap.yaml @@ -0,0 +1,10 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ .Release.Name }}-configmap +data: + CIRCLE_COLOR: {{ .Values.color.circle }} + OVAL_COLOR: {{ .Values.color.oval }} + SQUARE_COLOR: {{ .Values.color.square }} + TRIANGLE_COLOR: {{ .Values.color.triangle }} + RECTANGLE_COLOR: {{ .Values.color.rectangle }}