Fix error on deallocation and provides configMap on the helm chart

This commit is contained in:
Alexandre Ferreira
2022-11-03 21:39:05 +00:00
committed by Eric Van Hensbergen
parent 5029c6f4b9
commit 054c2534e1
5 changed files with 69 additions and 6 deletions

View File

@@ -0,0 +1,10 @@
{{- if .Values.config }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ .Values.application.appName }}
namespace: {{ .Values.application.namespace }}
data:
conf.yaml: |
{{- toYaml .Values.config | nindent 4 }}
{{- end }}