Files
applications/headlamp/helm-values.yaml
Mayne0213 fd1548c70c FEAT(applications): enable HA with replica 2 and soft anti-affinity
- Add replicaCount: 2 to docusaurus, headlamp, homer, mas, umami
- Add soft pod anti-affinity for node distribution
- Enable high availability across multiple nodes
2026-01-09 21:38:09 +09:00

66 lines
1.1 KiB
YAML

# Headlamp Helm Values
replicaCount: 2
image:
registry: ghcr.io
repository: headlamp-k8s/headlamp
tag: ""
pullPolicy: IfNotPresent
serviceAccount:
create: true
name: headlamp
clusterRoleBinding:
create: true
service:
type: ClusterIP
port: 80
resources:
requests:
cpu: 15m
memory: 100Mi
limits:
memory: 150Mi
ingress:
enabled: true
ingressClassName: traefik
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
hosts:
- host: kubernetes0213.kro.kr
paths:
- path: /
type: ImplementationSpecific
tls:
- secretName: headlamp-tls
hosts:
- kubernetes0213.kro.kr
# Config
config:
baseURL: ""
oidc:
secret:
create: false
externalSecret:
enabled: true
name: headlamp-oidc
extraArgs:
- -oidc-skip-tls-verify
# Affinity - Soft Anti-Affinity to spread pods across nodes
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 100
podAffinityTerm:
labelSelector:
matchLabels:
app.kubernetes.io/name: headlamp
topologyKey: kubernetes.io/hostname