diff options
author | Mike Elliott <mike.elliott@amdocs.com> | 2019-10-04 15:23:37 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-10-04 15:23:37 +0000 |
commit | 79d2f504e49215df6d918ed7e96469f3f460f5c7 (patch) | |
tree | eee6bdd66fa8b1d50a66002c58295697e674a72b /kubernetes/sdc/charts/sdc-fe | |
parent | 7f145c7b0769849c2fae9677fa3daa6a58ca99d1 (diff) | |
parent | 6142d94779e6a57e01833bdb1dba14b183f9a806 (diff) |
Merge "Increase liness/readiness timeout and period"
Diffstat (limited to 'kubernetes/sdc/charts/sdc-fe')
-rw-r--r-- | kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml | 2 | ||||
-rw-r--r-- | kubernetes/sdc/charts/sdc-fe/values.yaml | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml b/kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml index 62dffd6376..ee4da9b7b1 100644 --- a/kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml +++ b/kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml @@ -73,12 +73,14 @@ spec: port: {{ .Values.service.internalPort2 }} initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.liveness.periodSeconds }} + timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} {{ end }} readinessProbe: tcpSocket: port: {{ .Values.service.internalPort2 }} initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} periodSeconds: {{ .Values.readiness.periodSeconds }} + timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} resources: {{ include "common.resources" . | indent 12 }} env: diff --git a/kubernetes/sdc/charts/sdc-fe/values.yaml b/kubernetes/sdc/charts/sdc-fe/values.yaml index 6831555a44..8878f1a0b6 100644 --- a/kubernetes/sdc/charts/sdc-fe/values.yaml +++ b/kubernetes/sdc/charts/sdc-fe/values.yaml @@ -51,14 +51,16 @@ affinity: {} # probe configuration parameters liveness: initialDelaySeconds: 10 - periodSeconds: 10 + periodSeconds: 60 + timeoutSeconds: 15 # necessary to disable liveness probe when setting breakpoints # in debugger so K8s doesn't restart unresponsive container enabled: true readiness: initialDelaySeconds: 10 - periodSeconds: 10 + periodSeconds: 60 + timeoutSeconds: 15 service: #Example service definition with external, internal and node ports. |