Changing notes section to kubectl over kubecfg

This commit is contained in:
Jeffrey Bean 2015-03-25 06:09:23 -07:00
parent 3302ef48f6
commit 6cb53acad7

View File

@ -23,6 +23,7 @@ Deploy a CoreOS running Kubernetes environment. This particular guild is made to
| CoreOS Slave 1 | d0:00:67:13:0d:01 | 10.20.30.41 |
| CoreOS Slave 2 | d0:00:67:13:0d:02 | 10.20.30.42 |
## Setup PXELINUX CentOS
To setup CentOS PXELINUX environment there is a complete [guide here](http://docs.fedoraproject.org/en-US/Fedora/7/html/Installation_Guide/ap-pxe-server.html). This section is the abbreviated version.
@ -644,9 +645,10 @@ List fleet machines
List Kubernetes
kubecfg list pods
kubecfg list minions
kubectl get pods
kubectl grt minions
Kill all pods:
for i in `kubectl get pods | awk '{print $1}'`; do kubectl stop pod $i; done
for i in `kubectl get pods | awk '{print $1}'`; do kubectl stop pod $i; done