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
{ | |
"title": "Mixtral", | |
"provider": "lmstudio", | |
"model": "mixtral-8x7b" | |
} |
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
ingress: | |
# plex media server | |
- hostname: plex.mydomain.net | |
service: https://192.168.1.20:32400 |
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
tunnel: fd1f3bb2-ca6d-4807-9e60-b5b6834d060e | |
credentials-file: fd1f3bb2-ca6d-4807-9e60-b5b6834d060e.json | |
originRequest: # Root-level configuration | |
connectTimeout: 30s | |
noTLSVerify: true |
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
# manual package install | |
wget -q https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-arm64.deb dpkg -i cloudflared-linux-arm64.deb |
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
# will create kubernees ingress | |
ingress: | |
enabled: true | |
hosts: | |
- pihole-k3s.mylocaldomain.org | |
# will create kubernetes services for web admin | |
serviceWeb: | |
loadBalancerIP: 192.168.1.100 | |
type: ClusterIP |
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
# if using longhorn distributed block storage https://longhorn.io/docs | |
# pi-hole will automatially create a new | |
# persistent volume managed by longhorn | |
persistentVolumeClaim: | |
enabled: true | |
storageClass: "longhorn" |
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
# enables cloudflare tunnel sidecar container | |
# and sets upstream dns in pihole to leverage it | |
doh: | |
enabled: true | |
pullPolicy: Always | |
envVars: { | |
DOH_UPSTREAM: "https://1.1.1.1/dns-query" | |
} |
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
# create a kubernetes service and expose | |
# port 53 outside of cluster on the local network | |
serviceDns: | |
loadBalancerIP: 192.168.1.100 | |
type: LoadBalancer |
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 |
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
# add the repo locally and update to pull the available charts | |
helm repo add mojo2600 https://mojo2600.github.io/pihole-kubernetes/ | |
helm repo update |