Some checks failed
validate / lint (push) Has been cancelled
minisforum, debian, mac-mini, and gpu-node all moved from 192.168.7.0/24 to 10.10.40.0/24. Updates K3s server/agent config and node IPs (including gpu-node's host_vars override), NFS export allow-list and exports template, Pi-hole DNS records and kube-vip/loadBalancerIP pins, WireGuard's pushed DNS/AllowedIPs, and the NFS server IP baked into Jellyfin/Kavita/gitea-backup PVs and the Ollama URL used by ai-gateway/Dashy. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
51 lines
1.2 KiB
YAML
51 lines
1.2 KiB
YAML
# Apply: kubectl apply -f manifests/network/glances-debian-ingress.yaml
|
|
# Delete: kubectl delete -f manifests/network/glances-debian-ingress.yaml
|
|
# Description: External Endpoints, Service, and Ingress to proxy Glances on the Debian node via Traefik.
|
|
apiVersion: v1
|
|
kind: Endpoints
|
|
metadata:
|
|
name: glances-debian
|
|
namespace: glances
|
|
subsets:
|
|
- addresses:
|
|
- ip: 10.10.40.20
|
|
ports:
|
|
- port: 61208
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: glances-debian
|
|
namespace: glances
|
|
spec:
|
|
ports:
|
|
- port: 61208
|
|
targetPort: 61208
|
|
---
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: glances-debian
|
|
namespace: glances
|
|
annotations:
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
traefik.ingress.kubernetes.io/router.tls: "true"
|
|
cert-manager.io/cluster-issuer: internal-ca-issuer
|
|
spec:
|
|
ingressClassName: traefik
|
|
tls:
|
|
- secretName: glances-debian-tls
|
|
hosts:
|
|
- glances-debian.home.arpa
|
|
rules:
|
|
- host: glances-debian.home.arpa
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: glances-debian
|
|
port:
|
|
number: 61208
|