blob: c0005f57437a8cfc4cd9d7a3b41e4406604dc463 [file] [log] [blame]
{{ if .Values.dnsmasq.staticDhcpEntries }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ template "pihole.fullname" . }}-static-dhcp
labels:
app: {{ template "pihole.name" . }}
chart: {{ template "pihole.chart" . }}
release: {{ .Release.Name }}
heritage: {{ .Release.Service }}
data:
pihole-static-dhcp.conf: |
{{- range .Values.dnsmasq.staticDhcpEntries }}
{{ . }}
{{- end }}
{{ end }}