diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2021-02-25 10:05:05 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-02-25 10:05:05 +0000 |
commit | afb8a76b5f691df1745bfd5bb36cff38b944d7f3 (patch) | |
tree | 27e9c6dbae2cff3ce89536d486b41d5c50a673bc /kubernetes/portal | |
parent | 8db64842e57c3e4a1e049f8e5ba57d86c1bbd73d (diff) | |
parent | 226cbaeccc83c0152c74694036c0c0428debffb2 (diff) |
Merge "[CASSANDRA] Loosen probe check time"
Diffstat (limited to 'kubernetes/portal')
-rw-r--r-- | kubernetes/portal/components/portal-cassandra/templates/deployment.yaml | 2 | ||||
-rw-r--r-- | kubernetes/portal/components/portal-cassandra/values.yaml | 10 |
2 files changed, 8 insertions, 4 deletions
diff --git a/kubernetes/portal/components/portal-cassandra/templates/deployment.yaml b/kubernetes/portal/components/portal-cassandra/templates/deployment.yaml index 20c396fa42..59eace693a 100644 --- a/kubernetes/portal/components/portal-cassandra/templates/deployment.yaml +++ b/kubernetes/portal/components/portal-cassandra/templates/deployment.yaml @@ -62,6 +62,7 @@ spec: nodetool status initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.liveness.periodSeconds }} + timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} successThreshold: {{ .Values.liveness.successThreshold }} failureThreshold: {{ .Values.liveness.failureThreshold }} {{ end }} @@ -74,6 +75,7 @@ spec: nodetool status | grep -E "^UN\\s+${POD_IP}" initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} periodSeconds: {{ .Values.readiness.periodSeconds }} + timeoutSeconds: {{ .Values.readiness.timeoutSeconds }} successThreshold: {{ .Values.readiness.successThreshold }} failureThreshold: {{ .Values.readiness.failureThreshold }} lifecycle: diff --git a/kubernetes/portal/components/portal-cassandra/values.yaml b/kubernetes/portal/components/portal-cassandra/values.yaml index b06761a870..bed75e5051 100644 --- a/kubernetes/portal/components/portal-cassandra/values.yaml +++ b/kubernetes/portal/components/portal-cassandra/values.yaml @@ -53,16 +53,18 @@ affinity: {} # probe configuration parameters liveness: initialDelaySeconds: 10 - periodSeconds: 10 + periodSeconds: 20 + timeoutSeconds: 10 + successThreshold: 1 + failureThreshold: 3 # necessary to disable liveness probe when setting breakpoints # in debugger so K8s doesn't restart unresponsive container enabled: true - successThreshold: 1 - failureThreshold: 3 readiness: initialDelaySeconds: 10 - periodSeconds: 10 + periodSeconds: 20 + timeoutSeconds: 10 successThreshold: 1 failureThreshold: 3 |