Last active
October 31, 2023 19:00
-
-
Save sirkirby/c707a5015b1ededa2618209c1c12f749 to your computer and use it in GitHub Desktop.
pi-hole helm values web
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# these values will set our ingress proxy and allow us to point | |
# pihole-k3s.mylocaldomain.org DNS record to 192.168.100 | |
# will create kubernees ingress | |
ingress: | |
enabled: true | |
hosts: | |
- pihole-k3s.mylocaldomain.org | |
# will create kubernetes services | |
# You can use the cluster IP here, no need to expose on the LB IP when using Ingress | |
serviceWeb: | |
loadBalancerIP: 192.168.1.100 | |
type: ClusterIP | |
# will set your admin password for the web inteface | |
adminPassword: "my!admin3password" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment