Merge pull request #10843 from jiangyaoguo/change-get-minions-in-docs

change "get minions" to "get nodes"  in docs
This commit is contained in:
Tim Hockin
2015-07-13 13:27:56 -07:00
11 changed files with 40 additions and 40 deletions

View File

@@ -56,7 +56,7 @@ Now, all you need to do is:
./create-kubernetes-cluster.js
```
This script will provision a cluster suitable for production use, where there is a ring of 3 dedicated etcd nodes, Kubernetes master and 2 nodes. The `kube-00` VM will be the master, your work loads are only to be deployed on the minion nodes, `kube-01` and `kube-02`. Initially, all VMs are single-core, to ensure a user of the free tier can reproduce it without paying extra. I will show how to add more bigger VMs later.
This script will provision a cluster suitable for production use, where there is a ring of 3 dedicated etcd nodes, 1 kubernetes master and 2 kubernetes nodes. The `kube-00` VM will be the master, your work loads are only to be deployed on the nodes, `kube-01` and `kube-02`. Initially, all VMs are single-core, to ensure a user of the free tier can reproduce it without paying extra. I will show how to add more bigger VMs later.
![VMs in Azure](initial_cluster.png)

View File

@@ -648,14 +648,14 @@ List fleet machines
fleetctl list-machines
Check system status of services on master node:
Check system status of services on master:
systemctl status kube-apiserver
systemctl status kube-controller-manager
systemctl status kube-scheduler
systemctl status kube-register
Check system status of services on a minion node:
Check system status of services on a node:
systemctl status kube-kubelet
systemctl status docker.service