Add missing values
Signed-off-by: SIRICA1 <ricardo.silva@mercedes-benz.io>
This commit is contained in:
parent
8f57e93b3d
commit
a3c6837826
1 changed files with 30 additions and 5 deletions
|
@ -67,9 +67,6 @@ global:
|
||||||
# -- Set the global logging level. One of: `debug`, `info`, `warn` or `error`
|
# -- Set the global logging level. One of: `debug`, `info`, `warn` or `error`
|
||||||
level: info
|
level: info
|
||||||
|
|
||||||
# -- Annotations for the all deployed Statefulsets
|
|
||||||
statefulsetAnnotations: {}
|
|
||||||
|
|
||||||
# -- Annotations for the all deployed Deployments
|
# -- Annotations for the all deployed Deployments
|
||||||
deploymentAnnotations: {}
|
deploymentAnnotations: {}
|
||||||
|
|
||||||
|
@ -505,6 +502,34 @@ controller:
|
||||||
# Additional replicas will cause sharding of managed clusters across number of replicas.
|
# Additional replicas will cause sharding of managed clusters across number of replicas.
|
||||||
replicas: 1
|
replicas: 1
|
||||||
|
|
||||||
|
## Argo CD Application Controller Horizontal Pod Autoscaler
|
||||||
|
autoscaling:
|
||||||
|
# -- Enable Horizontal Pod Autoscaler ([HPA]) for the Argo CD Application Controller
|
||||||
|
enabled: false
|
||||||
|
# -- Minimum number of replicas for the Argo CD Application Controller [HPA]
|
||||||
|
minReplicas: 1
|
||||||
|
# -- Maximum number of replicas for the Argo CD Application Controller [HPA]
|
||||||
|
maxReplicas: 5
|
||||||
|
# -- Average CPU utilization percentage for the Argo CD Application Controller [HPA]
|
||||||
|
targetCPUUtilizationPercentage: 50
|
||||||
|
# -- Average memory utilization percentage for the Argo CD Application Controller [HPA]
|
||||||
|
targetMemoryUtilizationPercentage: 50
|
||||||
|
# -- Configures the scaling behavior of the target in both Up and Down directions.
|
||||||
|
# This is only available on HPA apiVersion `autoscaling/v2beta2` and newer
|
||||||
|
behavior: {}
|
||||||
|
# scaleDown:
|
||||||
|
# stabilizationWindowSeconds: 300
|
||||||
|
# policies:
|
||||||
|
# - type: Pods
|
||||||
|
# value: 1
|
||||||
|
# periodSeconds: 180
|
||||||
|
# scaleUp:
|
||||||
|
# stabilizationWindowSeconds: 300
|
||||||
|
# policies:
|
||||||
|
# - type: Pods
|
||||||
|
# value: 2
|
||||||
|
# periodSeconds: 60
|
||||||
|
|
||||||
## Application controller Pod Disruption Budget
|
## Application controller Pod Disruption Budget
|
||||||
## Ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
|
## Ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
|
||||||
pdb:
|
pdb:
|
||||||
|
@ -598,8 +623,8 @@ controller:
|
||||||
# - name: custom-tools
|
# - name: custom-tools
|
||||||
# emptyDir: {}
|
# emptyDir: {}
|
||||||
|
|
||||||
# -- Annotations for the application controller StatefulSet
|
# -- Annotations for the application controller Deployment
|
||||||
statefulsetAnnotations: {}
|
deploymentAnnotations: {}
|
||||||
|
|
||||||
# -- Annotations to be added to application controller pods
|
# -- Annotations to be added to application controller pods
|
||||||
podAnnotations: {}
|
podAnnotations: {}
|
||||||
|
|
Loading…
Reference in a new issue