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.

305 lines
14 KiB

7 years ago
  1. # Ansible
  2. ## Installing Ansible
  3. Kubespray supports multiple ansible versions and ships different `requirements.txt` files for them.
  4. Depending on your available python version you may be limited in chooding which ansible version to use.
  5. It is recommended to deploy the ansible version used by kubespray into a python virtual environment.
  6. ```ShellSession
  7. VENVDIR=kubespray-venv
  8. KUBESPRAYDIR=kubespray
  9. ANSIBLE_VERSION=2.12
  10. virtualenv --python=$(which python3) $VENVDIR
  11. source $VENVDIR/bin/activate
  12. cd $KUBESPRAYDIR
  13. pip install -U -r requirements-$ANSIBLE_VERSION.txt
  14. test -f requirements-$ANSIBLE_VERSION.yml && \
  15. ansible-galaxy role install -r requirements-$ANSIBLE_VERSION.yml && \
  16. ansible-galaxy collection -r requirements-$ANSIBLE_VERSION.yml
  17. ```
  18. ### Ansible Python Compatibility
  19. Based on the table below and the available python version for your ansible host you should choose the appropriate ansible version to use with kubespray.
  20. | Ansible Version | Python Version |
  21. | --------------- | -------------- |
  22. | 2.9 | 2.7,3.5-3.8 |
  23. | 2.10 | 2.7,3.5-3.8 |
  24. | 2.11 | 2.7,3.5-3.9 |
  25. | 2.12 | 3.8-3.10 |
  26. ## Inventory
  27. The inventory is composed of 3 groups:
  28. * **kube_node** : list of kubernetes nodes where the pods will run.
  29. * **kube_control_plane** : list of servers where kubernetes control plane components (apiserver, scheduler, controller) will run.
  30. * **etcd**: list of servers to compose the etcd server. You should have at least 3 servers for failover purpose.
  31. Note: do not modify the children of _k8s_cluster_, like putting
  32. the _etcd_ group into the _k8s_cluster_, unless you are certain
  33. to do that and you have it fully contained in the latter:
  34. ```ShellSession
  35. etcd ⊂ k8s_cluster => kube_node ∩ etcd = etcd
  36. ```
  37. When _kube_node_ contains _etcd_, you define your etcd cluster to be as well schedulable for Kubernetes workloads.
  38. If you want it a standalone, make sure those groups do not intersect.
  39. If you want the server to act both as control-plane and node, the server must be defined
  40. on both groups _kube_control_plane_ and _kube_node_. If you want a standalone and
  41. unschedulable control plane, the server must be defined only in the _kube_control_plane_ and
  42. not _kube_node_.
  43. There are also two special groups:
  44. * **calico_rr** : explained for [advanced Calico networking cases](/docs/calico.md)
  45. * **bastion** : configure a bastion host if your nodes are not directly reachable
  46. Below is a complete inventory example:
  47. ```ini
  48. ## Configure 'ip' variable to bind kubernetes services on a
  49. ## different ip than the default iface
  50. node1 ansible_host=95.54.0.12 ip=10.3.0.1
  51. node2 ansible_host=95.54.0.13 ip=10.3.0.2
  52. node3 ansible_host=95.54.0.14 ip=10.3.0.3
  53. node4 ansible_host=95.54.0.15 ip=10.3.0.4
  54. node5 ansible_host=95.54.0.16 ip=10.3.0.5
  55. node6 ansible_host=95.54.0.17 ip=10.3.0.6
  56. [kube_control_plane]
  57. node1
  58. node2
  59. [etcd]
  60. node1
  61. node2
  62. node3
  63. [kube_node]
  64. node2
  65. node3
  66. node4
  67. node5
  68. node6
  69. [k8s_cluster:children]
  70. kube_node
  71. kube_control_plane
  72. ```
  73. ## Group vars and overriding variables precedence
  74. The group variables to control main deployment options are located in the directory ``inventory/sample/group_vars``.
  75. Optional variables are located in the `inventory/sample/group_vars/all.yml`.
  76. Mandatory variables that are common for at least one role (or a node group) can be found in the
  77. `inventory/sample/group_vars/k8s_cluster.yml`.
  78. There are also role vars for docker, kubernetes preinstall and control plane roles.
  79. According to the [ansible docs](https://docs.ansible.com/ansible/latest/playbooks_variables.html#variable-precedence-where-should-i-put-a-variable),
  80. those cannot be overridden from the group vars. In order to override, one should use
  81. the `-e` runtime flags (most simple way) or other layers described in the docs.
  82. Kubespray uses only a few layers to override things (or expect them to
  83. be overridden for roles):
  84. Layer | Comment
  85. ------|--------
  86. **role defaults** | provides best UX to override things for Kubespray deployments
  87. inventory vars | Unused
  88. **inventory group_vars** | Expects users to use ``all.yml``,``k8s_cluster.yml`` etc. to override things
  89. inventory host_vars | Unused
  90. playbook group_vars | Unused
  91. playbook host_vars | Unused
  92. **host facts** | Kubespray overrides for internal roles' logic, like state flags
  93. play vars | Unused
  94. play vars_prompt | Unused
  95. play vars_files | Unused
  96. registered vars | Unused
  97. set_facts | Kubespray overrides those, for some places
  98. **role and include vars** | Provides bad UX to override things! Use extra vars to enforce
  99. block vars (only for tasks in block) | Kubespray overrides for internal roles' logic
  100. task vars (only for the task) | Unused for roles, but only for helper scripts
  101. **extra vars** (always win precedence) | override with ``ansible-playbook -e @foo.yml``
  102. ## Ansible tags
  103. The following tags are defined in playbooks:
  104. | Tag name | Used for
  105. |--------------------------------|---------
  106. | annotate | Create kube-router annotation
  107. | apps | K8s apps definitions
  108. | asserts | Check tasks for download role
  109. | aws-ebs-csi-driver | Configuring csi driver: aws-ebs
  110. | azure-csi-driver | Configuring csi driver: azure
  111. | bastion | Setup ssh config for bastion
  112. | bootstrap-os | Anything related to host OS configuration
  113. | calico | Network plugin Calico
  114. | calico_rr | Configuring Calico route reflector
  115. | canal | Network plugin Canal
  116. | cephfs-provisioner | Configuring CephFS
  117. | cert-manager | Configuring certificate manager for K8s
  118. | cilium | Network plugin Cilium
  119. | cinder-csi-driver | Configuring csi driver: cinder
  120. | client | Kubernetes clients role
  121. | cloud-provider | Cloud-provider related tasks
  122. | cluster-roles | Configuring cluster wide application (psp ...)
  123. | cni | CNI plugins for Network Plugins
  124. | containerd | Configuring containerd engine runtime for hosts
  125. | container_engine_accelerator | Enable nvidia accelerator for runtimes
  126. | container-engine | Configuring container engines
  127. | container-runtimes | Configuring container runtimes
  128. | coredns | Configuring coredns deployment
  129. | crio | Configuring crio container engine for hosts
  130. | crun | Configuring crun runtime
  131. | csi-driver | Configuring csi driver
  132. | dashboard | Installing and configuring the Kubernetes Dashboard
  133. | dns | Remove dns entries when resetting
  134. | docker | Configuring docker engine runtime for hosts
  135. | download | Fetching container images to a delegate host
  136. | etcd | Configuring etcd cluster
  137. | etcd-secrets | Configuring etcd certs/keys
  138. | etchosts | Configuring /etc/hosts entries for hosts
  139. | external-cloud-controller | Configure cloud controllers
  140. | external-openstack | Cloud controller : openstack
  141. | external-provisioner | Configure external provisioners
  142. | external-vsphere | Cloud controller : vsphere
  143. | facts | Gathering facts and misc check results
  144. | files | Remove files when resetting
  145. | flannel | Network plugin flannel
  146. | gce | Cloud-provider GCP
  147. | gcp-pd-csi-driver | Configuring csi driver: gcp-pd
  148. | gvisor | Configuring gvisor runtime
  149. | helm | Installing and configuring Helm
  150. | ingress-controller | Configure ingress controllers
  151. | ingress_alb | AWS ALB Ingress Controller
  152. | init | Windows kubernetes init nodes
  153. | iptables | Flush and clear iptable when resetting
  154. | k8s-pre-upgrade | Upgrading K8s cluster
  155. | k8s-secrets | Configuring K8s certs/keys
  156. | k8s-gen-tokens | Configuring K8s tokens
  157. | kata-containers | Configuring kata-containers runtime
  158. | krew | Install and manage krew
  159. | kubeadm | Roles linked to kubeadm tasks
  160. | kube-apiserver | Configuring static pod kube-apiserver
  161. | kube-controller-manager | Configuring static pod kube-controller-manager
  162. | kube-vip | Installing and configuring kube-vip
  163. | kubectl | Installing kubectl and bash completion
  164. | kubelet | Configuring kubelet service
  165. | kube-ovn | Network plugin kube-ovn
  166. | kube-router | Network plugin kube-router
  167. | kube-proxy | Configuring static pod kube-proxy
  168. | localhost | Special steps for the localhost (ansible runner)
  169. | local-path-provisioner | Configure External provisioner: local-path
  170. | local-volume-provisioner | Configure External provisioner: local-volume
  171. | macvlan | Network plugin macvlan
  172. | master | Configuring K8s master node role
  173. | metallb | Installing and configuring metallb
  174. | metrics_server | Configuring metrics_server
  175. | netchecker | Installing netchecker K8s app
  176. | network | Configuring networking plugins for K8s
  177. | mounts | Umount kubelet dirs when reseting
  178. | multus | Network plugin multus
  179. | nginx | Configuring LB for kube-apiserver instances
  180. | node | Configuring K8s minion (compute) node role
  181. | nodelocaldns | Configuring nodelocaldns daemonset
  182. | node-label | Tasks linked to labeling of nodes
  183. | node-webhook | Tasks linked to webhook (grating access to resources)
  184. | nvidia_gpu | Enable nvidia accelerator for runtimes
  185. | oci | Cloud provider: oci
  186. | persistent_volumes | Configure csi volumes
  187. | persistent_volumes_aws_ebs_csi | Configuring csi driver: aws-ebs
  188. | persistent_volumes_cinder_csi | Configuring csi driver: cinder
  189. | persistent_volumes_gcp_pd_csi | Configuring csi driver: gcp-pd
  190. | persistent_volumes_openstack | Configuring csi driver: openstack
  191. | policy-controller | Configuring Calico policy controller
  192. | post-remove | Tasks running post-remove operation
  193. | post-upgrade | Tasks running post-upgrade operation
  194. | pre-remove | Tasks running pre-remove operation
  195. | pre-upgrade | Tasks running pre-upgrade operation
  196. | preinstall | Preliminary configuration steps
  197. | registry | Configuring local docker registry
  198. | reset | Tasks running doing the node reset
  199. | resolvconf | Configuring /etc/resolv.conf for hosts/apps
  200. | rbd-provisioner | Configure External provisioner: rdb
  201. | services | Remove services (etcd, kubelet etc...) when resetting
  202. | snapshot | Enabling csi snapshot
  203. | snapshot-controller | Configuring csi snapshot controller
  204. | upgrade | Upgrading, f.e. container images/binaries
  205. | upload | Distributing images/binaries across hosts
  206. | vsphere-csi-driver | Configuring csi driver: vsphere
  207. | weave | Network plugin Weave
  208. | win_nodes | Running windows specific tasks
  209. | youki | Configuring youki runtime
  210. Note: Use the ``bash scripts/gen_tags.sh`` command to generate a list of all
  211. tags found in the codebase. New tags will be listed with the empty "Used for"
  212. field.
  213. ## Example commands
  214. Example command to filter and apply only DNS configuration tasks and skip
  215. everything else related to host OS configuration and downloading images of containers:
  216. ```ShellSession
  217. ansible-playbook -i inventory/sample/hosts.ini cluster.yml --tags preinstall,facts --skip-tags=download,bootstrap-os
  218. ```
  219. And this play only removes the K8s cluster DNS resolver IP from hosts' /etc/resolv.conf files:
  220. ```ShellSession
  221. ansible-playbook -i inventory/sample/hosts.ini -e dns_mode='none' cluster.yml --tags resolvconf
  222. ```
  223. And this prepares all container images locally (at the ansible runner node) without installing
  224. or upgrading related stuff or trying to upload container to K8s cluster nodes:
  225. ```ShellSession
  226. ansible-playbook -i inventory/sample/hosts.ini cluster.yml \
  227. -e download_run_once=true -e download_localhost=true \
  228. --tags download --skip-tags upload,upgrade
  229. ```
  230. Note: use `--tags` and `--skip-tags` wise and only if you're 100% sure what you're doing.
  231. ## Bastion host
  232. If you prefer to not make your nodes publicly accessible (nodes with private IPs only),
  233. you can use a so called *bastion* host to connect to your nodes. To specify and use a bastion,
  234. simply add a line to your inventory, where you have to replace x.x.x.x with the public IP of the
  235. bastion host.
  236. ```ShellSession
  237. [bastion]
  238. bastion ansible_host=x.x.x.x
  239. ```
  240. For more information about Ansible and bastion hosts, read
  241. [Running Ansible Through an SSH Bastion Host](https://blog.scottlowe.org/2015/12/24/running-ansible-through-ssh-bastion-host/)
  242. ## Mitogen
  243. Mitogen support is deprecated, please see [mitogen related docs](/docs/mitogen.md) for useage and reasons for deprecation.
  244. ## Beyond ansible 2.9
  245. Ansible project has decided, in order to ease their maintenance burden, to split between
  246. two projects which are now joined under the Ansible umbrella.
  247. Ansible-base (2.10.x branch) will contain just the ansible language implementation while
  248. ansible modules that were previously bundled into a single repository will be part of the
  249. ansible 3.x package. Pleasee see [this blog post](https://blog.while-true-do.io/ansible-release-3-0-0/)
  250. that explains in detail the need and the evolution plan.
  251. **Note:** this change means that ansible virtual envs cannot be upgraded with `pip install -U`.
  252. You first need to uninstall your old ansible (pre 2.10) version and install the new one.
  253. ```ShellSession
  254. pip uninstall ansible ansible-base ansible-core
  255. cd kubespray/
  256. pip install -U .
  257. ```