Skip to content

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 update

Install the application:

bash
helm upgrade --install r2devops r2devops/r2devops -f values.yaml --namespace r2devops --create-namespace

Uninstall and clean the cluster:

bash
helm uninstall r2devops -n r2devops
kubectl delete ns r2devops