R2Devops
Let's see how to run R2Devops in a Kubernetes cluster.
We'll use the official Helm chart (code, docs).
Configuration
Create the values.yaml file to override default parameters.
Deployment
Add Helm chart repository:
bash
helm repo add r2devops https://charts.r2devops.io
helm repo updateInstall the application:
bash
helm upgrade --install r2devops r2devops/r2devops -f values.yaml --namespace r2devops --create-namespaceUninstall and clean the cluster:
bash
helm uninstall r2devops -n r2devops
kubectl delete ns r2devops