- Traefik, CoreDNS, Authentik - Traefik: 2 replicas - CoreDNS: 2 replicas (new HelmChartConfig) - Authentik: 2 replicas for server and worker - Vault: Keep file storage (standalone)
26 lines
435 B
YAML
26 lines
435 B
YAML
apiVersion: helm.cattle.io/v1
|
|
kind: HelmChartConfig
|
|
metadata:
|
|
name: traefik
|
|
namespace: kube-system
|
|
spec:
|
|
valuesContent: |-
|
|
# 2 replicas
|
|
deployment:
|
|
replicas: 2
|
|
|
|
# Traefik Dashboard 활성화
|
|
dashboard:
|
|
enabled: true
|
|
|
|
# API 활성화 (Dashboard에서 필요)
|
|
api:
|
|
dashboard: true
|
|
insecure: false
|
|
|
|
# ports 설정
|
|
ports:
|
|
traefik:
|
|
expose:
|
|
default: true
|