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.

190 lines
7.7 KiB

7 years ago
  1. # Ansible variables
  2. ## Inventory
  3. The inventory is composed of 3 groups:
  4. * **kube-node** : list of kubernetes nodes where the pods will run.
  5. * **kube-master** : list of servers where kubernetes master components (apiserver, scheduler, controller) will run.
  6. * **etcd**: list of servers to compose the etcd server. You should have at least 3 servers for failover purpose.
  7. Note: do not modify the children of _k8s-cluster_, like putting
  8. the _etcd_ group into the _k8s-cluster_, unless you are certain
  9. to do that and you have it fully contained in the latter:
  10. ```ShellSession
  11. k8s-cluster ⊂ etcd => kube-node ∩ etcd = etcd
  12. ```
  13. When _kube-node_ contains _etcd_, you define your etcd cluster to be as well schedulable for Kubernetes workloads.
  14. If you want it a standalone, make sure those groups do not intersect.
  15. If you want the server to act both as master and node, the server must be defined
  16. on both groups _kube-master_ and _kube-node_. If you want a standalone and
  17. unschedulable master, the server must be defined only in the _kube-master_ and
  18. not _kube-node_.
  19. There are also two special groups:
  20. * **calico-rr** : explained for [advanced Calico networking cases](calico.md)
  21. * **bastion** : configure a bastion host if your nodes are not directly reachable
  22. Below is a complete inventory example:
  23. ```ini
  24. ## Configure 'ip' variable to bind kubernetes services on a
  25. ## different ip than the default iface
  26. node1 ansible_host=95.54.0.12 ip=10.3.0.1
  27. node2 ansible_host=95.54.0.13 ip=10.3.0.2
  28. node3 ansible_host=95.54.0.14 ip=10.3.0.3
  29. node4 ansible_host=95.54.0.15 ip=10.3.0.4
  30. node5 ansible_host=95.54.0.16 ip=10.3.0.5
  31. node6 ansible_host=95.54.0.17 ip=10.3.0.6
  32. [kube-master]
  33. node1
  34. node2
  35. [etcd]
  36. node1
  37. node2
  38. node3
  39. [kube-node]
  40. node2
  41. node3
  42. node4
  43. node5
  44. node6
  45. [k8s-cluster:children]
  46. kube-node
  47. kube-master
  48. ```
  49. ## Group vars and overriding variables precedence
  50. The group variables to control main deployment options are located in the directory ``inventory/sample/group_vars``.
  51. Optional variables are located in the `inventory/sample/group_vars/all.yml`.
  52. Mandatory variables that are common for at least one role (or a node group) can be found in the
  53. `inventory/sample/group_vars/k8s-cluster.yml`.
  54. There are also role vars for docker, kubernetes preinstall and master roles.
  55. According to the [ansible docs](https://docs.ansible.com/ansible/playbooks_variables.html#variable-precedence-where-should-i-put-a-variable),
  56. those cannot be overridden from the group vars. In order to override, one should use
  57. the `-e` runtime flags (most simple way) or other layers described in the docs.
  58. Kubespray uses only a few layers to override things (or expect them to
  59. be overridden for roles):
  60. Layer | Comment
  61. ------|--------
  62. **role defaults** | provides best UX to override things for Kubespray deployments
  63. inventory vars | Unused
  64. **inventory group_vars** | Expects users to use ``all.yml``,``k8s-cluster.yml`` etc. to override things
  65. inventory host_vars | Unused
  66. playbook group_vars | Unused
  67. playbook host_vars | Unused
  68. **host facts** | Kubespray overrides for internal roles' logic, like state flags
  69. play vars | Unused
  70. play vars_prompt | Unused
  71. play vars_files | Unused
  72. registered vars | Unused
  73. set_facts | Kubespray overrides those, for some places
  74. **role and include vars** | Provides bad UX to override things! Use extra vars to enforce
  75. block vars (only for tasks in block) | Kubespray overrides for internal roles' logic
  76. task vars (only for the task) | Unused for roles, but only for helper scripts
  77. **extra vars** (always win precedence) | override with ``ansible-playbook -e @foo.yml``
  78. ## Ansible tags
  79. The following tags are defined in playbooks:
  80. | Tag name | Used for
  81. |--------------------------|---------
  82. | apps | K8s apps definitions
  83. | azure | Cloud-provider Azure
  84. | bastion | Setup ssh config for bastion
  85. | bootstrap-os | Anything related to host OS configuration
  86. | calico | Network plugin Calico
  87. | canal | Network plugin Canal
  88. | cloud-provider | Cloud-provider related tasks
  89. | docker | Configuring docker for hosts
  90. | download | Fetching container images to a delegate host
  91. | etcd | Configuring etcd cluster
  92. | etcd-pre-upgrade | Upgrading etcd cluster
  93. | etcd-secrets | Configuring etcd certs/keys
  94. | etchosts | Configuring /etc/hosts entries for hosts
  95. | facts | Gathering facts and misc check results
  96. | flannel | Network plugin flannel
  97. | gce | Cloud-provider GCP
  98. | hyperkube | Manipulations with K8s hyperkube image
  99. | k8s-pre-upgrade | Upgrading K8s cluster
  100. | k8s-secrets | Configuring K8s certs/keys
  101. | kube-apiserver | Configuring static pod kube-apiserver
  102. | kube-controller-manager | Configuring static pod kube-controller-manager
  103. | kubectl | Installing kubectl and bash completion
  104. | kubelet | Configuring kubelet service
  105. | kube-proxy | Configuring static pod kube-proxy
  106. | kube-scheduler | Configuring static pod kube-scheduler
  107. | localhost | Special steps for the localhost (ansible runner)
  108. | master | Configuring K8s master node role
  109. | netchecker | Installing netchecker K8s app
  110. | network | Configuring networking plugins for K8s
  111. | nginx | Configuring LB for kube-apiserver instances
  112. | node | Configuring K8s minion (compute) node role
  113. | openstack | Cloud-provider OpenStack
  114. | preinstall | Preliminary configuration steps
  115. | resolvconf | Configuring /etc/resolv.conf for hosts/apps
  116. | upgrade | Upgrading, f.e. container images/binaries
  117. | upload | Distributing images/binaries across hosts
  118. | weave | Network plugin Weave
  119. | ingress_alb | AWS ALB Ingress Controller
  120. | ambassador | Ambassador Ingress Controller
  121. Note: Use the ``bash scripts/gen_tags.sh`` command to generate a list of all
  122. tags found in the codebase. New tags will be listed with the empty "Used for"
  123. field.
  124. ## Example commands
  125. Example command to filter and apply only DNS configuration tasks and skip
  126. everything else related to host OS configuration and downloading images of containers:
  127. ```ShellSession
  128. ansible-playbook -i inventory/sample/hosts.ini cluster.yml --tags preinstall,facts --skip-tags=download,bootstrap-os
  129. ```
  130. And this play only removes the K8s cluster DNS resolver IP from hosts' /etc/resolv.conf files:
  131. ```ShellSession
  132. ansible-playbook -i inventory/sample/hosts.ini -e dns_mode='none' cluster.yml --tags resolvconf
  133. ```
  134. And this prepares all container images locally (at the ansible runner node) without installing
  135. or upgrading related stuff or trying to upload container to K8s cluster nodes:
  136. ```ShellSession
  137. ansible-playbook -i inventory/sample/hosts.ini cluster.yml \
  138. -e download_run_once=true -e download_localhost=true \
  139. --tags download --skip-tags upload,upgrade
  140. ```
  141. Note: use `--tags` and `--skip-tags` wise and only if you're 100% sure what you're doing.
  142. ## Bastion host
  143. If you prefer to not make your nodes publicly accessible (nodes with private IPs only),
  144. you can use a so called *bastion* host to connect to your nodes. To specify and use a bastion,
  145. simply add a line to your inventory, where you have to replace x.x.x.x with the public IP of the
  146. bastion host.
  147. ```ShellSession
  148. [bastion]
  149. bastion ansible_host=x.x.x.x
  150. ```
  151. For more information about Ansible and bastion hosts, read
  152. [Running Ansible Through an SSH Bastion Host](https://blog.scottlowe.org/2015/12/24/running-ansible-through-ssh-bastion-host/)
  153. ## Mitogen
  154. You can use [mitogen](mitogen.md) to speed up kubespray.