Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

Commit

Permalink
Break long line commands on deploy-kind.md
Browse files Browse the repository at this point in the history
  • Loading branch information
viccuad committed May 8, 2020
1 parent 94166e8 commit 5c9efaa
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions content/en/docs/Tutorials/deploy-kind.md
Expand Up @@ -122,7 +122,9 @@ features:
and, you need to trust the kubernetes root CA on the kind docker container:

```
> docker exec -it "kubecf-control-plane" bash -c 'cp /etc/kubernetes/pki/ca.crt /etc/ssl/certs/ && update-ca-certificates && (systemctl list-units | grep containerd > /dev/null && systemctl restart containerd)'
> docker exec -it "kubecf-control-plane" bash -c 'cp /etc/kubernetes/pki/ca.crt /etc/ssl/certs/ && \
update-ca-certificates && \
(systemctl list-units | grep containerd > /dev/null && systemctl restart containerd)'
```

the **values.yaml** file should be similiar to the snippet:
Expand All @@ -146,7 +148,7 @@ Now is time to install KubeCF by running the helm command:
> helm install kubecf \
--namespace kubecf \
--values values.yaml \
https://github.com/cloudfoundry-incubator/kubecf/releases/download/v0.2.0/kubecf-0.2.0.tgz
https://github.com/cloudfoundry-incubator/kubecf/releases/download/v0.2.0/kubecf-0.2.0.tgz
```

Notes:
Expand All @@ -171,7 +173,9 @@ After all the pods are running you can check by running the *cf* cli command:
get the admin password:

```
> admin_pass=$(kubectl get secret --namespace kubecf kubecf.var-cf-admin-password -o jsonpath='{.data.password}' | base64 --decode)
> admin_pass=$(kubectl get secret --namespace kubecf \
kubecf.var-cf-admin-password \
-o jsonpath='{.data.password}' | base64 --decode)
```

and login with: `cf auth admin "${admin_pass}"`
Expand Down

0 comments on commit 5c9efaa

Please sign in to comment.