🌇 Sunset Kubernetes deployments
This page covers our PostHog Kubernetes deployment, which we sunset and no longer support. We will continue to provide security updates for Kubernetes deployments until at least May 31, 2024.
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.
Troubleshooting
Connection is not secure
First, check that DNS is set up properly:
Note that when using a browser there are various layers of caching and other logic that could make the resolution work (temporarily) even if its not correctly set up.
FAQ
Are the errors I'm seeing important?
Here are some examples of log spam that currently exists in our app and is safe to ignore:
The following messages in the ClickHouse pod happen when ClickHouse reshuffles how it consumes from the topics. So, anytime ClickHouse or Kafka restarts we'll get a bit of noise and the following log entries are safe to ignore:
The following error is produced by some low-priority celery tasks and we haven't seen any actual impact so can safely be ignored. It shows up in Sentry as well.
How do I connect to the web server's shell?
PostHog is built on Django, which comes with some useful utilities. One of them is a Python shell. You can connect to it like so:
In a moment you should see the shell load and finally a message like this appear:
That means you can now type Python code and run it with PostHog context (such as models) already loaded! For example, to see the number of users in your instance run:
How do I connect to ClickHouse?
Tip: Find out your pod names with
kubectl get pods -n posthog
- Find out your ClickHouse user and password from the web pod: Terminalkubectl exec -n posthog -it <your-posthog-web-pod> \-- sh -c 'echo user:$CLICKHOUSE_USER password:$CLICKHOUSE_PASSWORD'
- Connect to the - chi-posthog-posthog-0-0-0pod:Terminalkubectl exec -n posthog -it chi-posthog-posthog-0-0-0 -- /bin/bash
- Connect to ClickHouse using - clickhouse-client:- Note: You're connecting to your production database, proceed with caution! Terminalclickhouse-client -d posthog --user <user_from_step_1> --password <password_from_step_1>
How do I restart all pods for a service?
Important: Not all services can be safely restarted this way. It is safe to do this for the app/plugin server. If you have any doubts, ask someone from the PostHog team.
- Terminate all running pods for the service: Terminal# substitute posthog-plugins for the desired servicekubectl scale deployment posthog-plugins --replicas=0 -n posthog
- Start new pods for the service: Terminal# substitute posthog-plugins for the desired servicekubectl scale deployment posthog-plugins --replicas=1 -n posthog