spark cluster namespace to the tl;dr section

This commit is contained in:
jay vyas 2019-08-21 05:52:00 -07:00 committed by GitHub
parent c8733803d9
commit 9186d4a16f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -311,14 +311,15 @@ information.
## tl;dr
```console
kubectl create -f examples/staging/spark
kubectl create ns spark-cluster
kubectl create -f examples/staging/spark -n spark-cluster
```
After it's setup:
```console
kubectl get pods # Make sure everything is running
kubectl get svc -o wide # Get the Loadbalancer endpoints for spark-ui-proxy and zeppelin
kubectl get pods -n spark-cluster # Make sure everything is running
kubectl get svc -o wide -n spark-cluster # Get the Loadbalancer endpoints for spark-ui-proxy and zeppelin
```
At which point the Master UI and Zeppelin will be available at the URLs under the `EXTERNAL-IP` field.