diff options
author | Pawel Wieczorek <p.wieczorek2@samsung.com> | 2021-04-23 12:10:38 +0200 |
---|---|---|
committer | Pawel Wieczorek <p.wieczorek2@samsung.com> | 2021-04-26 09:28:08 +0200 |
commit | 72a3c7c62e37772b7680a02e5253f835c6420fb7 (patch) | |
tree | 3d4e277c5b0e1a05422bfa41403a562fa922e96b /deployment/noheat/infra-openstack/ansible/destroy.yml | |
parent | 87e526604b5817a8cc12ecfb2964a963c98dadcc (diff) |
Flatten Ansible role structure
Given current constraints of CI Lab application of Ansible playbooks has
to be divided into several stages (changing Ansible controller between
them). This is why role structure can be flattened for increased
readability.
Issue-ID: INT-1601
Change-Id: I71f95649617e160f7887f03c6a96161fb8873c66
Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
Diffstat (limited to 'deployment/noheat/infra-openstack/ansible/destroy.yml')
-rw-r--r-- | deployment/noheat/infra-openstack/ansible/destroy.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/deployment/noheat/infra-openstack/ansible/destroy.yml b/deployment/noheat/infra-openstack/ansible/destroy.yml index ca1455f5f..ff9d5fccf 100644 --- a/deployment/noheat/infra-openstack/ansible/destroy.yml +++ b/deployment/noheat/infra-openstack/ansible/destroy.yml @@ -4,10 +4,10 @@ connection: local gather_facts: False roles: - - role: openstack/destroy_devstack_hosts + - role: destroy_hosts hosts: "{{ cluster.hosts }}" - - role: openstack/destroy_devstack_hosts + - role: destroy_hosts hosts: "{{ operation.hosts }}" - - openstack/destroy_devstack_keypair - - openstack/destroy_devstack_network - - openstack/destroy_devstack_securitygroup + - destroy_keypair + - destroy_network + - destroy_securitygroup |