From 83ae6b5a3ddfae648cf750ab71941af637ff020c Mon Sep 17 00:00:00 2001 From: Jakub Al-Khalili Date: Wed, 1 Apr 2020 12:48:57 +0200 Subject: [PATCH] Add docs about helm chart --- website/content/en/docs/Installation/_index.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/website/content/en/docs/Installation/_index.md b/website/content/en/docs/Installation/_index.md index 23350172..7d470982 100644 --- a/website/content/en/docs/Installation/_index.md +++ b/website/content/en/docs/Installation/_index.md @@ -30,6 +30,10 @@ kubectl apply -f https://raw.githubusercontent.com/jenkinsci/kubernetes-operator ## Deploy Jenkins Operator +There are two ways to deploy the Jenkins Operator. + +### Using YAML's + Apply Service Account and RBAC roles: ```bash @@ -43,3 +47,14 @@ kubectl get pods -w ``` Now **Jenkins Operator** should be up and running in the `default` namespace. + +### Using Helm Chart + +There is a option to use Helm to install the operator. It requires the Helm 3+ for deployment. + +To install, you need only to type these commands: + +```bash +$ helm repo add jenkins https://raw.githubusercontent.com/jenkinsci/kubernetes-operator/master/chart +$ helm install jenkins/jenkins-operator +``` \ No newline at end of file