Files
observability/goldilocks/helm-values.yaml
Mayne0213 5c4676ca9a REFACTOR(repo): restructure monitoring folder
- and add namespace resou...
- Remove argocd/, helm-values/, ingress/ subdirectories
- Move files to parent directory (argocd.yaml, helm-values.yaml,
  ingress.yaml)
- Update helm valueFiles paths in ArgoCD Applications
- Add namespace.yaml to all applications with Goldilocks labels
- Update destination namespaces to match folder names
- Update kustomization.yaml files to reference new structure
2026-01-04 23:38:05 +09:00

53 lines
1.1 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 configuration (optional)
ingress:
enabled: false
# Uncomment below to enable ingress
# enabled: true
# ingressClassName: nginx
# hosts:
# - host: goldilocks.example.com
# paths:
# - path: /
# type: Prefix
# 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