- uncomment and finalize port protocols and backend schemes in traefik.yml - adjust longhorn UI basicauth to disabled for simplified access - add reportdb-pgsql, salt-publish, and salt-request ports to traefik-values template - fix conditional execution in helm task to prevent unintended skip - fix uyuni database credentials by replacing dynamic password lookups with static values - increase uyuni PVC storage requests from 1-20Mi to 300Mi for consistency
54 lines
1 KiB
YAML
54 lines
1 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: git
|
|
service: forgejo-http
|
|
port: 3000
|
|
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
|