From 884d1d1784de8acba176672003a4f370bf041cc6 Mon Sep 17 00:00:00 2001 From: zhenyus Date: Mon, 17 Mar 2025 21:38:09 +0800 Subject: [PATCH] feat: add httpGet type for readiness and liveness probes in authentication, centralStorage, content, notification, and payment services Signed-off-by: zhenyus --- freeleaps/helm-pkg/authentication/values.prod.yaml | 2 ++ freeleaps/helm-pkg/centralStorage/values.prod.yaml | 2 ++ freeleaps/helm-pkg/content/values.prod.yaml | 2 ++ freeleaps/helm-pkg/notification/values.prod.yaml | 2 ++ freeleaps/helm-pkg/payment/values.prod.yaml | 2 ++ 5 files changed, 10 insertions(+) diff --git a/freeleaps/helm-pkg/authentication/values.prod.yaml b/freeleaps/helm-pkg/authentication/values.prod.yaml index 95272dc0..1d731a2a 100644 --- a/freeleaps/helm-pkg/authentication/values.prod.yaml +++ b/freeleaps/helm-pkg/authentication/values.prod.yaml @@ -23,6 +23,7 @@ authentication: memory: 128Mi probes: readiness: + type: httpGet config: path: /api/_/readyz port: 8004 @@ -33,6 +34,7 @@ authentication: failureThreshold: 3 terminationGracePeriodSeconds: 30 liveness: + type: httpGet config: path: /api/_/livez port: 8004 diff --git a/freeleaps/helm-pkg/centralStorage/values.prod.yaml b/freeleaps/helm-pkg/centralStorage/values.prod.yaml index 4e34f9c3..4dbf40ab 100644 --- a/freeleaps/helm-pkg/centralStorage/values.prod.yaml +++ b/freeleaps/helm-pkg/centralStorage/values.prod.yaml @@ -23,6 +23,7 @@ centralStorage: memory: 512Mi probes: readiness: + type: httpGet config: path: /api/_/readyz port: 8005 @@ -33,6 +34,7 @@ centralStorage: failureThreshold: 3 terminationGracePeriodSeconds: 30 liveness: + type: httpGet config: path: /api/_/livez port: 8005 diff --git a/freeleaps/helm-pkg/content/values.prod.yaml b/freeleaps/helm-pkg/content/values.prod.yaml index dd88ac1c..da675e99 100644 --- a/freeleaps/helm-pkg/content/values.prod.yaml +++ b/freeleaps/helm-pkg/content/values.prod.yaml @@ -23,6 +23,7 @@ content: memory: 512Mi probes: readiness: + type: httpGet config: path: /api/_/readyz port: 8013 @@ -33,6 +34,7 @@ content: failureThreshold: 3 terminationGracePeriodSeconds: 30 liveness: + type: httpGet config: path: /api/_/livez port: 8013 diff --git a/freeleaps/helm-pkg/notification/values.prod.yaml b/freeleaps/helm-pkg/notification/values.prod.yaml index 16224929..b365311c 100644 --- a/freeleaps/helm-pkg/notification/values.prod.yaml +++ b/freeleaps/helm-pkg/notification/values.prod.yaml @@ -23,6 +23,7 @@ notification: memory: 128Mi probes: readiness: + type: httpGet config: path: /api/_/readyz port: 8003 @@ -33,6 +34,7 @@ notification: failureThreshold: 3 terminationGracePeriodSeconds: 30 liveness: + type: httpGet config: path: /api/_/livez port: 8003 diff --git a/freeleaps/helm-pkg/payment/values.prod.yaml b/freeleaps/helm-pkg/payment/values.prod.yaml index bad18eab..762a128c 100644 --- a/freeleaps/helm-pkg/payment/values.prod.yaml +++ b/freeleaps/helm-pkg/payment/values.prod.yaml @@ -23,6 +23,7 @@ payment: memory: 256Mi probes: readiness: + type: httpGet config: path: /api/_/readyz port: 8006 @@ -33,6 +34,7 @@ payment: failureThreshold: 3 terminationGracePeriodSeconds: 30 liveness: + type: httpGet config: path: /api/_/livez port: 8006