s/rc/deployment in expose command in Quick Start

According to
http://kubernetes.io/docs/user-guide/docker-cli-to-kubectl/, since
version 1.2, `run` creates a deployment rather than a replication
controller
This commit is contained in:
Gabe Kopley
2016-08-04 13:32:50 -07:00
parent 7a986c3393
commit 0626f32271
+1 -1
View File
@@ -25,7 +25,7 @@ deployment "my-nginx" created
To expose your service to the public internet, run:
```shell
$ kubectl expose rc my-nginx --target-port=80 --type=LoadBalancer
$ kubectl expose deployment my-nginx --target-port=80 --type=LoadBalancer
service "my-nginx" exposed
```