Fix markdown formatting

This commit is contained in:
David Xia 2017-03-13 14:06:00 -04:00
parent 1afe104832
commit b30b72464e
No known key found for this signature in database
GPG Key ID: 5F38B0A1B60734DF
1 changed files with 4 additions and 5 deletions

View File

@ -167,17 +167,16 @@ kubectl expose deployment nginx --port=80
Run the following command to obtain the cluster local IP of this service we just created:
```shell{% raw %}
```shell
ip=$(kubectl get svc nginx --template={{.spec.clusterIP}})
echo $ip
{% endraw %}```
```
Hit the webserver with this IP:
```shell{% raw %}
```shell
curl $ip
{% endraw %}```
```
On OS X, since docker is running inside a VM, run the following command instead: