Merge branch 'master' into master

This commit is contained in:
mlambert890b
2017-03-21 11:56:35 -07:00
committed by GitHub
+3 -4
View File
@@ -173,10 +173,9 @@ The key is used for mutual authentication between the master and the joining nod
By default, your cluster will not schedule pods on the master for security reasons. By default, your cluster will not schedule pods on the master for security reasons.
If you want to be able to schedule pods on the master, for example if you want a single-machine Kubernetes cluster for development, run: If you want to be able to schedule pods on the master, for example if you want a single-machine Kubernetes cluster for development, run:
# kubectl taint nodes --all dedicated- # MASTER_NODE="actual_master_node_name"
node "test-01" tainted # TAINT_KEY=$(kubectl get no ${MASTER_NODE} --template="{{(index .spec.taints 0).key}}")
taint key="dedicated" and effect="" not found. # kubectl taint nodes ${MASTER_NODE} ${TAINT_KEY}-
taint key="dedicated" and effect="" not found.
This will remove the "dedicated" taint from any nodes that have it, including the master node, meaning that the scheduler will then be able to schedule pods everywhere. This will remove the "dedicated" taint from any nodes that have it, including the master node, meaning that the scheduler will then be able to schedule pods everywhere.