From 240d75195eddf638ef004256dabd5f0a749b3f80 Mon Sep 17 00:00:00 2001 From: Timo Notheisen <65653426+tnotheis@users.noreply.github.com> Date: Wed, 20 Dec 2023 14:49:40 +0100 Subject: [PATCH] Helm Chart: update Consumer API (#459) * feat: set health check url for admin ui to /health * fix: set consumerapi version to v4.2.3 --- helm/charts/adminui/templates/deployment.yaml | 4 ++-- helm/charts/consumerapi/Chart.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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"