15 lines
389 B
YAML
15 lines
389 B
YAML
{{- if .Values.allhosts.enabled }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "hades.fullname" . }}-allhosts
|
|
labels:
|
|
{{- include "hades.labels" . | nindent 4 }}
|
|
annotations:
|
|
argocd.argoproj.io/compare-options: IgnoreExtraneous
|
|
argocd.argoproj.io/sync-options: Prune=false
|
|
data:
|
|
allhosts.tsv: |
|
|
{{ .Files.Get "files/allhosts.tsv" | indent 4 }}
|
|
{{- end }}
|