a1eec2498a
One task in destroy role was missing arguments that were supplied by the old bash CLI but not supplied by the new python CLI. Closes-Bug: #2086187 Change-Id: I6ced070ca10b63c4d27ac76c1e82dc4312c1b165 Signed-off-by: Roman Krček <roman.krcek@tietoevry.com>
41 lines
1.4 KiB
YAML
41 lines
1.4 KiB
YAML
---
|
|
- name: Destroying Kolla host configuration
|
|
become: true
|
|
script: ../tools/cleanup-host
|
|
environment:
|
|
enable_haproxy: "{{ enable_haproxy }}"
|
|
enable_swift: "{{ enable_swift }}"
|
|
glance_file_datadir_volume: "{{ glance_file_datadir_volume }}"
|
|
nova_instance_datadir_volume: "{{ nova_instance_datadir_volume }}"
|
|
gnocchi_metric_datadir_volume: "{{ gnocchi_metric_datadir_volume }}"
|
|
influxdb_datadir_volume: "{{ influxdb_datadir_volume }}"
|
|
kolla_internal_vip_address: "{{ kolla_internal_vip_address }}"
|
|
kolla_external_vip_address: "{{ kolla_external_vip_address }}"
|
|
kolla_dev_repos_directory: "{{ kolla_dev_repos_directory }}"
|
|
opensearch_datadir_volume: "{{ opensearch_datadir_volume }}"
|
|
destroy_include_dev: "{{ destroy_include_dev }}"
|
|
kolla_ansible_inventories: "{{ ansible_inventory_sources | join(' ') }}"
|
|
|
|
- block:
|
|
- name: Disable octavia-interface service
|
|
service:
|
|
name: octavia-interface
|
|
enabled: no
|
|
state: stopped
|
|
failed_when: false
|
|
|
|
- name: Remove octavia-interface service file
|
|
file:
|
|
path: /etc/systemd/system/octavia-interface.service
|
|
state: absent
|
|
|
|
- name: Remove dhclient.conf
|
|
file:
|
|
path: /etc/dhcp/octavia-dhclient.conf
|
|
state: absent
|
|
when:
|
|
- enable_octavia | bool
|
|
- octavia_auto_configure | bool
|
|
- octavia_network_type == 'tenant'
|
|
- inventory_hostname in groups['octavia-health-manager']
|