bug: readinessProbe was using liveness values 59/97659/2
authorOleg Mitsura <oleg.mitsura@amdocs.com>
Mon, 28 Oct 2019 18:06:42 +0000 (14:06 -0400)
committerOleg Mitsura <oleg.mitsura@amdocs.com>
Mon, 28 Oct 2019 18:12:11 +0000 (14:12 -0400)
Issue-ID: CCSDK-1822

Signed-off-by: Oleg Mitsura <oleg.mitsura@amdocs.com>
Change-Id: Id06aacd6081178384d5c13680182fb339e7cfff4

kubernetes/cds/charts/cds-blueprints-processor/templates/deployment.yaml
kubernetes/cds/charts/cds-command-executor/templates/deployment.yaml

index c2b9f9d..8e9b6db 100755 (executable)
@@ -80,9 +80,9 @@ spec:
               httpHeaders:
               - name: Authorization
                 value: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
-            initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
-            periodSeconds: {{ .Values.liveness.periodSeconds }}
-            timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
+            initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
+            periodSeconds: {{ .Values.readiness.periodSeconds }}
+            timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
           volumeMounts:
           - mountPath: /etc/localtime
             name: localtime
index 1737290..bbeeea2 100755 (executable)
@@ -62,9 +62,9 @@ spec:
           readinessProbe:
             tcpSocket:
               port: {{ .Values.service.grpc.internalPort }}
-            initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
-            periodSeconds: {{ .Values.liveness.periodSeconds }}
-            timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
+            initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
+            periodSeconds: {{ .Values.readiness.periodSeconds }}
+            timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
           volumeMounts:
           - mountPath: /etc/localtime
             name: localtime