k8s/inventory/prod/group_vars/traefik.yml
mrwho 6f1c59cb66 refactor(traefik): update uyuni-ingress-nossl service to web on port 80
- Change backend service from uyuni-ingress-nossl to web
- Update port from 8080 to 80 to align with standard HTTP

This adjustment corrects the Traefik ingress routing to use the standard web service endpoint instead of a custom nossl variant, ensuring compatibility with the updated Uyuni Helm deployment where the primary service exposes HTTP on port 80.
2026-07-24 15:37:54 +03:00

64 lines
1.2 KiB
YAML

---
#traefik_enable_ingress: true
#traefik_ingress_class_name: "traefik"
#traefik_namespace: kube-system
traefik_port_map:
- name: k8s-dashboard
port: 10001
protocol: tcp
backend:
namespace: kubernetes-dashboard
service: kubernetes-dashboard
port: 443
scheme: https
basicauth:
enabled: false
- name: longhorn-ui
port: 10002
# protocol: tcp
backend:
namespace: longhorn-system
service: longhorn-frontend
port: 80
scheme: http
basicauth:
enabled: false
secret_name: traefik-auth-longhorn
- name: forgejo
port: 10003
# protocol: tcp
backend:
namespace: forgejo
service: forgejo-http
port: 3000
scheme: http
basicauth:
enabled: false
- name: uyuni-server
port: 10004
# protocol: tcp
backend:
namespace: uyuni-server
service: web
port: 80
scheme: http
basicauth:
enabled: false
# Template for future services:
# - name: my-service
# description: "Human-readable description"
# port: 10007
# backend:
# namespace: my-namespace
# service: my-service-name
# port: 8080
# scheme: http
# basicauth:
# enabled: false