12 lines
268 B
YAML
12 lines
268 B
YAML
{{- if .Values.allhosts.enabled }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "hades.fullname" . }}-allhosts
|
|
labels:
|
|
{{- include "hades.labels" . | nindent 4 }}
|
|
data:
|
|
allhosts.tsv: |
|
|
{{ .Files.Get "files/allhosts.tsv" | indent 4 }}
|
|
{{- end }}
|