feat(gitea): create PersistentVolume and PersistentVolumeClaim for Gitea feat(gitea): add script to create Gitea runner registration token secret feat(gitea): deploy Gitea Actions runner with Docker socket access feat(media): deploy JDownloader with Ingress configuration feat(media): set up Jellyfin media server with NFS and Ingress feat(media): configure qBittorrent deployment with Ingress feat(monitoring): add Grafana Loki datasource ConfigMap feat(monitoring): create Grafana admin credentials secret feat(monitoring): define PersistentVolumes for monitoring stack feat(network): implement DDNS CronJob for Porkbun DNS updates feat(network): create secret for Porkbun DDNS API credentials feat(network): set up Glances service and Ingress for Debian node fix(network): patch Pi-hole DNS services with external IPs feat(network): configure Traefik dashboard Ingress with Authentik auth feat(network): set up Watch Party service and Ingress for Mac Mini refactor(values): update Helm values files for various services
49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
# Apply: helm upgrade --install pihole-debian mojo2600/pihole -f values/pihole-debian.yaml -n pihole --create-namespace
|
|
# Description: Helm values for Pi-hole secondary instance on Debian node
|
|
|
|
replicaCount: 1
|
|
|
|
nodeSelector:
|
|
node-role: storage
|
|
|
|
image:
|
|
tag: "2024.07.0"
|
|
|
|
serviceWeb:
|
|
type: ClusterIP
|
|
|
|
serviceDns:
|
|
type: ClusterIP
|
|
port: 53
|
|
annotations:
|
|
kube-vip.io/loadbalancerIPs: 192.168.7.183
|
|
|
|
probes:
|
|
liveness:
|
|
enabled: false
|
|
readiness:
|
|
enabled: false
|
|
|
|
adminPassword: "changeme"
|
|
|
|
extraEnvVars:
|
|
PIHOLE_DNS_1: "1.1.1.1"
|
|
PIHOLE_DNS_2: "8.8.8.8"
|
|
|
|
dnsmasq:
|
|
customDnsEntries:
|
|
- address=/gitea.home.arpa/192.168.7.77
|
|
- address=/pihole.home.arpa/192.168.7.77
|
|
- address=/home.arpa/192.168.7.77
|
|
- address=/dashy.home.arpa/192.168.7.77
|
|
- address=/jellyfin.home.arpa/192.168.7.77
|
|
- address=/qbittorrent.home.arpa/192.168.7.77
|
|
- address=/jdownloader.home.arpa/192.168.7.77
|
|
- address=/glances.home.arpa/192.168.7.77
|
|
- address=/glances-debian.home.arpa/192.168.7.77
|
|
- address=/watch-party.nik4nao.com/192.168.7.77
|
|
|
|
persistentVolumeClaim:
|
|
enabled: true
|
|
storageClass: local-path
|
|
size: 500Mi |