Files
platform/cert-manager/helm-values.yaml
Mayne0213 ce2ee8d39e REFACTOR(repo): restructure infra folder structure
- Remove argocd/, helm-values/, ingress/ subdirectories
- Move files to parent directory with standardized names
- Add namespace.yaml to all apps with Goldilocks labels
- Preserve vault/ subdirectories (falco, velero)
- Update main kustomization.yaml to reference argocd.yaml files directly
- Comment out argocd.yaml in each app's kustomization.yaml to prevent
  circular reference

Applications restructured:
- cert-manager (2 ArgoCD apps)
- external-secrets
- reloader
- vault (2 ArgoCD apps)
- velero (2 ArgoCD apps)
- falco
- cnpg
- haproxy
- metallb
- vpa
- argocd
2025-12-29 02:21:00 +09:00

34 lines
627 B
YAML

# Cert-Manager Helm Values
# Chart: https://github.com/cert-manager/cert-manager/tree/master/deploy/charts/cert-manager
# Install CRDs with Helm
installCRDs: true
replicaCount: 1
resources:
requests:
cpu: 3m # Reduced to 30% of original (10m -> 3m)
memory: 32Mi
webhook:
replicaCount: 1
resources:
requests:
cpu: 3m # Reduced to 30% of original (10m -> 3m)
memory: 32Mi
cainjector:
replicaCount: 1
resources:
requests:
cpu: 3m # Reduced to 30% of original (10m -> 3m)
memory: 32Mi
# Prometheus metrics
prometheus:
enabled: true
servicemonitor:
enabled: false