Fix commands in Connect with Port Forwarding guide

fixes:
* added -f flag to command create
* changed not existent flag -t to --template
This commit is contained in:
Łukasz Oleś
2016-07-08 23:23:04 +02:00
parent 0934c1f71c
commit 3a151822bc
@@ -6,7 +6,7 @@ kubectl port-forward forwards connections to a local port to a port on a pod. It
## Creating a Redis master
```shell
$ kubectl create examples/redis/redis-master.yaml
$ kubectl create -f examples/redis/redis-master.yaml
pods/redis-master
```
@@ -23,7 +23,7 @@ redis-master 2/2 Running 0 41s
The Redis master is listening on port 6379, to verify this,
```shell{% raw %}
$ kubectl get pods redis-master -t='{{(index (index .spec.containers 0).ports 0).containerPort}}{{"\n"}}'
$ kubectl get pods redis-master --template='{{(index (index .spec.containers 0).ports 0).containerPort}}{{"\n"}}'
6379{% endraw %}
```