PERF(authentik): increase replicas for HA

- Traefik, CoreDNS, Authentik
- Traefik: 2 replicas
- CoreDNS: 2 replicas (new HelmChartConfig)
- Authentik: 2 replicas for server and worker
- Vault: Keep file storage (standalone)
This commit is contained in:
2025-12-30 19:47:04 +09:00
parent eb76a4eb28
commit d8011a4039
3 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
apiVersion: helm.cattle.io/v1
kind: HelmChartConfig
metadata:
name: coredns
namespace: kube-system
spec:
valuesContent: |-
# High Availability - 2 replicas
replicaCount: 2

View File

@@ -5,6 +5,10 @@ metadata:
namespace: kube-system namespace: kube-system
spec: spec:
valuesContent: |- valuesContent: |-
# 2 replicas
deployment:
replicas: 2
# Traefik Dashboard 활성화 # Traefik Dashboard 활성화
dashboard: dashboard:
enabled: true enabled: true

View File

@@ -3,4 +3,5 @@ kind: Kustomization
resources: resources:
- helm-values.yaml - helm-values.yaml
- coredns-config.yaml
- ingress.yaml - ingress.yaml