github.com/openshift/installer@v1.4.17/upi/ovirt/masters.yml (about)

     1  ---
     2  - hosts: localhost
     3    connection: local
     4    gather_facts: false
     5  
     6    tasks:
     7    - import_tasks: common-auth.yml
     8  
     9    - name: Start masters VM
    10      ovirt_vm:
    11        auth: "{{ ovirt_auth }}"
    12        cluster: "{{ item.profile.cluster }}"
    13        name: "{{ item.name }}"
    14        state: running
    15        cloud_init_persist: True
    16        cloud_init:
    17          custom_script: "{{ lookup('file', ocp.assets_dir+'/'+item.ocp_type+'.ign') | string }}"
    18      with_items:
    19      - "{{ vms }}"
    20      when: item.ocp_type == 'master'
    21      async: 60
    22      poll: 0