diff options
author | Jozsef Csongvai <jozsef.csongvai@bell.ca> | 2021-04-28 17:04:57 -0400 |
---|---|---|
committer | Jozsef Csongvai <jozsef.csongvai@bell.ca> | 2021-05-03 20:03:45 +0000 |
commit | 35a5a074850abe760c72b6f3c3bff4f1d6d15f39 (patch) | |
tree | e5ba742e875990498b30c09d8e0a018783b73338 /kubernetes/cds/components/cds-blueprints-processor/values.yaml | |
parent | 7736020f103270a5d02d6d0be3fb2372fb3e92ef (diff) |
[CDS] Add startup probe
When cds runs in cluster mode it needs longer startup time.
Also bump image tags to 1.1.4, and change defaults to disable
cluster mode and set replicas=1
Issue-ID: CCSDK-3275
Change-Id: Iec2eaeb2edf0cc2f9b29e35431d0e642e3b6d998
Signed-off-by: Jozsef Csongvai <jozsef.csongvai@bell.ca>
(cherry picked from commit 08515b79a76d6e077ef28e157fcffeec22dc2ad2)
Diffstat (limited to 'kubernetes/cds/components/cds-blueprints-processor/values.yaml')
-rwxr-xr-x | kubernetes/cds/components/cds-blueprints-processor/values.yaml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/kubernetes/cds/components/cds-blueprints-processor/values.yaml b/kubernetes/cds/components/cds-blueprints-processor/values.yaml index 266032844d..fe60b8023c 100755 --- a/kubernetes/cds/components/cds-blueprints-processor/values.yaml +++ b/kubernetes/cds/components/cds-blueprints-processor/values.yaml @@ -51,7 +51,7 @@ secrets: # Application configuration defaults. ################################################################# # application image -image: onap/ccsdk-blueprintsprocessor:1.1.2 +image: onap/ccsdk-blueprintsprocessor:1.1.4 pullPolicy: Always # flag to enable debugging - application support required @@ -77,7 +77,7 @@ config: # dbRootPassExternalSecret # default number of instances -replicaCount: 3 +replicaCount: 1 nodeSelector: {} @@ -89,8 +89,13 @@ dmaapEnabled: true # probe configuration parameters +startup: + initialDelaySeconds: 10 + failureThreshold: 30 + periodSeconds: 10 + liveness: - initialDelaySeconds: 120 + initialDelaySeconds: 0 periodSeconds: 20 timeoutSeconds: 20 # necessary to disable liveness probe when setting breakpoints @@ -129,7 +134,7 @@ persistence: cluster: # Cannot have cluster enabled if the replicaCount is not at least 3 - enabled: true + enabled: false clusterName: cds-cluster |