ChiefOnboarding
Deploy ChiefOnboarding on Kubernetes using the official chiefonboarding/chiefonboarding container image. ChiefOnboarding is an employee onboarding automation platform with task sequences, integrations, and a clean web interface.
Key Features
- PostgreSQL Backend — bundled PostgreSQL subchart or external database support
- Task Sequences — define onboarding workflows with ordered tasks and triggers
- Auto-Generated Secret — Django secret key generated automatically if not provided
- Integrations — connect with Slack, Google Workspace, and other services
- Web Interface — admin dashboard for managing onboarding processes
Installation
HTTPS repository:
helm repo add helmforge https://repo.helmforge.dev
helm repo update
helm install chiefonboarding helmforge/chiefonboarding
OCI registry:
helm install chiefonboarding oci://ghcr.io/helmforgedev/helm/chiefonboarding
Basic Example
# values.yaml
chiefonboarding:
baseUrl: 'https://onboarding.example.com'
postgresql:
enabled: true
ingress:
enabled: true
ingressClassName: traefik
hosts:
- host: onboarding.example.com
paths:
- path: /
pathType: Prefix
Key Values
| Key | Default | Description |
|---|---|---|
chiefonboarding.baseUrl | "" | Public base URL of the instance |
chiefonboarding.secretKey | "" | Django secret key (auto-generated if empty) |
chiefonboarding.port | 8000 | Application port |
postgresql.enabled | true | Enable bundled PostgreSQL subchart |
service.port | 80 | HTTP service port |
ingress.enabled | false | Enable ingress |