- Update argocd controller memory 1700Mi→2040Mi (+20%) - Update argocd server memory 138Mi→166Mi (+20%) - Update argocd repo-server memory 1536Mi→1843Mi (+20%) - Update cert-manager memory 96Mi→115Mi (+20%) - Update cert-manager webhook memory 96Mi→115Mi (+20%) - Update cert-manager cainjector memory 192Mi→230Mi (+20%)
71 lines
1.6 KiB
YAML
71 lines
1.6 KiB
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: 23m
|
|
memory: 115Mi
|
|
limits:
|
|
memory: 115Mi
|
|
|
|
webhook:
|
|
replicaCount: 1
|
|
resources:
|
|
requests:
|
|
cpu: 23m
|
|
memory: 115Mi
|
|
limits:
|
|
memory: 115Mi
|
|
# Affinity - Soft Anti-Affinity to spread pods across nodes
|
|
affinity:
|
|
podAntiAffinity:
|
|
preferredDuringSchedulingIgnoredDuringExecution:
|
|
- weight: 100
|
|
podAffinityTerm:
|
|
labelSelector:
|
|
matchLabels:
|
|
app.kubernetes.io/name: cert-manager-webhook
|
|
topologyKey: kubernetes.io/hostname
|
|
|
|
cainjector:
|
|
replicaCount: 1
|
|
resources:
|
|
requests:
|
|
cpu: 23m
|
|
memory: 230Mi
|
|
limits:
|
|
memory: 230Mi
|
|
# Affinity - Soft Anti-Affinity to spread pods across nodes
|
|
affinity:
|
|
podAntiAffinity:
|
|
preferredDuringSchedulingIgnoredDuringExecution:
|
|
- weight: 100
|
|
podAffinityTerm:
|
|
labelSelector:
|
|
matchLabels:
|
|
app.kubernetes.io/name: cert-manager-cainjector
|
|
topologyKey: kubernetes.io/hostname
|
|
|
|
# Affinity - Soft Anti-Affinity to spread pods across nodes
|
|
affinity:
|
|
podAntiAffinity:
|
|
preferredDuringSchedulingIgnoredDuringExecution:
|
|
- weight: 100
|
|
podAffinityTerm:
|
|
labelSelector:
|
|
matchLabels:
|
|
app.kubernetes.io/name: cert-manager
|
|
topologyKey: kubernetes.io/hostname
|
|
|
|
# Prometheus metrics
|
|
prometheus:
|
|
enabled: true
|
|
servicemonitor:
|
|
enabled: false
|
|
|