Add a bit of extra words to make complete sentences

This commit is contained in:
Jon Brohauge 2019-10-16 19:51:45 +02:00
parent 9772e967bb
commit 7dd16e7e96
No known key found for this signature in database
GPG Key ID: 2402404D1764DBE8
1 changed files with 5 additions and 5 deletions

View File

@ -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-<cr_name> -o 'jsonpath={.data.user}' | base64 -d
kubectl get secret jenkins-operator-credentials-<cr_name> -o 'jsonpath={.data.password}' | base64 -d
```
Connect to Jenkins (minikube):
Connect to the Jenkins Operator (minikube):
```bash
minikube service jenkins-operator-http-<cr_name> --url
```
Connect to Jenkins (actual Kubernetes cluster):
Connect to the Jenkins intance (actual Kubernetes cluster):
```bash
kubectl port-forward jenkins-<cr_name> 8080:8080