diff options
author | Borislav Glozman <Borislav.Glozman@amdocs.com> | 2019-07-22 07:27:19 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-07-22 07:27:19 +0000 |
commit | 66fda61bcacaef80927d996f8efe8623fde6531a (patch) | |
tree | 18f121c99f999c7e010de4ba3e0ff8a79bd0d03f | |
parent | 775f6f661b6345da7bdcf547b6ae8a1420ac50da (diff) | |
parent | 892564fcdda352fdb49cf16e58530519a6771c6d (diff) |
Merge "Update probe URI for CDS blueprint processor"
-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 |