From 7dd16e7e965b7554c1de57e248cb547569f8ee34 Mon Sep 17 00:00:00 2001 From: Jon Brohauge Date: Wed, 16 Oct 2019 19:51:45 +0200 Subject: [PATCH] Add a bit of extra words to make complete sentences --- .../en/docs/Getting Started/v0.1.1/deploy-jenkins.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/website/content/en/docs/Getting Started/v0.1.1/deploy-jenkins.md b/website/content/en/docs/Getting Started/v0.1.1/deploy-jenkins.md index fa214c91..ae23a603 100644 --- a/website/content/en/docs/Getting Started/v0.1.1/deploy-jenkins.md +++ b/website/content/en/docs/Getting Started/v0.1.1/deploy-jenkins.md @@ -58,31 +58,31 @@ spec: repositoryUrl: https://github.com/jenkinsci/kubernetes-operator.git ``` -Deploy Jenkins to K8s: +Deploy a Jenkins to K8s: ```bash kubectl create -f jenkins_instance.yaml ``` -Watch Jenkins instance being created: +Watch the Jenkins instance being created: ```bash kubectl get pods -w ``` -Get Jenkins credentials: +Get the Jenkins credentials: ```bash kubectl get secret jenkins-operator-credentials- -o 'jsonpath={.data.user}' | base64 -d kubectl get secret jenkins-operator-credentials- -o 'jsonpath={.data.password}' | base64 -d ``` -Connect to Jenkins (minikube): +Connect to the Jenkins Operator (minikube): ```bash minikube service jenkins-operator-http- --url ``` -Connect to Jenkins (actual Kubernetes cluster): +Connect to the Jenkins intance (actual Kubernetes cluster): ```bash kubectl port-forward jenkins- 8080:8080