diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-10-14 10:32:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-10-14 10:32:27 +0000 |
commit | c266f04e08ff925cd02b4bb584f1354da68de87e (patch) | |
tree | 23b133a59dd4a54fcc844a5f90f32f689f8e6fc5 /kubernetes/clamp | |
parent | 9d0abb896154f58449022f6472688f6f917b4201 (diff) | |
parent | e9de7f65855420db72a5c585b224c0b0b31a9a47 (diff) |
Merge "[CLAMP] Give times to mariadb to come up"
Diffstat (limited to 'kubernetes/clamp')
-rw-r--r-- | kubernetes/clamp/components/clamp-mariadb/values.yaml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/kubernetes/clamp/components/clamp-mariadb/values.yaml b/kubernetes/clamp/components/clamp-mariadb/values.yaml index 492145ae07..f9a31b6b86 100644 --- a/kubernetes/clamp/components/clamp-mariadb/values.yaml +++ b/kubernetes/clamp/components/clamp-mariadb/values.yaml @@ -55,15 +55,17 @@ affinity: {} # probe configuration parameters liveness: - initialDelaySeconds: 10 + initialDelaySeconds: 30 periodSeconds: 10 + timeoutSeconds: 3 # necessary to disable liveness probe when setting breakpoints # in debugger so K8s doesn't restart unresponsive container enabled: true readiness: - initialDelaySeconds: 10 + initialDelaySeconds: 30 periodSeconds: 10 + timeoutSeconds: 3 ## Persist data to a persitent volume persistence: |