From 96edf07e1c9b7db3a1e30af5db36a72e8f59d1d2 Mon Sep 17 00:00:00 2001 From: kevinvollsen Date: Thu, 4 Jul 2024 14:11:00 +0200 Subject: [PATCH] TSTCLD-93: Set path and port for liveness and readiness probe --- charts/sophora-ugc-demo/Chart.yaml | 2 +- charts/sophora-ugc-demo/templates/deployment.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/sophora-ugc-demo/Chart.yaml b/charts/sophora-ugc-demo/Chart.yaml index 90c5552..bd68fbb 100644 --- a/charts/sophora-ugc-demo/Chart.yaml +++ b/charts/sophora-ugc-demo/Chart.yaml @@ -3,7 +3,7 @@ name: sophora-ugc-demo description: A Helm chart for the UGC demo type: application -version: 0.1.1 +version: 0.1.2 appVersion: 'latest' diff --git a/charts/sophora-ugc-demo/templates/deployment.yaml b/charts/sophora-ugc-demo/templates/deployment.yaml index a067723..5f846da 100644 --- a/charts/sophora-ugc-demo/templates/deployment.yaml +++ b/charts/sophora-ugc-demo/templates/deployment.yaml @@ -71,14 +71,14 @@ spec: mountPath: /usr/local/ugc-demo/ livenessProbe: httpGet: - path: / - port: http + path: /ugc-demo/demosite/ + port: 8080 initialDelaySeconds: 30 periodSeconds: 3 readinessProbe: httpGet: - path: / - port: http + path: /ugc-demo/demosite/ + port: 8080 initialDelaySeconds: 30 periodSeconds: 3 resources: