2017-09-27 13:47:47 +00:00
|
|
|
---
|
|
|
|
- name: Stop if ansible version is too low
|
|
|
|
assert:
|
|
|
|
that:
|
2017-10-17 10:14:29 +00:00
|
|
|
- ansible_version.full|version_compare('2.3.0', '>=')
|
2017-09-27 13:47:47 +00:00
|
|
|
run_once: yes
|
|
|
|
|
|
|
|
- name: Stop if non systemd OS type
|
|
|
|
assert:
|
|
|
|
that: ansible_service_mgr == "systemd"
|
|
|
|
ignore_errors: "{{ ignore_assert_errors }}"
|
|
|
|
|
|
|
|
- name: Stop if unknown OS
|
|
|
|
assert:
|
|
|
|
that: ansible_distribution in ['RedHat', 'CentOS', 'Fedora', 'Ubuntu', 'Debian', 'CoreOS', 'Container Linux by CoreOS']
|
|
|
|
ignore_errors: "{{ ignore_assert_errors }}"
|
|
|
|
|
|
|
|
- name: Stop if unknown network plugin
|
|
|
|
assert:
|
|
|
|
that: network_plugin in ['calico', 'canal', 'flannel', 'weave', 'cloud']
|
|
|
|
when: network_plugin is defined
|
|
|
|
ignore_errors: "{{ ignore_assert_errors }}"
|
|
|
|
|
|
|
|
- name: Stop if incompatible network plugin and cloudprovider
|
|
|
|
assert:
|
2017-09-29 07:17:18 +00:00
|
|
|
that: network_plugin != 'calico'
|
|
|
|
msg: "Azure and Calico are not compatible. See https://github.com/projectcalico/calicoctl/issues/949 for details."
|
2017-09-27 13:47:47 +00:00
|
|
|
when: cloud_provider is defined and cloud_provider == 'azure'
|
|
|
|
ignore_errors: "{{ ignore_assert_errors }}"
|
|
|
|
|
2017-11-03 07:11:14 +00:00
|
|
|
# simplify this items-list when https://github.com/ansible/ansible/issues/15753 is resolved
|
2017-09-27 13:47:47 +00:00
|
|
|
- name: "Stop if known booleans are set as strings (Use JSON format on CLI: -e \"{'key': true }\")"
|
|
|
|
assert:
|
2017-11-03 07:11:14 +00:00
|
|
|
that: item.value|type_debug == 'bool'
|
|
|
|
msg: "{{item.value}} isn't a bool"
|
2017-09-27 13:47:47 +00:00
|
|
|
run_once: yes
|
|
|
|
with_items:
|
2017-11-03 07:11:14 +00:00
|
|
|
- { name: kubeadm_enabled, value: "{{ kubeadm_enabled }}" }
|
|
|
|
- { name: download_run_once, value: "{{ download_run_once }}" }
|
|
|
|
- { name: deploy_netchecker, value: "{{ deploy_netchecker }}" }
|
|
|
|
- { name: download_always_pull, value: "{{ download_always_pull }}" }
|
|
|
|
- { name: efk_enabled, value: "{{ efk_enabled }}" }
|
|
|
|
- { name: helm_enabled, value: "{{ helm_enabled }}" }
|
|
|
|
- { name: openstack_lbaas_enabled, value: "{{ openstack_lbaas_enabled }}" }
|
2017-09-27 13:47:47 +00:00
|
|
|
ignore_errors: "{{ ignore_assert_errors }}"
|
|
|
|
|
|
|
|
- name: Stop if even number of etcd hosts
|
|
|
|
assert:
|
|
|
|
that: groups.etcd|length is not divisibleby 2
|
|
|
|
ignore_errors: "{{ ignore_assert_errors }}"
|
|
|
|
|
|
|
|
- name: Stop if memory is too small for masters
|
|
|
|
assert:
|
|
|
|
that: ansible_memtotal_mb >= 1500
|
|
|
|
ignore_errors: "{{ ignore_assert_errors }}"
|
|
|
|
when: inventory_hostname in groups['kube-master']
|
|
|
|
|
|
|
|
- name: Stop if memory is too small for nodes
|
|
|
|
assert:
|
|
|
|
that: ansible_memtotal_mb >= 1024
|
|
|
|
ignore_errors: "{{ ignore_assert_errors }}"
|
|
|
|
when: inventory_hostname in groups['kube-node']
|
|
|
|
|
|
|
|
- name: Stop if ip var does not match local ips
|
|
|
|
assert:
|
|
|
|
that: ip in ansible_all_ipv4_addresses
|
|
|
|
ignore_errors: "{{ ignore_assert_errors }}"
|
|
|
|
when: ip is defined
|
|
|
|
|
|
|
|
- name: Stop if access_ip is not pingable
|
|
|
|
command: ping -c1 {{ access_ip }}
|
|
|
|
when: access_ip is defined
|
|
|
|
ignore_errors: "{{ ignore_assert_errors }}"
|
2017-10-27 16:57:12 +00:00
|
|
|
|
|
|
|
- name: Stop if swap enabled
|
|
|
|
assert:
|
|
|
|
that: ansible_swaptotal_mb == 0
|
|
|
|
when: kubelet_fail_swap_on|default(true)
|
|
|
|
ignore_errors: "{{ ignore_assert_errors }}"
|
2017-11-09 21:59:30 +00:00
|
|
|
|
|
|
|
- name: Stop if RBAC is not enabled when dashboard is enabled
|
|
|
|
assert:
|
|
|
|
that: rbac_enabled
|
|
|
|
when: dashboard_enabled
|
2017-11-06 20:01:10 +00:00
|
|
|
ignore_errors: "{{ ignore_assert_errors }}"
|
|
|
|
|
|
|
|
- name: Stop if RBAC and anonymous-auth are not enabled when insecure port is disabled
|
|
|
|
assert:
|
|
|
|
that: rbac_enabled and kube_api_anonymous_auth
|
|
|
|
when: kube_apiserver_insecure_port == 0
|
2018-02-17 03:37:47 +00:00
|
|
|
ignore_errors: "{{ ignore_assert_errors }}"
|
|
|
|
|
|
|
|
- name: Stop if kernel version is too low
|
|
|
|
assert:
|
|
|
|
that: ansible_kernel.split('-')[0]|version_compare('4.8', '>=')
|
|
|
|
when: kube_network_plugin == 'cilium'
|
2017-11-09 21:59:30 +00:00
|
|
|
ignore_errors: "{{ ignore_assert_errors }}"
|