diff options
author | 2025-01-31 11:50:47 +0530 | |
---|---|---|
committer | 2025-02-07 11:09:47 +0530 | |
commit | cda490ba0cd7a415d3d32b17e0169c2905dee83c (patch) | |
tree | 067bd6e00201364dc5acf9319ffc16c9731f9267 /kubernetes/sdc/components/sdc-fe/values.yaml | |
parent | a976b00d75d1210805fcebfff55c09a141be5244 (diff) |
Integrate Scalability Changes in SDC
- Add scalability changes to SDC components
Issue-ID: SDC-4712
Change-Id: I9c5f81ce979d3c923981f8b00eeec25f69d9d103
Signed-off-by: Anamika Khantwal <anamika.khantwal@accenture.com>
Diffstat (limited to 'kubernetes/sdc/components/sdc-fe/values.yaml')
-rw-r--r-- | kubernetes/sdc/components/sdc-fe/values.yaml | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/kubernetes/sdc/components/sdc-fe/values.yaml b/kubernetes/sdc/components/sdc-fe/values.yaml index 0079f83e6b..72c048cd48 100644 --- a/kubernetes/sdc/components/sdc-fe/values.yaml +++ b/kubernetes/sdc/components/sdc-fe/values.yaml @@ -57,7 +57,7 @@ affinity: {} liveness: initialDelaySeconds: 1 periodSeconds: 10 - timeoutSeconds: 15 + timeoutSeconds: 30 successThreshold: 1 failureThreshold: 3 # necessary to disable liveness probe when setting breakpoints @@ -67,7 +67,7 @@ liveness: readiness: initialDelaySeconds: 1 periodSeconds: 10 - timeoutSeconds: 15 + timeoutSeconds: 30 successThreshold: 1 failureThreshold: 3 @@ -146,3 +146,21 @@ serviceAccount: log: path: /var/log/onap logConfigMapNamePrefix: '{{ include "common.fullname" . }}' + +autoscaling: + enabled: true + 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 |