
Use correct system scope - all - while getting the list of ironic nodes in ipa-images role. Closes-Bug: #2083014 Change-Id: I4da3a3739d57817ffbd094caea0fc80c3ad8eff8
70 lines
2.6 KiB
YAML
70 lines
2.6 KiB
YAML
---
|
|
|
|
- name: Retrieve deployment image uuids
|
|
openstack.cloud.image_info:
|
|
auth_type: "{{ ipa_images_openstack_auth_type }}"
|
|
auth: "{{ ipa_images_openstack_auth }}"
|
|
cacert: "{{ ipa_images_openstack_cacert | default(omit, true) }}"
|
|
interface: "{{ ipa_images_openstack_interface | default(omit, true) }}"
|
|
image: "{{ item.name }}"
|
|
with_items:
|
|
- name: "{{ ipa_images_kernel_name }}"
|
|
- name: "{{ ipa_images_ramdisk_name }}"
|
|
register: ipa_images_glance
|
|
|
|
- name: Set fact containing kernel uuid
|
|
set_fact:
|
|
ipa_images_kernel_uuid: "{{ ipa_images_glance.results[0].images[0].id }}"
|
|
|
|
- name: Set fact containing ramdisk uuid
|
|
set_fact:
|
|
ipa_images_ramdisk_uuid: "{{ ipa_images_glance.results[1].images[0].id }}"
|
|
|
|
- name: Change system scope to all for Ironic operations
|
|
set_fact:
|
|
ipa_images_ironic_openstack_auth_env: "{{ ipa_images_openstack_auth_env |
|
|
combine ({ 'OS_PROJECT_NAME': omit }) |
|
|
combine ({ 'OS_PROJECT_DOMAIN_NAME': omit }) |
|
|
combine ({ 'OS_SYSTEM_SCOPE': 'all' }) }}"
|
|
|
|
- name: Get a list of ironic nodes
|
|
command: |
|
|
{{ ipa_images_venv }}/bin/openstack baremetal node list --fields name uuid driver_info -f json
|
|
register: ipa_images_ironic_node_list
|
|
changed_when: False
|
|
environment: "{{ ipa_images_ironic_openstack_auth_env }}"
|
|
|
|
- name: Make sure openstack nodes are in baremetal-compute group
|
|
add_host:
|
|
name: "{{ item.Name }}"
|
|
groups: baremetal-compute
|
|
when:
|
|
- item.Name is not none
|
|
- item.Name not in groups["baremetal-compute"]
|
|
with_items: "{{ ipa_images_ironic_node_list.stdout | from_json }}"
|
|
|
|
- name: Set fact containing filtered list of nodes
|
|
set_fact:
|
|
ipa_images_compute_node_whitelist: "{{ query('inventory_hostnames', ipa_images_compute_node_limit) | unique }}"
|
|
|
|
- name: Initialise a fact containing the ironic nodes
|
|
set_fact:
|
|
ipa_images_ironic_nodes: []
|
|
|
|
- name: Update a fact containing the ironic nodes
|
|
set_fact:
|
|
ipa_images_ironic_nodes: "{{ ipa_images_ironic_nodes + [item] }}"
|
|
with_items: "{{ ipa_images_ironic_node_list.stdout | from_json }}"
|
|
when: item['Name'] in ipa_images_compute_node_whitelist
|
|
|
|
- name: Ensure ironic nodes use the new Ironic Python Agent (IPA) images
|
|
command: >
|
|
{{ ipa_images_venv }}/bin/openstack baremetal node set {{ item.UUID }}
|
|
--driver-info deploy_kernel={{ ipa_images_kernel_uuid }}
|
|
--driver-info deploy_ramdisk={{ ipa_images_ramdisk_uuid }}
|
|
with_items: "{{ ipa_images_ironic_nodes }}"
|
|
when:
|
|
item["Driver Info"].deploy_kernel != ipa_images_kernel_uuid or
|
|
item["Driver Info"].deploy_ramdisk != ipa_images_ramdisk_uuid
|
|
environment: "{{ ipa_images_ironic_openstack_auth_env }}"
|