12345678910111213141516171819202122232425262728293031 |
- ---
- - name: Check if IB switch is supported
- block:
- - name: Check pre-requisites
- include_tasks: pre_requisites.yml
- tags: install
- - name: Create image
- include_tasks: create_image.yml
- tags: install
- - name: Check pod
- include_tasks: create_pod.yml
- tags: install
- when: ib_switch_support
|