summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBorislavG <Borislav.Glozman@amdocs.com>2018-06-07 08:34:52 +0000
committerBorislavG <Borislav.Glozman@amdocs.com>2018-06-07 08:34:52 +0000
commit2c90cb94f861727fa8bec029d167b05a965326ef (patch)
treeeac222a9da3e5187d8d67f1b55c07822ab006a69
parentc84adbb5be45ede3e567560a0b7ec8a566180a29 (diff)
Fix AAF CS startup timeouts
Change-Id: I8140e6c392726e78e0a2c9b18337fa712eb9d944 Issue-ID: OOM-1128 Signed-off-by: BorislavG <Borislav.Glozman@amdocs.com>
-rw-r--r--charts/aaf-cs/templates/deployment.yaml2
-rw-r--r--charts/aaf-cs/values.yaml4
2 files changed, 3 insertions, 3 deletions
diff --git a/charts/aaf-cs/templates/deployment.yaml b/charts/aaf-cs/templates/deployment.yaml
index 4253d2f..893c5ac 100644
--- a/charts/aaf-cs/templates/deployment.yaml
+++ b/charts/aaf-cs/templates/deployment.yaml
@@ -68,7 +68,7 @@ spec:
- /bin/sh
- -c
- >
- /bin/sleep 30;
+ /bin/sleep {{ .Values.readiness.initialDelaySeconds }};
cd /data/;
cqlsh -u root -p root -f keyspace.cql ;
cqlsh -u root -p root -f init.cql ;
diff --git a/charts/aaf-cs/values.yaml b/charts/aaf-cs/values.yaml
index 6d5ed6c..2131e85 100644
--- a/charts/aaf-cs/values.yaml
+++ b/charts/aaf-cs/values.yaml
@@ -42,14 +42,14 @@ affinity: {}
# probe configuration parameters
liveness:
- initialDelaySeconds: 10
+ initialDelaySeconds: 180
periodSeconds: 10
# necessary to disable liveness probe when setting breakpoints
# in debugger so K8s doesn't restart unresponsive container
enabled: true
readiness:
- initialDelaySeconds: 10
+ initialDelaySeconds: 180
periodSeconds: 10
service: