<div dir="ltr"><div><div>Are there any known issues with cloud-init not setting the network gateway ?<br><br></div>I&#39;m trying to create a host with the ansible roles, all is Ok apart from network settings.<br><br></div>Ansible code:<br><div><br><span style="font-family:monospace,monospace">- <br>  block: <br>    - <br>      name: Authenticate<br>      ovirt_auth: <br>        password: ***<br>        url: &quot;https://***/ovirt-engine/api&quot;<br>        username: admin@internal<br>    - <br>      name: &quot;Create Virtual Machines&quot;<br>      ovirt_vms: <br>        auth: &quot;{{ ovirt_auth }}&quot;<br>        clone: false<br>        cloud_init: <br>          custom_script: &quot;touch /etc/cloud/cloud-init.disabled&quot;<br>          dns_search: ***<br>          dns_servers: &quot;*** ***&quot;<br>          host_name: ***<br>          nic_boot_protocol: static<br>          nic_gateway: &quot;***&quot;<br>          nic_ip_address: &quot;***&quot;<br>          nic_name: eth0<br>          nic_netmask: &quot;***&quot;<br>          nic_on_boot: true<br>        cluster: Default<br>        comment: &quot;Ansible Created&quot;<br>        name: &quot;***&quot;<br>        state: present<br>        stateless: false<br>        storage_domain: &quot;***&quot;<br>        template: CentOS7_1711_could_init<br>        timeout: 600<br>      register: ovirt_vm<br>  always: <br>    - <br>      name: &quot;Sign Out&quot;<br>      ovirt_auth: <br>        ovirt_auth: &quot;{{ ovirt_auth }}&quot;<br>        state: absent<br></span><br><br></div><div>I&#39;ve also tried using the web-ui, again most &#39;things&#39; get set but not the gateway which is a killer as I can only access the VM with remote console until I set the gateway.</div><div><br></div><div>Regards,</div><div>Brett<br></div><div><br></div></div>