You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

342 lines
20 KiB

6 years ago
  1. # Configurable Parameters in Kubespray
  2. ## Generic Ansible variables
  3. You can view facts gathered by Ansible automatically
  4. [here](https://docs.ansible.com/ansible/latest/user_guide/playbooks_vars_facts.html#ansible-facts).
  5. Some variables of note include:
  6. * *ansible_user*: user to connect to via SSH
  7. * *ansible_default_ipv4.address*: IP address Ansible automatically chooses.
  8. Generated based on the output from the command ``ip -4 route get 8.8.8.8``
  9. ## Common vars that are used in Kubespray
  10. * *calico_version* - Specify version of Calico to use
  11. * *calico_cni_version* - Specify version of Calico CNI plugin to use
  12. * *docker_version* - Specify version of Docker to use (should be quoted
  13. string). Must match one of the keys defined for *docker_versioned_pkg*
  14. in `roles/container-engine/docker/vars/*.yml`.
  15. * *containerd_version* - Specify version of containerd to use when setting `container_manager` to `containerd`
  16. * *docker_containerd_version* - Specify which version of containerd to use when setting `container_manager` to `docker`
  17. * *etcd_version* - Specify version of ETCD to use
  18. * *calico_ipip_mode* - Configures Calico ipip encapsulation - valid values are 'Never', 'Always' and 'CrossSubnet' (default 'Never')
  19. * *calico_vxlan_mode* - Configures Calico vxlan encapsulation - valid values are 'Never', 'Always' and 'CrossSubnet' (default 'Always')
  20. * *calico_network_backend* - Configures Calico network backend - valid values are 'none', 'bird' and 'vxlan' (default 'vxlan')
  21. * *kube_network_plugin* - Sets k8s network plugin (default Calico)
  22. * *kube_proxy_mode* - Changes k8s proxy mode to iptables mode
  23. * *kube_version* - Specify a given Kubernetes version
  24. * *searchdomains* - Array of DNS domains to search when looking up hostnames
  25. * *remove_default_searchdomains* - Boolean that removes the default searchdomain
  26. * *nameservers* - Array of nameservers to use for DNS lookup
  27. * *preinstall_selinux_state* - Set selinux state, permitted values are permissive, enforcing and disabled.
  28. ## Addressing variables
  29. * *ip* - IP to use for binding services (host var). This would **usually** be the public ip.
  30. * *access_ip* - IP for other hosts to use to connect to. Often required when
  31. deploying from a cloud, such as OpenStack or GCE and you have separate
  32. public/floating and private IPs. This would **usually** be the private ip.
  33. * *ansible_default_ipv4.address* - Not Kubespray-specific, but it is used if ip
  34. and access_ip are undefined
  35. * *ip6* - IPv6 address to use for binding services. (host var)
  36. If *enable_dual_stack_networks* is set to ``true`` and *ip6* is defined,
  37. kubelet's ``--node-ip`` and node's ``InternalIP`` will be the combination of *ip* and *ip6*.
  38. * *loadbalancer_apiserver* - If defined, all hosts will connect to this
  39. address instead of localhost for kube_control_planes and kube_control_plane[0] for
  40. kube_nodes. See more details in the
  41. [HA guide](/docs/operations/ha-mode.md).
  42. * *loadbalancer_apiserver_localhost* - makes all hosts to connect to
  43. the apiserver internally load balanced endpoint. Mutual exclusive to the
  44. `loadbalancer_apiserver`. See more details in the
  45. [HA guide](/docs/operations/ha-mode.md).
  46. ## Cluster variables
  47. Kubernetes needs some parameters in order to get deployed. These are the
  48. following default cluster parameters:
  49. * *cluster_name* - Name of cluster (default is cluster.local)
  50. * *container_manager* - Container Runtime to install in the nodes (default is containerd)
  51. * *image_command_tool* - Tool used to pull images (default depends on `container_manager`
  52. and is `nerdctl` for `containerd`, `crictl` for `crio`, `docker` for `docker`)
  53. * *image_command_tool_on_localhost* - Tool used to pull images on localhost
  54. (default is equal to `image_command_tool`)
  55. * *dns_domain* - Name of cluster DNS domain (default is cluster.local)
  56. * *kube_network_plugin* - Plugin to use for container networking
  57. * *kube_service_addresses* - Subnet for cluster IPs (default is
  58. 10.233.0.0/18). Must not overlap with kube_pods_subnet
  59. * *kube_pods_subnet* - Subnet for Pod IPs (default is 10.233.64.0/18). Must not
  60. overlap with kube_service_addresses.
  61. * *kube_network_node_prefix* - Subnet allocated per-node for pod IPs. Remaining
  62. bits in kube_pods_subnet dictates how many kube_nodes can be in cluster. Setting this > 25 will
  63. raise an assertion in playbooks if the `kubelet_max_pods` var also isn't adjusted accordingly
  64. (assertion not applicable to calico which doesn't use this as a hard limit, see
  65. [Calico IP block sizes](https://docs.projectcalico.org/reference/resources/ippool#block-sizes)).
  66. * *enable_dual_stack_networks* - Setting this to true will provision both IPv4 and IPv6 networking for pods and services.
  67. * *kube_service_addresses_ipv6* - Subnet for cluster IPv6 IPs (default is ``fd85:ee78:d8a6:8607::1000/116``). Must not overlap with ``kube_pods_subnet_ipv6``.
  68. * *kube_pods_subnet_ipv6* - Subnet for Pod IPv6 IPs (default is ``fd85:ee78:d8a6:8607::1:0000/112``). Must not overlap with ``kube_service_addresses_ipv6``.
  69. * *kube_network_node_prefix_ipv6* - Subnet allocated per-node for pod IPv6 IPs. Remaining bits in ``kube_pods_subnet_ipv6`` dictates how many kube_nodes can be in cluster.
  70. * *skydns_server* - Cluster IP for DNS (default is 10.233.0.3)
  71. * *skydns_server_secondary* - Secondary Cluster IP for CoreDNS used with coredns_dual deployment (default is 10.233.0.4)
  72. * *enable_coredns_k8s_external* - If enabled, it configures the [k8s_external plugin](https://coredns.io/plugins/k8s_external/)
  73. on the CoreDNS service.
  74. * *coredns_k8s_external_zone* - Zone that will be used when CoreDNS k8s_external plugin is enabled
  75. (default is k8s_external.local)
  76. * *enable_coredns_k8s_endpoint_pod_names* - If enabled, it configures endpoint_pod_names option for kubernetes plugin.
  77. on the CoreDNS service.
  78. * *cloud_provider* - Enable extra Kubelet option if operating inside GCE or
  79. OpenStack (default is unset)
  80. * *kube_feature_gates* - A list of key=value pairs that describe feature gates for
  81. alpha/experimental Kubernetes features. (defaults is `[]`).
  82. Additionally, you can use also the following variables to individually customize your kubernetes components installation (they works exactly like `kube_feature_gates`):
  83. * *kube_apiserver_feature_gates*
  84. * *kube_controller_feature_gates*
  85. * *kube_scheduler_feature_gates*
  86. * *kube_proxy_feature_gates*
  87. * *kubelet_feature_gates*
  88. * *kubeadm_feature_gates* - A list of key=value pairs that describe feature gates for
  89. alpha/experimental Kubeadm features. (defaults is `[]`)
  90. * *authorization_modes* - A list of [authorization mode](
  91. https://kubernetes.io/docs/reference/access-authn-authz/authorization/#using-flags-for-your-authorization-module)
  92. that the cluster should be configured for. Defaults to `['Node', 'RBAC']`
  93. (Node and RBAC authorizers).
  94. Note: `Node` and `RBAC` are enabled by default. Previously deployed clusters can be
  95. converted to RBAC mode. However, your apps which rely on Kubernetes API will
  96. require a service account and cluster role bindings. You can override this
  97. setting by setting authorization_modes to `[]`.
  98. * *kube_apiserver_admission_control_config_file* - Enable configuration for `kube-apiserver` admission plugins.
  99. Currently this variable allow you to configure the `EventRateLimit` admission plugin.
  100. To configure the **EventRateLimit** plugin you have to define a data structure like this:
  101. ```yml
  102. kube_apiserver_admission_event_rate_limits:
  103. limit_1:
  104. type: Namespace
  105. qps: 50
  106. burst: 100
  107. cache_size: 2000
  108. limit_2:
  109. type: User
  110. qps: 50
  111. burst: 100
  112. ...
  113. ```
  114. * *kube_apiserver_service_account_lookup* - Enable validation service account before validating token. Default `true`.
  115. Note, if cloud providers have any use of the ``10.233.0.0/16``, like instances'
  116. private addresses, make sure to pick another values for ``kube_service_addresses``
  117. and ``kube_pods_subnet``, for example from the ``172.18.0.0/16``.
  118. ## Enabling Dual Stack (IPV4 + IPV6) networking
  119. If *enable_dual_stack_networks* is set to ``true``, Dual Stack networking will be enabled in the cluster. This will use the default IPv4 and IPv6 subnets specified in the defaults file in the ``kubespray-defaults`` role, unless overridden of course. The default config will give you room for up to 256 nodes with 126 pods per node, and up to 4096 services.
  120. ## DNS variables
  121. By default, hosts are set up with 8.8.8.8 as an upstream DNS server and all
  122. other settings from your existing /etc/resolv.conf are lost. Set the following
  123. variables to match your requirements.
  124. * *upstream_dns_servers* - Array of upstream DNS servers configured on host in
  125. addition to Kubespray deployed DNS
  126. * *nameservers* - Array of DNS servers configured for use by hosts
  127. * *searchdomains* - Array of up to 4 search domains
  128. * *remove_default_searchdomains* - Boolean. If enabled, `searchdomains` variable can hold 6 search domains.
  129. * *dns_etchosts* - Content of hosts file for coredns and nodelocaldns
  130. * *dns_upstream_forward_extra_opts* - Options to add in the forward section of coredns/nodelocaldns related to upstream DNS servers
  131. For more information, see [DNS
  132. Stack](https://github.com/kubernetes-sigs/kubespray/blob/master/docs/dns-stack.md).
  133. ## Other service variables
  134. * *docker_options* - Commonly used to set
  135. ``--insecure-registry=myregistry.mydomain:5000``
  136. * *docker_plugins* - This list can be used to define [Docker plugins](https://docs.docker.com/engine/extend/) to install.
  137. * *containerd_default_runtime* - If defined, changes the default Containerd runtime used by the Kubernetes CRI plugin.
  138. * *containerd_additional_runtimes* - Sets the additional Containerd runtimes used by the Kubernetes CRI plugin.
  139. [Default config](https://github.com/kubernetes-sigs/kubespray/blob/master/roles/container-engine/containerd/defaults/main.yml) can be overridden in inventory vars.
  140. * *crio_criu_support_enabled* - When set to `true`, enables the container checkpoint/restore in CRI-O. It's required to install [CRIU](https://criu.org/Installation) on the host when dumping/restoring checkpoints. And it's recommended to enable the feature gate `ContainerCheckpoint` so that the kubelet get a higher level API to simplify the operations (**Note**: It's still in experimental stage, just for container analytics so far). You can follow the [documentation](https://kubernetes.io/blog/2022/12/05/forensic-container-checkpointing-alpha/).
  141. * *http_proxy/https_proxy/no_proxy/no_proxy_exclude_workers/additional_no_proxy* - Proxy variables for deploying behind a
  142. proxy. Note that no_proxy defaults to all internal cluster IPs and hostnames
  143. that correspond to each node.
  144. * *kubelet_cgroup_driver* - Allows manual override of the cgroup-driver option for Kubelet.
  145. By default autodetection is used to match container manager configuration.
  146. `systemd` is the preferred driver for `containerd` though it can have issues with `cgroups v1` and `kata-containers` in which case you may want to change to `cgroupfs`.
  147. * *kubelet_rotate_certificates* - Auto rotate the kubelet client certificates by requesting new certificates
  148. from the kube-apiserver when the certificate expiration approaches.
  149. * *kubelet_rotate_server_certificates* - Auto rotate the kubelet server certificates by requesting new certificates
  150. from the kube-apiserver when the certificate expiration approaches.
  151. Note that enabling this also activates *kubelet_csr_approver* which approves automatically the CSRs.
  152. To customize its behavior, you can override the Helm values via *kubelet_csr_approver_values*.
  153. See [kubelet-csr-approver](https://github.com/postfinance/kubelet-csr-approver) for more information.
  154. * *kubelet_streaming_connection_idle_timeout* - Set the maximum time a streaming connection can be idle before the connection is automatically closed.
  155. * *kubelet_image_gc_high_threshold* - Set the percent of disk usage after which image garbage collection is always run.
  156. The percent is calculated by dividing this field value by 100, so this field must be between 0 and 100, inclusive.
  157. When specified, the value must be greater than imageGCLowThresholdPercent. Default: 85
  158. * *kubelet_image_gc_low_threshold* - Set the percent of disk usage before which image garbage collection is never run.
  159. Lowest disk usage to garbage collect to.
  160. The percent is calculated by dividing this field value by 100, so the field value must be between 0 and 100, inclusive.
  161. When specified, the value must be less than imageGCHighThresholdPercent. Default: 80
  162. * *kubelet_max_parallel_image_pulls* - Sets the maximum number of image pulls in parallel. The value is `1` by default which means the default is serial image pulling, set it to a integer great than `1` to enable image pulling in parallel.
  163. * *kubelet_make_iptables_util_chains* - If `true`, causes the kubelet ensures a set of `iptables` rules are present on host.
  164. * *kubelet_cpu_manager_policy* - If set to `static`, allows pods with certain resource characteristics to be granted increased CPU affinity and exclusivity on the node. And it should be set with `kube_reserved` or `system-reserved`, enable this with the following guide:[Control CPU Management Policies on the Node](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/)
  165. * *kubelet_cpu_manager_policy_options* - A dictionary of cpuManagerPolicyOptions to enable. Keep in mind to enable the corresponding feature gates and make sure to pass the booleans as string (i.e. don't forget the quotes)!
  166. ```yml
  167. kubelet_cpu_manager_policy_options:
  168. distribute-cpus-across-numa: "true"
  169. full-pcpus-only: "true"
  170. ```
  171. * *kubelet_topology_manager_policy* - Control the behavior of the allocation of CPU and Memory from different [NUMA](https://en.wikipedia.org/wiki/Non-uniform_memory_access) Nodes. Enable this with the following guide: [Control Topology Management Policies on a node](https://kubernetes.io/docs/tasks/administer-cluster/topology-manager).
  172. * *kubelet_topology_manager_scope* - The Topology Manager can deal with the alignment of resources in a couple of distinct scopes: `container` and `pod`. See [Topology Manager Scopes](https://kubernetes.io/docs/tasks/administer-cluster/topology-manager/#topology-manager-scopes).
  173. * *kubelet_systemd_hardening* - If `true`, provides kubelet systemd service with security features for isolation.
  174. **N.B.** To enable this feature, ensure you are using the **`cgroup v2`** on your system. Check it out with command: `sudo ls -l /sys/fs/cgroup/*.slice`. If directory does not exist, enable this with the following guide: [enable cgroup v2](https://rootlesscontaine.rs/getting-started/common/cgroup2/#enabling-cgroup-v2).
  175. * *kubelet_secure_addresses* - By default *kubelet_systemd_hardening* set the **control plane** `ansible_host` IPs as the `kubelet_secure_addresses`. In case you have multiple interfaces in your control plane nodes and the `kube-apiserver` is not bound to the default interface, you can override them with this variable.
  176. Example:
  177. The **control plane** node may have 2 interfaces with the following IP addresses: `eth0:10.0.0.110`, `eth1:192.168.1.110`.
  178. By default the `kubelet_secure_addresses` is set with the `10.0.0.110` the ansible control host uses `eth0` to connect to the machine. In case you want to use `eth1` as the outgoing interface on which `kube-apiserver` connects to the `kubelet`s, you should override the variable in this way: `kubelet_secure_addresses: "192.168.1.110"`.
  179. * *kubelet_systemd_wants_dependencies* - List of kubelet service dependencies, other than container runtime.
  180. If you use nfs dynamically mounted volumes, sometimes rpc-statd does not start within the kubelet. You can fix it with this parameter : `kubelet_systemd_wants_dependencies: ["rpc-statd.service"]` This will add `Wants=rpc-statd.service` in `[Unit]` section of /etc/systemd/system/kubelet.service
  181. * *node_labels* - Labels applied to nodes via `kubectl label node`.
  182. For example, labels can be set in the inventory as variables or more widely in group_vars.
  183. *node_labels* can only be defined as a dict:
  184. ```yml
  185. node_labels:
  186. label1_name: label1_value
  187. label2_name: label2_value
  188. ```
  189. * *node_taints* - Taints applied to nodes via `kubectl taint node`.
  190. For example, taints can be set in the inventory as variables or more widely in group_vars.
  191. *node_taints* has to be defined as a list of strings in format `key=value:effect`, e.g.:
  192. ```yml
  193. node_taints:
  194. - "node.example.com/external=true:NoSchedule"
  195. ```
  196. * *kubernetes_audit* - When set to `true`, enables Auditing.
  197. The auditing parameters can be tuned via the following variables (which default values are shown below):
  198. * `audit_log_path`: /var/log/audit/kube-apiserver-audit.log
  199. * `audit_log_maxage`: 30
  200. * `audit_log_maxbackups`: 10
  201. * `audit_log_maxsize`: 100
  202. * `audit_policy_file`: "{{ kube_config_dir }}/audit-policy/apiserver-audit-policy.yaml"
  203. By default, the `audit_policy_file` contains [default rules](https://github.com/kubernetes-sigs/kubespray/blob/master/roles/kubernetes/control-plane/templates/apiserver-audit-policy.yaml.j2) that can be overridden with the `audit_policy_custom_rules` variable.
  204. * *kubernetes_audit_webhook* - When set to `true`, enables the webhook audit backend.
  205. The webhook parameters can be tuned via the following variables (which default values are shown below):
  206. * `audit_webhook_config_file`: "{{ kube_config_dir }}/audit-policy/apiserver-audit-webhook-config.yaml"
  207. * `audit_webhook_server_url`: `"https://audit.app"`
  208. * `audit_webhook_server_extra_args`: {}
  209. * `audit_webhook_mode`: batch
  210. * `audit_webhook_batch_max_size`: 100
  211. * `audit_webhook_batch_max_wait`: 1s
  212. * *kubectl_alias* - Bash alias of kubectl to interact with Kubernetes cluster much easier.
  213. * *remove_anonymous_access* - When set to `true`, removes the `kubeadm:bootstrap-signer-clusterinfo` rolebinding created by kubeadm.
  214. By default, kubeadm creates a rolebinding in the `kube-public` namespace which grants permissions to anonymous users. This rolebinding allows kubeadm to discover and validate cluster information during the join phase.
  215. In a nutshell, this option removes the rolebinding after the init phase of the first control plane node and then configures kubeadm to use file discovery for the join phase of other nodes.
  216. This option does not remove the anonymous authentication feature of the API server.
  217. ### Custom flags for Kube Components
  218. For all kube components, custom flags can be passed in. This allows for edge cases where users need changes to the default deployment that may not be applicable to all deployments.
  219. Extra flags for the kubelet can be specified using these variables,
  220. in the form of dicts of key-value pairs of configuration parameters that will be inserted into the kubelet YAML config file. The `kubelet_node_config_extra_args` apply kubelet settings only to nodes and not control planes. Example:
  221. ```yml
  222. kubelet_config_extra_args:
  223. evictionHard:
  224. memory.available: "100Mi"
  225. evictionSoftGracePeriod:
  226. memory.available: "30s"
  227. evictionSoft:
  228. memory.available: "300Mi"
  229. ```
  230. The possible vars are:
  231. * *kubelet_config_extra_args*
  232. * *kubelet_node_config_extra_args*
  233. Previously, the same parameters could be passed as flags to kubelet binary with the following vars:
  234. * *kubelet_custom_flags*
  235. * *kubelet_node_custom_flags*
  236. The `kubelet_node_custom_flags` apply kubelet settings only to nodes and not control planes. Example:
  237. ```yml
  238. kubelet_custom_flags:
  239. - "--eviction-hard=memory.available<100Mi"
  240. - "--eviction-soft-grace-period=memory.available=30s"
  241. - "--eviction-soft=memory.available<300Mi"
  242. ```
  243. This alternative is deprecated and will remain until the flags are completely removed from kubelet
  244. Extra flags for the API server, controller, and scheduler components can be specified using these variables,
  245. in the form of dicts of key-value pairs of configuration parameters that will be inserted into the kubeadm YAML config file:
  246. * *kube_kubeadm_apiserver_extra_args*
  247. * *kube_kubeadm_controller_extra_args*
  248. * *kube_kubeadm_scheduler_extra_args*
  249. ## App variables
  250. * *helm_version* - Only supports v3.x. Existing v2 installs (with Tiller) will not be modified and need to be removed manually.