diff options
Diffstat (limited to 'kubernetes/sdc/components/sdc-wfd-be/values.yaml')
-rw-r--r-- | kubernetes/sdc/components/sdc-wfd-be/values.yaml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/kubernetes/sdc/components/sdc-wfd-be/values.yaml b/kubernetes/sdc/components/sdc-wfd-be/values.yaml index cc85176748..4d39ce02d5 100644 --- a/kubernetes/sdc/components/sdc-wfd-be/values.yaml +++ b/kubernetes/sdc/components/sdc-wfd-be/values.yaml @@ -153,3 +153,21 @@ serviceAccount: wait_for_job_container: containers: - '{{ include "common.name" . }}-job' + +autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 3 + targetCPUUtilizationPercentage: 75 + +# number of ReplicaSets that should be retained for the Deployment +revisionHistoryLimit: 1 + +# the minimum number of seconds that a newly created Pod should be ready +minReadySeconds: 30 +updateStrategy: + type: RollingUpdate + # The number of pods that can be unavailable during the update process + maxUnavailable: 0 + # The number of pods that can be created above the desired amount of pods during an update + maxSurge: 1 |