Helm distribution
Deploy Kikplate with the same minimal surface as the app itself.
Official Helm packaging for Kikplate. Pull the chart from GHCR, install it into a namespace, and configure secrets through values overrides when you need them.
Quick Install
helm install kikplate oci://ghcr.io/kikplate/helm-charts/kikplate \ --namespace kikplate \ --create-namespace
1. Inspect available versions
Query the OCI chart directly when you need a specific release.
helm show chart oci://ghcr.io/kikplate/helm-charts/kikplate --version 0.1.1
2. Install with overrides
Pass runtime secrets and install in one command.
helm install kikplate oci://ghcr.io/kikplate/helm-charts/kikplate \
--namespace kikplate \
--create-namespace \
--set secrets.jwtSecret=$(openssl rand -base64 32) \
--set secrets.sso.githubClientSecret=YOUR_GITHUB_SECRET
3. Verify the deployment
Check the workload and forward the web service locally.
kubectl get pods -n kikplate
kubectl port-forward -n kikplate svc/web 3000:3000