2019-12-04 15:22:57 +00:00
|
|
|
# Ansible variables
|
2016-07-04 12:13:18 +00:00
|
|
|
|
2019-12-04 15:22:57 +00:00
|
|
|
## Inventory
|
2016-07-04 12:13:18 +00:00
|
|
|
|
2016-07-11 14:05:05 +00:00
|
|
|
The inventory is composed of 3 groups:
|
2016-07-04 12:13:18 +00:00
|
|
|
|
|
|
|
* **kube-node** : list of kubernetes nodes where the pods will run.
|
2016-07-11 14:05:05 +00:00
|
|
|
* **kube-master** : list of servers where kubernetes master components (apiserver, scheduler, controller) will run.
|
2017-02-14 10:08:27 +00:00
|
|
|
* **etcd**: list of servers to compose the etcd server. You should have at least 3 servers for failover purpose.
|
2016-07-04 12:13:18 +00:00
|
|
|
|
2017-01-11 11:46:44 +00:00
|
|
|
Note: do not modify the children of _k8s-cluster_, like putting
|
|
|
|
the _etcd_ group into the _k8s-cluster_, unless you are certain
|
|
|
|
to do that and you have it fully contained in the latter:
|
|
|
|
|
2019-12-04 15:22:57 +00:00
|
|
|
```ShellSession
|
2017-01-11 11:46:44 +00:00
|
|
|
k8s-cluster ⊂ etcd => kube-node ∩ etcd = etcd
|
|
|
|
```
|
|
|
|
|
|
|
|
When _kube-node_ contains _etcd_, you define your etcd cluster to be as well schedulable for Kubernetes workloads.
|
|
|
|
If you want it a standalone, make sure those groups do not intersect.
|
|
|
|
If you want the server to act both as master and node, the server must be defined
|
|
|
|
on both groups _kube-master_ and _kube-node_. If you want a standalone and
|
|
|
|
unschedulable master, the server must be defined only in the _kube-master_ and
|
|
|
|
not _kube-node_.
|
|
|
|
|
|
|
|
There are also two special groups:
|
|
|
|
|
2018-02-01 06:42:34 +00:00
|
|
|
* **calico-rr** : explained for [advanced Calico networking cases](calico.md)
|
2017-01-11 11:46:44 +00:00
|
|
|
* **bastion** : configure a bastion host if your nodes are not directly reachable
|
|
|
|
|
2016-07-11 14:05:05 +00:00
|
|
|
Below is a complete inventory example:
|
2016-07-04 12:13:18 +00:00
|
|
|
|
2019-12-04 15:22:57 +00:00
|
|
|
```ini
|
2016-07-04 12:13:18 +00:00
|
|
|
## Configure 'ip' variable to bind kubernetes services on a
|
|
|
|
## different ip than the default iface
|
2019-04-23 06:36:09 +00:00
|
|
|
node1 ansible_host=95.54.0.12 ip=10.3.0.1
|
|
|
|
node2 ansible_host=95.54.0.13 ip=10.3.0.2
|
|
|
|
node3 ansible_host=95.54.0.14 ip=10.3.0.3
|
|
|
|
node4 ansible_host=95.54.0.15 ip=10.3.0.4
|
|
|
|
node5 ansible_host=95.54.0.16 ip=10.3.0.5
|
|
|
|
node6 ansible_host=95.54.0.17 ip=10.3.0.6
|
2016-07-04 12:13:18 +00:00
|
|
|
|
|
|
|
[kube-master]
|
|
|
|
node1
|
|
|
|
node2
|
|
|
|
|
|
|
|
[etcd]
|
|
|
|
node1
|
|
|
|
node2
|
|
|
|
node3
|
|
|
|
|
|
|
|
[kube-node]
|
|
|
|
node2
|
|
|
|
node3
|
|
|
|
node4
|
|
|
|
node5
|
|
|
|
node6
|
|
|
|
|
|
|
|
[k8s-cluster:children]
|
|
|
|
kube-node
|
|
|
|
kube-master
|
|
|
|
```
|
|
|
|
|
2019-12-04 15:22:57 +00:00
|
|
|
## Group vars and overriding variables precedence
|
2017-01-05 13:52:51 +00:00
|
|
|
|
2018-02-01 06:42:34 +00:00
|
|
|
The group variables to control main deployment options are located in the directory ``inventory/sample/group_vars``.
|
|
|
|
Optional variables are located in the `inventory/sample/group_vars/all.yml`.
|
2016-12-27 15:39:00 +00:00
|
|
|
Mandatory variables that are common for at least one role (or a node group) can be found in the
|
2018-02-01 06:42:34 +00:00
|
|
|
`inventory/sample/group_vars/k8s-cluster.yml`.
|
2019-04-29 08:14:20 +00:00
|
|
|
There are also role vars for docker, kubernetes preinstall and master roles.
|
2020-02-13 22:46:17 +00:00
|
|
|
According to the [ansible docs](https://docs.ansible.com/ansible/playbooks_variables.html#variable-precedence-where-should-i-put-a-variable),
|
2018-10-26 13:49:57 +00:00
|
|
|
those cannot be overridden from the group vars. In order to override, one should use
|
2019-12-04 15:22:57 +00:00
|
|
|
the `-e` runtime flags (most simple way) or other layers described in the docs.
|
2017-01-05 13:52:51 +00:00
|
|
|
|
2017-06-16 17:25:46 +00:00
|
|
|
Kubespray uses only a few layers to override things (or expect them to
|
2018-10-26 13:49:57 +00:00
|
|
|
be overridden for roles):
|
2017-01-05 13:52:51 +00:00
|
|
|
|
|
|
|
Layer | Comment
|
|
|
|
------|--------
|
2017-06-16 17:25:46 +00:00
|
|
|
**role defaults** | provides best UX to override things for Kubespray deployments
|
2017-01-05 13:52:51 +00:00
|
|
|
inventory vars | Unused
|
|
|
|
**inventory group_vars** | Expects users to use ``all.yml``,``k8s-cluster.yml`` etc. to override things
|
|
|
|
inventory host_vars | Unused
|
2017-06-12 11:20:15 +00:00
|
|
|
playbook group_vars | Unused
|
2017-01-05 13:52:51 +00:00
|
|
|
playbook host_vars | Unused
|
2017-06-16 17:25:46 +00:00
|
|
|
**host facts** | Kubespray overrides for internal roles' logic, like state flags
|
2017-01-05 13:52:51 +00:00
|
|
|
play vars | Unused
|
|
|
|
play vars_prompt | Unused
|
|
|
|
play vars_files | Unused
|
|
|
|
registered vars | Unused
|
2017-06-16 17:25:46 +00:00
|
|
|
set_facts | Kubespray overrides those, for some places
|
2017-01-05 13:52:51 +00:00
|
|
|
**role and include vars** | Provides bad UX to override things! Use extra vars to enforce
|
2017-06-16 17:25:46 +00:00
|
|
|
block vars (only for tasks in block) | Kubespray overrides for internal roles' logic
|
2017-01-05 13:52:51 +00:00
|
|
|
task vars (only for the task) | Unused for roles, but only for helper scripts
|
|
|
|
**extra vars** (always win precedence) | override with ``ansible-playbook -e @foo.yml``
|
2016-12-08 13:36:00 +00:00
|
|
|
|
2019-12-04 15:22:57 +00:00
|
|
|
## Ansible tags
|
|
|
|
|
2016-12-08 13:36:00 +00:00
|
|
|
The following tags are defined in playbooks:
|
|
|
|
|
|
|
|
| Tag name | Used for
|
|
|
|
|--------------------------|---------
|
|
|
|
| apps | K8s apps definitions
|
|
|
|
| azure | Cloud-provider Azure
|
2016-12-12 13:53:33 +00:00
|
|
|
| bastion | Setup ssh config for bastion
|
2016-12-08 13:36:00 +00:00
|
|
|
| bootstrap-os | Anything related to host OS configuration
|
|
|
|
| calico | Network plugin Calico
|
|
|
|
| canal | Network plugin Canal
|
|
|
|
| cloud-provider | Cloud-provider related tasks
|
2016-12-07 15:57:05 +00:00
|
|
|
| docker | Configuring docker for hosts
|
2016-12-09 15:57:56 +00:00
|
|
|
| download | Fetching container images to a delegate host
|
2016-12-08 13:36:00 +00:00
|
|
|
| etcd | Configuring etcd cluster
|
|
|
|
| etcd-pre-upgrade | Upgrading etcd cluster
|
|
|
|
| etcd-secrets | Configuring etcd certs/keys
|
|
|
|
| etchosts | Configuring /etc/hosts entries for hosts
|
|
|
|
| facts | Gathering facts and misc check results
|
|
|
|
| flannel | Network plugin flannel
|
|
|
|
| gce | Cloud-provider GCP
|
|
|
|
| hyperkube | Manipulations with K8s hyperkube image
|
|
|
|
| k8s-pre-upgrade | Upgrading K8s cluster
|
|
|
|
| k8s-secrets | Configuring K8s certs/keys
|
2017-06-21 09:00:11 +00:00
|
|
|
| kube-apiserver | Configuring static pod kube-apiserver
|
|
|
|
| kube-controller-manager | Configuring static pod kube-controller-manager
|
2016-12-08 13:36:00 +00:00
|
|
|
| kubectl | Installing kubectl and bash completion
|
|
|
|
| kubelet | Configuring kubelet service
|
2017-06-21 09:00:11 +00:00
|
|
|
| kube-proxy | Configuring static pod kube-proxy
|
|
|
|
| kube-scheduler | Configuring static pod kube-scheduler
|
2016-12-09 15:57:56 +00:00
|
|
|
| localhost | Special steps for the localhost (ansible runner)
|
2016-12-08 13:36:00 +00:00
|
|
|
| master | Configuring K8s master node role
|
|
|
|
| netchecker | Installing netchecker K8s app
|
|
|
|
| network | Configuring networking plugins for K8s
|
|
|
|
| nginx | Configuring LB for kube-apiserver instances
|
|
|
|
| node | Configuring K8s minion (compute) node role
|
|
|
|
| openstack | Cloud-provider OpenStack
|
|
|
|
| preinstall | Preliminary configuration steps
|
|
|
|
| resolvconf | Configuring /etc/resolv.conf for hosts/apps
|
|
|
|
| upgrade | Upgrading, f.e. container images/binaries
|
2016-12-09 15:57:56 +00:00
|
|
|
| upload | Distributing images/binaries across hosts
|
2016-12-08 13:36:00 +00:00
|
|
|
| weave | Network plugin Weave
|
2020-03-16 09:58:35 +00:00
|
|
|
| ingress_alb | AWS ALB Ingress Controller
|
2016-12-08 13:36:00 +00:00
|
|
|
|
|
|
|
Note: Use the ``bash scripts/gen_tags.sh`` command to generate a list of all
|
|
|
|
tags found in the codebase. New tags will be listed with the empty "Used for"
|
|
|
|
field.
|
|
|
|
|
2019-12-04 15:22:57 +00:00
|
|
|
## Example commands
|
|
|
|
|
2016-12-08 13:36:00 +00:00
|
|
|
Example command to filter and apply only DNS configuration tasks and skip
|
|
|
|
everything else related to host OS configuration and downloading images of containers:
|
|
|
|
|
2019-12-04 15:22:57 +00:00
|
|
|
```ShellSession
|
2019-04-01 19:32:34 +00:00
|
|
|
ansible-playbook -i inventory/sample/hosts.ini cluster.yml --tags preinstall,facts --skip-tags=download,bootstrap-os
|
2016-12-08 13:36:00 +00:00
|
|
|
```
|
2019-12-04 15:22:57 +00:00
|
|
|
|
2016-12-08 13:36:00 +00:00
|
|
|
And this play only removes the K8s cluster DNS resolver IP from hosts' /etc/resolv.conf files:
|
2019-12-04 15:22:57 +00:00
|
|
|
|
|
|
|
```ShellSession
|
2019-04-01 19:32:34 +00:00
|
|
|
ansible-playbook -i inventory/sample/hosts.ini -e dns_mode='none' cluster.yml --tags resolvconf
|
2016-12-08 13:36:00 +00:00
|
|
|
```
|
2019-12-04 15:22:57 +00:00
|
|
|
|
2018-08-22 14:40:17 +00:00
|
|
|
And this prepares all container images locally (at the ansible runner node) without installing
|
2016-12-09 15:57:56 +00:00
|
|
|
or upgrading related stuff or trying to upload container to K8s cluster nodes:
|
2019-12-04 15:22:57 +00:00
|
|
|
|
|
|
|
```ShellSession
|
2018-02-01 06:42:34 +00:00
|
|
|
ansible-playbook -i inventory/sample/hosts.ini cluster.yml \
|
2016-12-09 15:57:56 +00:00
|
|
|
-e download_run_once=true -e download_localhost=true \
|
|
|
|
--tags download --skip-tags upload,upgrade
|
|
|
|
```
|
2016-12-08 13:36:00 +00:00
|
|
|
|
|
|
|
Note: use `--tags` and `--skip-tags` wise and only if you're 100% sure what you're doing.
|
2016-12-09 09:57:50 +00:00
|
|
|
|
2019-12-04 15:22:57 +00:00
|
|
|
## Bastion host
|
|
|
|
|
2016-12-09 09:57:50 +00:00
|
|
|
If you prefer to not make your nodes publicly accessible (nodes with private IPs only),
|
|
|
|
you can use a so called *bastion* host to connect to your nodes. To specify and use a bastion,
|
|
|
|
simply add a line to your inventory, where you have to replace x.x.x.x with the public IP of the
|
|
|
|
bastion host.
|
|
|
|
|
2019-12-04 15:22:57 +00:00
|
|
|
```ShellSession
|
2019-04-23 06:36:09 +00:00
|
|
|
[bastion]
|
|
|
|
bastion ansible_host=x.x.x.x
|
2016-12-09 09:57:50 +00:00
|
|
|
```
|
|
|
|
|
2017-01-05 13:52:51 +00:00
|
|
|
For more information about Ansible and bastion hosts, read
|
2020-02-13 22:46:17 +00:00
|
|
|
[Running Ansible Through an SSH Bastion Host](https://blog.scottlowe.org/2015/12/24/running-ansible-through-ssh-bastion-host/)
|