2015-12-30 16:11:33 +00:00
|
|
|
---
|
2018-06-21 06:17:03 +00:00
|
|
|
# Disable swap
|
2018-08-23 14:51:52 +00:00
|
|
|
- import_tasks: 0010-swapoff.yml
|
2018-11-01 15:08:50 +00:00
|
|
|
when:
|
|
|
|
- not dns_late
|
|
|
|
- disable_swap
|
2018-06-21 06:17:03 +00:00
|
|
|
|
2018-08-23 14:51:52 +00:00
|
|
|
- import_tasks: 0020-verify-settings.yml
|
2018-11-01 15:08:50 +00:00
|
|
|
when:
|
|
|
|
- not dns_late
|
2017-10-05 07:43:04 +00:00
|
|
|
tags:
|
|
|
|
- asserts
|
2017-01-02 11:14:03 +00:00
|
|
|
|
2018-08-23 14:51:52 +00:00
|
|
|
- import_tasks: 0040-set_facts.yml
|
2017-10-05 07:43:04 +00:00
|
|
|
tags:
|
2018-08-23 14:51:52 +00:00
|
|
|
- resolvconf
|
2017-10-05 07:43:04 +00:00
|
|
|
- facts
|
2016-08-26 17:24:47 +00:00
|
|
|
|
2018-08-23 14:51:52 +00:00
|
|
|
- import_tasks: 0050-create_directories.yml
|
2018-11-01 15:08:50 +00:00
|
|
|
when:
|
|
|
|
- not dns_late
|
2018-04-12 19:55:13 +00:00
|
|
|
|
2018-08-23 14:51:52 +00:00
|
|
|
- import_tasks: 0060-resolvconf.yml
|
2017-10-18 10:42:00 +00:00
|
|
|
when:
|
|
|
|
- dns_mode != 'none'
|
|
|
|
- resolvconf_mode == 'host_resolvconf'
|
2019-11-06 11:33:52 +00:00
|
|
|
- systemd_resolved_enabled.rc != 0
|
2022-02-26 18:29:23 +00:00
|
|
|
- networkmanager_enabled.rc != 0
|
2019-11-06 11:33:52 +00:00
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
|
|
|
- resolvconf
|
|
|
|
|
|
|
|
- import_tasks: 0061-systemd-resolved.yml
|
|
|
|
when:
|
|
|
|
- dns_mode != 'none'
|
|
|
|
- resolvconf_mode == 'host_resolvconf'
|
|
|
|
- systemd_resolved_enabled.rc == 0
|
2017-10-18 10:42:00 +00:00
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
|
|
|
- resolvconf
|
|
|
|
|
2021-03-03 15:27:20 +00:00
|
|
|
- import_tasks: 0062-networkmanager-unmanaged-devices.yml
|
2022-02-26 18:29:23 +00:00
|
|
|
when:
|
|
|
|
- networkmanager_enabled.rc == 0
|
2021-03-03 15:27:20 +00:00
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
|
|
|
|
|
|
|
- import_tasks: 0063-networkmanager-dns.yml
|
2020-06-29 07:26:17 +00:00
|
|
|
when:
|
|
|
|
- dns_mode != 'none'
|
|
|
|
- resolvconf_mode == 'host_resolvconf'
|
2022-02-26 18:29:23 +00:00
|
|
|
- networkmanager_enabled.rc == 0
|
2020-06-29 07:26:17 +00:00
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
|
|
|
- resolvconf
|
|
|
|
|
2018-08-23 14:51:52 +00:00
|
|
|
- import_tasks: 0070-system-packages.yml
|
2018-11-01 15:08:50 +00:00
|
|
|
when:
|
|
|
|
- not dns_late
|
2017-10-05 07:43:04 +00:00
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
2017-02-09 09:16:52 +00:00
|
|
|
|
2018-08-23 14:51:52 +00:00
|
|
|
- import_tasks: 0080-system-configurations.yml
|
2018-11-01 15:08:50 +00:00
|
|
|
when:
|
|
|
|
- not dns_late
|
2017-10-05 07:43:04 +00:00
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
2015-12-30 21:15:18 +00:00
|
|
|
|
2018-08-23 14:51:52 +00:00
|
|
|
- import_tasks: 0090-etchosts.yml
|
2018-11-01 15:08:50 +00:00
|
|
|
when:
|
|
|
|
- not dns_late
|
2017-10-05 07:43:04 +00:00
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
|
|
|
- etchosts
|
2016-12-07 15:57:05 +00:00
|
|
|
|
2018-08-23 14:51:52 +00:00
|
|
|
- import_tasks: 0100-dhclient-hooks.yml
|
2017-04-26 12:11:13 +00:00
|
|
|
when:
|
|
|
|
- dns_mode != 'none'
|
|
|
|
- resolvconf_mode == 'host_resolvconf'
|
2022-03-29 07:11:11 +00:00
|
|
|
- dhclientconffile is defined
|
2021-10-01 16:11:23 +00:00
|
|
|
- not ansible_os_family in ["Flatcar", "Flatcar Container Linux by Kinvolk"]
|
2017-10-05 07:43:04 +00:00
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
|
|
|
- resolvconf
|
2017-01-11 14:08:24 +00:00
|
|
|
|
2018-08-23 14:51:52 +00:00
|
|
|
- import_tasks: 0110-dhclient-hooks-undo.yml
|
2017-04-26 12:11:13 +00:00
|
|
|
when:
|
|
|
|
- dns_mode != 'none'
|
|
|
|
- resolvconf_mode != 'host_resolvconf'
|
2022-03-29 07:11:11 +00:00
|
|
|
- dhclientconffile is defined
|
2021-10-01 16:11:23 +00:00
|
|
|
- not ansible_os_family in ["Flatcar", "Flatcar Container Linux by Kinvolk"]
|
2017-10-05 07:43:04 +00:00
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
|
|
|
- resolvconf
|
2017-01-11 14:08:24 +00:00
|
|
|
|
2018-10-17 19:27:11 +00:00
|
|
|
# We need to make sure the network is restarted early enough so that docker can later pick up the correct system
|
|
|
|
# nameservers and search domains
|
2021-07-12 07:00:47 +00:00
|
|
|
- name: Flush handlers
|
|
|
|
meta: flush_handlers
|
2018-10-17 19:27:11 +00:00
|
|
|
|
2016-12-12 13:14:22 +00:00
|
|
|
- name: Check if we are running inside a Azure VM
|
2017-02-17 21:22:34 +00:00
|
|
|
stat:
|
|
|
|
path: /var/lib/waagent/
|
2021-02-10 13:36:59 +00:00
|
|
|
get_attributes: no
|
|
|
|
get_checksum: no
|
|
|
|
get_mime: no
|
2016-12-12 13:14:22 +00:00
|
|
|
register: azure_check
|
2018-11-01 15:08:50 +00:00
|
|
|
when:
|
|
|
|
- not dns_late
|
2017-10-05 07:43:04 +00:00
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
2016-12-12 13:14:22 +00:00
|
|
|
|
2018-08-23 14:51:52 +00:00
|
|
|
- import_tasks: 0120-growpart-azure-centos-7.yml
|
2017-04-26 12:11:13 +00:00
|
|
|
when:
|
2018-11-01 15:08:50 +00:00
|
|
|
- not dns_late
|
2017-04-26 12:11:13 +00:00
|
|
|
- azure_check.stat.exists
|
2021-04-23 06:50:03 +00:00
|
|
|
- ansible_os_family == "RedHat"
|
2017-10-05 07:43:04 +00:00
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
2022-04-14 08:08:46 +00:00
|
|
|
|
|
|
|
- name: Run calico checks
|
|
|
|
include_role:
|
|
|
|
name: network_plugin/calico
|
|
|
|
tasks_from: check
|
|
|
|
when:
|
|
|
|
- kube_network_plugin == 'calico'
|
|
|
|
- not ignore_assert_errors
|