From eac0ccf62e5b084f0ee87b961d2524376e32b2fb Mon Sep 17 00:00:00 2001 From: Jake Spain Date: Wed, 15 Mar 2023 17:23:21 -0400 Subject: [PATCH] Update liveness and readiness to v3 api --- helm-charts/vmpooler/templates/deployment-api.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm-charts/vmpooler/templates/deployment-api.yaml b/helm-charts/vmpooler/templates/deployment-api.yaml index d3921b0..f89bec8 100644 --- a/helm-charts/vmpooler/templates/deployment-api.yaml +++ b/helm-charts/vmpooler/templates/deployment-api.yaml @@ -46,13 +46,13 @@ spec: - 'api' livenessProbe: httpGet: - path: /api/v2/status + path: /api/v3/status port: {{ .Values.service.port }} initialDelaySeconds: 40 periodSeconds: 10 readinessProbe: httpGet: - path: /api/v2/status + path: /api/v3/status port: {{ .Values.service.port }} initialDelaySeconds: 40 periodSeconds: 10