Authenticating to ClickHouse
SkillDatabases & dataGuides your agent to set up ClickHouse authentication for a service using rotating tokens instead of static passwords.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Authenticating to ClickHouse skill
About this capability
Authenticate a new or changed service to ClickHouse with the rotating ch-podauth ServiceAccount token instead of a static password. Use when adding a service, sidecar, or container that reads or writes ClickHouse, adding a new ClickHouseUser, or hand-building a ClickHouse pool or client for a custom
What this skill tells your AI
The instructions your AI receives, as published by posthog/posthog in .agents/skills/authenticating-to-clickhouse/SKILL.md and read by ahel’s review.
A service authenticates to ClickHouse with a short-lived ServiceAccount token, validated by the ch-podauth bridge, not a static password. The token rotates, so the client reads it on each use. Read posthog/clickhouse/client/AGENTS.md for the full recipe and the traps. This skill is the entry point.
Use it when adding a new service or ClickHouse user, or when building or changing a ClickHouse pool or client by hand. Converting an already-deployed user off a static password is a ClickHouse-team operation and is out of scope.
Do
- Use the token-aware default paths:
sync_execute(..., ch_user=...)for pooled queries, or the asyncget_clientinposthog/temporal/common/clickhouse.pyfor HTTP. Both read the token on each use. - Choose the user shape: deployment-default (the pod's default user is the service) or a new
ClickHouseUserenum member. Wire the username env, or the user silently authenticates as the default user. - Wire the deploy side in the charts repo. The
connect-app-to-clickhouseskill mounts the token and setsCLICKHOUSE_<USER>_PASSWORD_FILE.
Do not
- Pass your own
sync_clienttosync_execute, or build a pool or client by hand, without keeping it token-aware. A native pool must carrycredential_provider; an HTTP or one-shot client resolves the token per call instead. A pool that skips this silently stays on the static password.posthog/clickhouse/client/AGENTS.mdhas both shapes. - Read the credential once at startup, in any language. The token rotates, so read the token file on each connection or request.
Signals
- GitHub stars
- 40k
- Forks
- 3k
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
authenticating-to-clickhouse- Source
- github.com/posthog/posthog