From fd9fdb94dd868734fcb9fcb4c5cbb3d2a61fb076 Mon Sep 17 00:00:00 2001 From: Alexis de Talhouët Date: Wed, 17 Jul 2019 08:15:07 -0400 Subject: Update probe URI for CDS blueprint processor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I6458697ede852318a059a054d6158df5c489c793 Issue-ID: CCSDK-1423 Signed-off-by: Alexis de Talhouët (cherry picked from commit 892564fcdda352fdb49cf16e58530519a6771c6d) --- .../cds/charts/cds-blueprints-processor/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kubernetes/cds/charts/cds-blueprints-processor/templates/deployment.yaml b/kubernetes/cds/charts/cds-blueprints-processor/templates/deployment.yaml index 736b5cea24..95069fcbff 100755 --- a/kubernetes/cds/charts/cds-blueprints-processor/templates/deployment.yaml +++ b/kubernetes/cds/charts/cds-blueprints-processor/templates/deployment.yaml @@ -60,7 +60,7 @@ spec: {{ if .Values.liveness.enabled }} livenessProbe: httpGet: - path: /api/v1/execution-service/ping + path: /api/v1/execution-service/health-check port: {{ .Values.service.http.internalPort }} httpHeaders: - name: Authorization @@ -70,7 +70,7 @@ spec: {{ end }} readinessProbe: httpGet: - path: /api/v1/execution-service/ping + path: /api/v1/execution-service/health-check port: {{ .Values.service.http.internalPort }} httpHeaders: - name: Authorization -- cgit 1.2.3-korg