2017-01-11 14:08:24 +00:00
|
|
|
---
|
|
|
|
|
2017-06-16 17:25:46 +00:00
|
|
|
# These tasks will undo changes done by kubespray in the past if needed (e.g. when upgrading from kubespray 2.0.x
|
2017-01-11 14:08:24 +00:00
|
|
|
# or when changing resolvconf_mode)
|
|
|
|
|
2017-06-16 17:25:46 +00:00
|
|
|
- name: Remove kubespray specific config from dhclient config
|
2017-01-11 14:08:24 +00:00
|
|
|
blockinfile:
|
2019-05-02 21:24:21 +00:00
|
|
|
path: "{{ dhclientconffile }}"
|
2017-01-11 14:08:24 +00:00
|
|
|
state: absent
|
|
|
|
backup: yes
|
|
|
|
marker: "# Ansible entries {mark}"
|
2019-11-06 18:11:52 +00:00
|
|
|
notify: Preinstall | propagate resolvconf to k8s components
|
2017-01-11 14:08:24 +00:00
|
|
|
|
2017-06-16 17:25:46 +00:00
|
|
|
- name: Remove kubespray specific dhclient hook
|
2017-02-17 21:22:34 +00:00
|
|
|
file:
|
|
|
|
path: "{{ dhclienthookfile }}"
|
|
|
|
state: absent
|
2019-11-06 18:11:52 +00:00
|
|
|
notify: Preinstall | propagate resolvconf to k8s components
|