diff options
author | Brian Freeman <bf1936@att.com> | 2019-08-09 02:46:22 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-08-09 02:46:22 +0000 |
commit | 64b209220eae53dfeaa1662f7f3d7c95b6bf902a (patch) | |
tree | 6f7566a4bea672a793b536deb78fc2b634c652d2 | |
parent | abf6123c8d4886f6b657c7d1af31e9fb46cb47b5 (diff) | |
parent | fd9fdb94dd868734fcb9fcb4c5cbb3d2a61fb076 (diff) |
Merge "Update probe URI for CDS blueprint processor" into staging
-rwxr-xr-x | kubernetes/cds/charts/cds-blueprints-processor/templates/deployment.yaml | 4 |
1 files 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 |