🌇 Sunsetting Kubernetes Deployments
This page covers our PostHog Kubernetes deployment, which we are currently in the process of sunsetting. Existing customers will receive support until May 31, 2023 and we will continue to provide security updates for the next year.
For existing customers
We highly recommend migrating to PostHog Cloud (US or EU). Take a look at this guide for more information on the migration process.Looking to continue self-hosting?
We still maintain our Open-source Docker Compose deployment. Instructions for deploying can be found here.
Requirements
You need to run a Kubernetes cluster with the Volume Expansion feature enabled. This feature is supported on the majority of volume types since Kubernetes version >= 1.11 (see docs).
Details
PersistentVolumes
can be configured to be expandable. This feature when set to true
, allows the users to resize the volume by editing the corresponding PersistentVolumeClaims
object.
This can become useful in case your storage usage grows and you want to resize the disk on-the-fly without having to resync data across PVCs.
To verify if your storage class allows volume expansion you can run:
kubectl get storageclass -o json | jq '.items[].allowVolumeExpansion'true
In case it returns false
, you can enable volume expansion capabilities for your storage class by running:
DEFAULT_STORAGE_CLASS=$(kubectl get storageclass -o=jsonpath='{.items[?(@.metadata.annotations.storageclass\.kubernetes\.io/is-default-class=="true")].metadata.name}')kubectl patch storageclass "$DEFAULT_STORAGE_CLASS" -p '{"allowVolumeExpansion": true}'storageclass.storage.k8s.io/gp2 patched
N.B:
- expanding a persistent volume is a time consuming operation
- some platforms have a per-volume quota of one modification every 6 hours
- not all the volume types support this feature. Please take a look at the official docs for more info
How-to
Connect to the Postgresql container to verify the data directory filesystem size (in this example 10GB)
Terminalkubectl -n posthog exec -it posthog-posthog-postgresql-0 -- /bin/bashI have no name!@posthog-posthog-postgresql-0:/$ df -h /bitnami/postgresqlFilesystem Size Used Avail Use% Mounted on/dev/disk/by-id/scsi-0DO_Volume_pvc-966716a8-cac6-407a-afb4-8cab52b0ad9b 9.8G 145M 9.2G 2% /bitnami/postgresqlResize the underlying PVC (in this example we are resizing it to 20G)
Terminalkubectl -n posthog patch pvc data-posthog-posthog-postgresql-0 -p '{ "spec": { "resources": { "requests": { "storage": "20Gi" }}}}'persistentvolumeclaim/data-posthog-posthog-postgresql-0 patchedNote: while resizing the PVC you might get an error
disk resize is only supported on Unattached disk, current disk state: Attached
(see below for more details).In this specific case you need to temporary scale down the
StatefulSet
replica value to zero. This will briefly disrupt the Postgresql service availability and make the PostHog UI inaccessible. On newer versions of PostHog events will be queued and ingestion won't be impactedYou can do that by running:
kubectl -n posthog patch statefulset posthog-posthog-postgresql -p '{ "spec": { "replicas": 0 }}'
After you successfully resized the PVC, you can restore the initial replica definition with:
kubectl -n posthog patch statefulset posthog-posthog-postgresql -p '{ "spec": { "replicas": 1 }}'
Delete the
StatefulSet
definition but leave itspod
s online (this is to avoid an impact to using PostHog):kubectl -n posthog delete sts --cascade=orphan posthog-posthog-postgresql
In your Helm chart configuration, update the
postgresql.persistence
value invalue.yaml
to the target size (20G in this example)Run a
helm
upgrade to recycle all the pods and re-deploy theStatefulSet
definitionConnect to the Postgresql container to verify the new filesystem size
Terminalkubectl -n posthog exec -it posthog-posthog-postgresql-0 -- /bin/bashI have no name!@posthog-posthog-postgresql-0:/$ df -h /bitnami/postgresqlFilesystem Size Used Avail Use% Mounted on/dev/disk/by-id/scsi-0DO_Volume_pvc-966716a8-cac6-407a-afb4-8cab52b0ad9b 20G 153M 19G 1% /bitnami/postgresql