mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-08-21 21:38:27 +00:00
13 lines
236 B
YAML
13 lines
236 B
YAML
{{- if .Values.config.enabled }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "node.fullname" . }}
|
|
labels:
|
|
{{ include "node.labels" . | indent 4 }}
|
|
data:
|
|
app.js: |-
|
|
{{ .Values.config.content | indent 4 }}
|
|
{{- end }}
|
|
|