From e07152b51475b09ac6d784214aec3398786477e8 Mon Sep 17 00:00:00 2001 From: Mingyang Zhu <mzhu9@slb.com> Date: Wed, 12 May 2021 16:45:10 -0500 Subject: [PATCH] correct the contextpath --- devops/azure/chart/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devops/azure/chart/templates/deployment.yaml b/devops/azure/chart/templates/deployment.yaml index c65fc7ac9..491f374aa 100644 --- a/devops/azure/chart/templates/deployment.yaml +++ b/devops/azure/chart/templates/deployment.yaml @@ -48,14 +48,14 @@ spec: cpu: "300m" readinessProbe: httpGet: - path: {{ .Values.server.servlet.contextPath }}/_ah/readiness_check + path: /api/partition/v1/_ah/readiness_check port: 80 periodSeconds: 30 timeoutSeconds: 10 failureThreshold: 3 livenessProbe: httpGet: - path: {{ .Values.server.servlet.contextPath }}/_ah/liveness_check + path: /api/partition/v1/v2/_ah/liveness_check port: 80 volumeMounts: - name: azure-keyvault -- GitLab