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
+27
View File
@@ -0,0 +1,27 @@
{{- range $name, $config := .Values.ingresses }}
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ $.Release.Name }}-{{ $name }}
{{- with $config.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
rules:
- host: {{ $config.host }}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: {{ $.Release.Name }}-service
port:
number: 80
{{- with $config.tls }}
tls:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}