Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/posthog/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/posthog/templates/web-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ spec:

livenessProbe:
httpGet:
path: /_livez
path: /_livez?role=web
port: {{ .Values.service.internalPort }}
scheme: HTTP
failureThreshold: {{ .Values.web.livenessProbe.failureThreshold }}
Expand All @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion charts/posthog/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down