diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-09-06 07:51:17 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-09-06 07:51:17 +0000 |
commit | 4d0d31a8bb4415d3a3c4a1600bc0476ff8a4ac2d (patch) | |
tree | 50c632b27c853fbf75064f78124b7c1517639ed6 /kubernetes/aai/components/aai-graphadmin/values.yaml | |
parent | 6d0c0014f558fdf4f01803a582ff49b8445cfdaf (diff) | |
parent | 6c806532ef21164ca85f972b196dfd3375409eac (diff) |
Merge "[AAI] Added Rolling Update Strategy to graphAdmin"
Diffstat (limited to 'kubernetes/aai/components/aai-graphadmin/values.yaml')
-rw-r--r-- | kubernetes/aai/components/aai-graphadmin/values.yaml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/kubernetes/aai/components/aai-graphadmin/values.yaml b/kubernetes/aai/components/aai-graphadmin/values.yaml index 03d034bf05..c29004e837 100644 --- a/kubernetes/aai/components/aai-graphadmin/values.yaml +++ b/kubernetes/aai/components/aai-graphadmin/values.yaml @@ -125,6 +125,14 @@ flavor: small flavorOverride: small # default number of instances replicaCount: 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 # Configuration for the graphadmin deployment config: @@ -204,6 +212,7 @@ service: internalPort: 8449 portName2: aai-graphadmin-5005 internalPort2: 5005 + terminationGracePeriodSeconds: 120 ingress: enabled: false |