|
@ -117,11 +117,13 @@ Stack](https://github.com/kubernetes-sigs/kubespray/blob/master/docs/dns-stack.m |
|
|
from the kube-apiserver when the certificate expiration approaches. |
|
|
from the kube-apiserver when the certificate expiration approaches. |
|
|
* *node_labels* - Labels applied to nodes via kubelet --node-labels parameter. |
|
|
* *node_labels* - Labels applied to nodes via kubelet --node-labels parameter. |
|
|
For example, labels can be set in the inventory as variables or more widely in group_vars. |
|
|
For example, labels can be set in the inventory as variables or more widely in group_vars. |
|
|
*node_labels* must be defined as a dict: |
|
|
|
|
|
|
|
|
*node_labels* can be defined either as a dict or a comma-separaded labels string: |
|
|
``` |
|
|
``` |
|
|
node_labels: |
|
|
node_labels: |
|
|
label1_name: label1_value |
|
|
label1_name: label1_value |
|
|
label2_name: label2_value |
|
|
label2_name: label2_value |
|
|
|
|
|
|
|
|
|
|
|
node_labels: "label1_name=label1_value,label2_name=label2_value" |
|
|
``` |
|
|
``` |
|
|
* *node_taints* - Taints applied to nodes via kubelet --register-with-taints parameter. |
|
|
* *node_taints* - Taints applied to nodes via kubelet --register-with-taints parameter. |
|
|
For example, taints can be set in the inventory as variables or more widely in group_vars. |
|
|
For example, taints can be set in the inventory as variables or more widely in group_vars. |
|
|