You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+12-12
Original file line number
Diff line number
Diff line change
@@ -29,9 +29,9 @@ Kubernetes packages to be installed on the server. You can either provide a list
29
29
30
30
The minor version of Kubernetes to install. The plain `kubernetes_version` is used to pin an apt package version on Debian, and as the Kubernetes version passed into the `kubeadm init` command (see `kubernetes_version_kubeadm`). The `kubernetes_version_rhel_package` variable must be a specific Kubernetes release, and is used to pin the version on Red Hat / CentOS servers.
31
31
32
-
kubernetes_role: master
32
+
kubernetes_role: control_plane
33
33
34
-
Whether the particular server will serve as a Kubernetes `master` (default) or `node`. The master will have `kubeadm init` run on it to intialize the entire K8s control plane, while `node`s will have `kubeadm join` run on them to join them to the `master`.
34
+
Whether the particular server will serve as a Kubernetes `control_plane` (default) or `node`. The control plane will have `kubeadm init` run on it to intialize the entire K8s control plane, while `node`s will have `kubeadm join` run on them to join them to the `control_plane`.
35
35
36
36
### Variables to configure kubeadm and kubelet with `kubeadm init` through a config file (recommended)
37
37
@@ -86,9 +86,9 @@ Extra args to pass to the generated `kubeadm join` command during K8s node initi
86
86
87
87
### Additional variables
88
88
89
-
kubernetes_allow_pods_on_master: true
89
+
kubernetes_allow_pods_on_control_plane: true
90
90
91
-
Whether to remove the taint that denies pods from being deployed to the Kubernetes master. If you have a single-node cluster, this should definitely be `True`. Otherwise, set to `False` if you want a dedicated Kubernetes master which doesn't run any other pods.
91
+
Whether to remove the taint that denies pods from being deployed to the Kubernetes control plane. If you have a single-node cluster, this should definitely be `True`. Otherwise, set to `False` if you want a dedicated Kubernetes control plane which doesn't run any other pods.
92
92
93
93
kubernetes_pod_network:
94
94
# Flannel CNI.
@@ -109,7 +109,7 @@ This role currently supports `flannel` (default), `calico` or `weave` for cluste
Options passed to `kubeadm init` when initializing the Kubernetes master. The `kubernetes_apiserver_advertise_address` defaults to `ansible_default_ipv4.address` if it's left empty.
112
+
Options passed to `kubeadm init` when initializing the Kubernetes control plane. The `kubernetes_apiserver_advertise_address` defaults to `ansible_default_ipv4.address` if it's left empty.
0 commit comments