🚧 Deploy with GitHub Actions
GitHub Actions support is available through standard Terraform and shell workflows.
Current recommended CI/CD approach:
- Run Terraform plan and apply in your workflow.
- Bootstrap the cluster with generated helper scripts.
- Deploy services with staged scripts (
plane-deploy-rollout.sh) or per-service scripts.
Typical sequence:
cd terraform
terraform init
terraform plan
terraform apply -auto-approve
./generated/clouder-Kubeadm-setup.sh
./generated/plane-deploy-rollout.sh
For reference, see Deploy with Terraform.