diff --git a/helm/charts/adminui/templates/deployment.yaml b/helm/charts/adminui/templates/deployment.yaml index d4cf74c794..5d847a0209 100644 --- a/helm/charts/adminui/templates/deployment.yaml +++ b/helm/charts/adminui/templates/deployment.yaml @@ -61,7 +61,7 @@ spec: protocol: TCP livenessProbe: httpGet: - path: / + path: /health port: 8080 initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }} periodSeconds: {{ .Values.livenessProbe.periodSeconds }} @@ -69,7 +69,7 @@ spec: failureThreshold: {{ .Values.livenessProbe.failureThreshold }} readinessProbe: httpGet: - path: / + path: /health port: 8080 initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }} periodSeconds: {{ .Values.readinessProbe.periodSeconds }} diff --git a/helm/charts/consumerapi/Chart.yaml b/helm/charts/consumerapi/Chart.yaml index f25a183191..0689461f10 100644 --- a/helm/charts/consumerapi/Chart.yaml +++ b/helm/charts/consumerapi/Chart.yaml @@ -6,4 +6,4 @@ type: application version: "1.0.0" -appVersion: "v4.2.2" +appVersion: "v4.2.3"