github.com/openshift/installer@v1.4.17/upi/openstack/down-bootstrap.yaml (about)

     1  # Required Python packages:
     2  #
     3  # ansible
     4  # openstacksdk
     5  
     6  - ansible.builtin.import_playbook: common.yaml
     7  
     8  - hosts: all
     9    gather_facts: no
    10  
    11    tasks:
    12    - name: 'Remove the bootstrap server'
    13      openstack.cloud.server:
    14        name: "{{ os_bootstrap_server_name }}"
    15        state: absent
    16  
    17    - name: 'Remove the bootstrap server port'
    18      openstack.cloud.port:
    19        name: "{{ os_port_bootstrap }}"
    20        state: absent