diff options
author | 2022-11-23 11:06:46 +0000 | |
---|---|---|
committer | 2022-11-23 11:06:46 +0000 | |
commit | 9b55acc010697efe1facde3f6d722c26191990fe (patch) | |
tree | ccdf714794a52bd7429618197db5e636a60e8e57 /kubernetes/aai/components/aai-schema-service | |
parent | c0248a7d0359e18eac0c7f684b81054cc15ef6c0 (diff) | |
parent | 63db716df5e8a66512a5e843b9b3588c3fc07ed4 (diff) |
Merge "[AAI] OOM AAI Rolling Update fixes"
Diffstat (limited to 'kubernetes/aai/components/aai-schema-service')
-rw-r--r-- | kubernetes/aai/components/aai-schema-service/templates/deployment.yaml | 7 | ||||
-rw-r--r-- | kubernetes/aai/components/aai-schema-service/values.yaml | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/kubernetes/aai/components/aai-schema-service/templates/deployment.yaml b/kubernetes/aai/components/aai-schema-service/templates/deployment.yaml index cd58b959ad..8a7c43f0b9 100644 --- a/kubernetes/aai/components/aai-schema-service/templates/deployment.yaml +++ b/kubernetes/aai/components/aai-schema-service/templates/deployment.yaml @@ -28,6 +28,13 @@ metadata: heritage: {{ .Release.Service }} spec: replicas: {{ .Values.replicaCount }} + strategy: + type: {{ .Values.updateStrategy.type }} + {{- if (eq "RollingUpdate" .Values.updateStrategy.type) }} + rollingUpdate: + maxUnavailable: {{ .Values.updateStrategy.maxUnavailable }} + maxSurge: {{ .Values.updateStrategy.maxSurge }} + {{- end }} selector: matchLabels: app: {{ include "common.name" . }} diff --git a/kubernetes/aai/components/aai-schema-service/values.yaml b/kubernetes/aai/components/aai-schema-service/values.yaml index a72b1d9ec1..50e12e8e4d 100644 --- a/kubernetes/aai/components/aai-schema-service/values.yaml +++ b/kubernetes/aai/components/aai-schema-service/values.yaml @@ -101,6 +101,11 @@ flavorOverride: small # default number of instances replicaCount: 1 +updateStrategy: + type: RollingUpdate + maxUnavailable: 0 + maxSurge: 1 + nodeSelector: {} affinity: {} |