maabara/manifests/pihole/templates/configmap-static-dhcp.yaml

17 lines
421 B
YAML
Raw Normal View History

2024-11-18 18:22:12 +00:00
{{ 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 }}