feat: Add AdGuard Home Helm chart with deployment, services, ingress, and values configuration

This commit is contained in:
sha
2026-03-26 20:57:31 +02:00
parent 07facc58fc
commit 965420e54e
6 changed files with 171 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{{- if .Values.dns.enabled }}
apiVersion: v1
kind: Service
metadata:
name: {{ .Release.Name }}-dns
labels:
app.kubernetes.io/name: {{ .Chart.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
spec:
type: {{ .Values.dns.type }}
{{- if eq .Values.dns.type "LoadBalancer" }}
externalTrafficPolicy: {{ .Values.dns.externalTrafficPolicy }}
{{- end }}
selector:
app: {{ .Release.Name }}
ports:
- name: dns-tcp
port: 53
targetPort: 53
protocol: TCP
- name: dns-udp
port: 53
targetPort: 53
protocol: UDP
{{- end }}