Files
applications/headlamp/helm-values.yaml
Mayne0213 6f8346ebdf PERF(applications): remove CPU limits for stability
- Remove CPU limits from docusaurus, headlamp, homer, mas
- Prevents CPU throttling issues
2026-01-12 02:27:19 +09:00

67 lines
1.2 KiB
YAML

# Headlamp Helm Values
replicaCount: 1
image:
registry: ghcr.io
repository: headlamp-k8s/headlamp
tag: ""
pullPolicy: IfNotPresent
serviceAccount:
create: true
name: headlamp
clusterRoleBinding:
create: true
service:
type: ClusterIP
port: 80
# Resource settings (no CPU limit for stability)
resources:
requests:
cpu: 15m
memory: 100Mi
limits:
memory: 100Mi
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