mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 16:09:08 +00:00
13 lines
324 B
YAML
13 lines
324 B
YAML
|
apiVersion: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: {{ template "helm.fullname" . }}-config
|
||
|
labels:
|
||
|
app: {{ template "helm.name" . }}
|
||
|
chart: {{ template "helm.chart" . }}
|
||
|
release: {{ .Release.Name }}
|
||
|
heritage: {{ .Release.Service }}
|
||
|
data:
|
||
|
application.yaml: |
|
||
|
{{ toYaml .Values.applicationYaml | indent 4 }}
|