
This patchset moves the vino-builder image build from the images repo into the vino repo. [0] removes it from the images repo. [0] https://review.opendev.org/c/airship/images/+/786714 Change-Id: I8299045cdfaaf285e0f088b330a84e00fcb8307c
40 lines
988 B
YAML
40 lines
988 B
YAML
##########################################
|
|
# configure storage #
|
|
##########################################
|
|
|
|
- name: create storage
|
|
include_tasks: create-storage.yaml
|
|
loop: "{{ libvirtStorage }}"
|
|
|
|
##########################################
|
|
# configure networks #
|
|
##########################################
|
|
|
|
# - name: create network
|
|
# include_tasks: create-network.yaml
|
|
# loop: "{{ libvirtNetworks }}"
|
|
|
|
##########################################
|
|
# configure domains #
|
|
##########################################
|
|
|
|
- name: allocate domain cores
|
|
core_allocation:
|
|
nodes: "{{ nodes }}"
|
|
flavors: "{{ flavors }}"
|
|
exclude_cpu: "{{ configuration.cpuExclude }}"
|
|
register: node_core_map
|
|
when: nodes
|
|
|
|
- name: debug print node_core_map
|
|
debug:
|
|
msg: "node_core_map = {{ node_core_map }}"
|
|
|
|
- name: define domain outer loop
|
|
include_tasks: create-domain.yaml
|
|
loop: "{{ nodes }}"
|
|
loop_control:
|
|
loop_var: node
|
|
|
|
|