From a984394b5d2f956e368e54ac6e8ae3a7b50e4032 Mon Sep 17 00:00:00 2001 From: timgl Date: Wed, 17 May 2023 15:06:48 +0100 Subject: [PATCH 1/4] chore: Update chart to 1.43.1 --- charts/posthog/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/posthog/Chart.yaml b/charts/posthog/Chart.yaml index 2509b1a3..113051e6 100644 --- a/charts/posthog/Chart.yaml +++ b/charts/posthog/Chart.yaml @@ -15,7 +15,7 @@ version: 30.18.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. -appVersion: 1.43.0 +appVersion: 1.43.1 dependencies: - name: cert-manager From ec295c75436ce6a5ad02078418876efe0b8e7d0b Mon Sep 17 00:00:00 2001 From: timgl Date: Wed, 17 May 2023 15:07:24 +0100 Subject: [PATCH 2/4] Update values.yaml --- charts/posthog/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/posthog/values.yaml b/charts/posthog/values.yaml index 6416d847..aa1f3e84 100644 --- a/charts/posthog/values.yaml +++ b/charts/posthog/values.yaml @@ -16,7 +16,7 @@ image: # -- PostHog image tag to use (example: `release-1.43.0`). tag: # -- PostHog default image. Do not overwrite, use `image.sha` or `image.tag` instead. - default: ":release-1.43.0" + default: ":release-1.43.1" # -- PostHog image pull policy. pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. From a0898038bbe5d8dc19e8bf44d38530780d08c62a Mon Sep 17 00:00:00 2001 From: timgl Date: Wed, 17 May 2023 15:09:52 +0100 Subject: [PATCH 3/4] Update Chart.yaml --- charts/posthog/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/posthog/Chart.yaml b/charts/posthog/Chart.yaml index 113051e6..5089c509 100644 --- a/charts/posthog/Chart.yaml +++ b/charts/posthog/Chart.yaml @@ -11,7 +11,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. -version: 30.18.1 +version: 30.18.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. From f31fc4b6eb6f29d1fbc1b1bac1a9460bf3db8c31 Mon Sep 17 00:00:00 2001 From: timgl Date: Thu, 8 May 2025 10:31:27 -0700 Subject: [PATCH 4/4] Update web-deployment.yaml --- charts/posthog/templates/web-deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/posthog/templates/web-deployment.yaml b/charts/posthog/templates/web-deployment.yaml index 33541722..57c3b290 100644 --- a/charts/posthog/templates/web-deployment.yaml +++ b/charts/posthog/templates/web-deployment.yaml @@ -150,7 +150,7 @@ spec: livenessProbe: httpGet: - path: /_livez + path: /_livez?role=web port: {{ .Values.service.internalPort }} scheme: HTTP failureThreshold: {{ .Values.web.livenessProbe.failureThreshold }} @@ -175,7 +175,7 @@ spec: # For startup, we want to make sure that everything is in place, # including postgres. This does however mean we would not be able to # deploy new releases when we have a postgres outage - path: /_readyz + path: /_readyz?role=web port: {{ .Values.service.internalPort }} scheme: HTTP failureThreshold: {{ .Values.web.startupProbe.failureThreshold }}