Files
observability/goldilocks/helm-values.yaml
Mayne0213 7b9abaf9c8 REFACTOR(obs): integrate ingress to helm-values
- alertmanager: move ingress to karma inline, servicemonitor to manifests
- goldilocks: move ingress to helm-values
- grafana: move ingress to helm-values
- uptime-kuma: move ingress to helm-values
2026-01-06 01:57:03 +09:00

57 lines
1.2 KiB
YAML

# Goldilocks Helm Values
# Reference: https://github.com/FairwindsOps/charts/tree/master/stable/goldilocks
# Dashboard configuration
dashboard:
enabled: true
replicaCount: 1
resources:
limits:
cpu: null
memory: 256Mi
requests:
cpu: 25m
memory: 128Mi
service:
type: ClusterIP
port: 80
ingress:
enabled: true
ingressClassName: traefik
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
traefik.ingress.kubernetes.io/router.middlewares: authelia-authelia-auth@kubernetescrd
hosts:
- host: goldilocks0213.kro.kr
paths:
- path: /
type: Prefix
tls:
- secretName: goldilocks-dashboard-tls
hosts:
- goldilocks0213.kro.kr
# Controller configuration
controller:
enabled: true
resources:
limits:
cpu: null
memory: 256Mi
requests:
cpu: 25m
memory: 128Mi
# Enable VPA recommendations for all namespaces
# Set to false to only monitor namespaces with the label: goldilocks.fairwinds.com/enabled=true
enableCostRecommendations: true
# VPA configuration (should already be installed)
vpa:
# Set to false since we're installing VPA separately
enabled: false