This guide shows how to deploy the coder-k8s controller to a Kubernetes cluster using the manifests in deploy/.
The deployment manifests expect a coder-system namespace:
kubectl create namespace coder-systemInstall the CoderControlPlane CRD:
kubectl apply -f config/crd/bases/kubectl apply -f deploy/rbac.yamlkubectl apply -f deploy/deployment.yamldeploy/deployment.yaml defaults to --app=all, which runs the controller, aggregated API server, and MCP server in a single pod.
For split deployments, you can still run individual components by setting --app=controller, --app=aggregated-apiserver, or --app=mcp-http in the Deployment args.
kubectl rollout status deployment/coder-k8s -n coder-system
kubectl get pods -n coder-systemBy default, deploy/deployment.yaml uses ghcr.io/coder/coder-k8s:latest. For a different image tag, edit the deployment manifest before applying it.