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

Commit

Permalink
fix missing server in docs & examples
Browse files Browse the repository at this point in the history
  • Loading branch information
metral committed Mar 29, 2016
1 parent 0f4c6b9 commit a9255aa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ Follow this set of steps to get you started:
state:
```
$ /opt/bin/kubectl get pods
$ /opt/bin/kubectl --server=0.0.0.0:8080 get pods
```
* Once all the containers are running, hit the IP on the 10.244.xxx.yyy subnet
Expand Down
14 changes: 7 additions & 7 deletions guestbook-example.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ git clone https://github.com/GoogleCloudPlatform/kubernetes
pushd kubernetes
git checkout -b v$VERSION tags/v$VERSION

/opt/bin/kubectl create -f examples/guestbook/redis-master-controller.yaml
/opt/bin/kubectl create -f examples/guestbook/redis-master-service.yaml
/opt/bin/kubectl create -f examples/guestbook/redis-slave-controller.yaml
/opt/bin/kubectl create -f examples/guestbook/redis-slave-service.yaml
/opt/bin/kubectl create -f examples/guestbook/frontend-controller.yaml
/opt/bin/kubectl create -f examples/guestbook/frontend-service.yaml
/opt/bin/kubectl get pods
/opt/bin/kubectl --server=0.0.0.0:8080 create -f examples/guestbook/redis-master-controller.yaml
/opt/bin/kubectl --server=0.0.0.0:8080 create -f examples/guestbook/redis-master-service.yaml
/opt/bin/kubectl --server=0.0.0.0:8080 create -f examples/guestbook/redis-slave-controller.yaml
/opt/bin/kubectl --server=0.0.0.0:8080 create -f examples/guestbook/redis-slave-service.yaml
/opt/bin/kubectl --server=0.0.0.0:8080 create -f examples/guestbook/frontend-controller.yaml
/opt/bin/kubectl --server=0.0.0.0:8080 create -f examples/guestbook/frontend-service.yaml
/opt/bin/kubectl --server=0.0.0.0:8080 get pods

0 comments on commit a9255aa

Please sign in to comment.