mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-06-09 08:55:55 -04:00
Changing notes section to kubectl over kubecfg
This commit is contained in:
parent
3302ef48f6
commit
6cb53acad7
1 changed files with 5 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue