diff --git a/charts/posthog/Chart.yaml b/charts/posthog/Chart.yaml index 2509b1a3..5089c509 100644 --- a/charts/posthog/Chart.yaml +++ b/charts/posthog/Chart.yaml @@ -11,11 +11,11 @@ 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. -appVersion: 1.43.0 +appVersion: 1.43.1 dependencies: - name: cert-manager 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 }} 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.