<div dir="ltr"><div class="gmail_default" style="font-family:arial,helvetica,sans-serif">Hi,<br><br></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif">currently the only way how to test not-yet-merged modules is to download the from github and save them manually into the existing directory with oVirt modules which are part of Ansible 2.2 (this way you can use all new modules even with 2.2).<br><br></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif">Thanks a lot for any testing and feedback for those modules<br><br></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif">Martin Perina<br><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Nov 28, 2016 at 5:15 PM, Jean Paul Gatt <span dir="ltr">&lt;<a href="mailto:jeanpaul.gatt@gamesysnetwork.com" target="_blank">jeanpaul.gatt@gamesysnetwork.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Thanks Ondra,<br>
<br>
I will follow them on Github.<br>
<br>
Keep up the good work. Also if there is any possibility to start testing the other modules(like managing networks) due to come out with ansible 2.3 please let me know.<br>
<br>
Regards,<br>
<br>
Jean Paul Gatt<br>
<br>
-----Original Message-----<br>
From: Ondra Machacek [mailto:<a href="mailto:omachace@redhat.com">omachace@redhat.com</a>]<br>
Sent: 28 November 2016 16:51<br>
To: Jean Paul Gatt &lt;<a href="mailto:jeanpaul.gatt@gamesysnetwork.com">jeanpaul.gatt@gamesysnetwork.<wbr>com</a>&gt;; <a href="mailto:users@ovirt.org">users@ovirt.org</a><br>
Subject: Re: [ovirt-users] Ansible Modules for ovirt<br>
<br>
Hi,<br>
<br>
thank you very much for your feedback. I am sending few notes inline.<br>
<br>
On 11/25/2016 04:27 PM, Jean Paul Gatt wrote:<br>
&gt; Hi,<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; I have been trying to use the following ansible modules (based on the<br>
&gt; last devel commit in the ansible github repo for the extras modules<br>
&gt; 43bb97bc3763b0335e245606eb2985<wbr>314902cc91):<br>
&gt;<br>
&gt; *         ovirt_vms<br>
&gt;<br>
&gt; *         ovirt_disks<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; I have had varying degrees of success, and I would like to list the<br>
&gt; following issues:<br>
&gt;<br>
&gt; *         Through the REST API, I can define multiple nic card<br>
&gt; configurations for cloud-init, however only 1 can be done with Ansible.<br>
<br>
This issue was already opened here:<br>
<br>
  <a href="https://github.com/ansible/ansible-modules-extras/issues/3447" rel="noreferrer" target="_blank">https://github.com/ansible/<wbr>ansible-modules-extras/issues/<wbr>3447</a><br>
<br>
I will be very happy if you will take a look and tell what you think about the proposed fix.<br>
<br>
&gt; Also, when using templates, it automatically assumes I will be using<br>
&gt; the last version of the template, this had to be defined when using REST.<br>
<br>
I&#39;ve opened an issue here:<br>
<br>
  <a href="https://github.com/ansible/ansible-modules-extras/issues/3555" rel="noreferrer" target="_blank">https://github.com/ansible/<wbr>ansible-modules-extras/issues/<wbr>3555</a><br>
<br>
Feel free to comment there any additional requests regarding that issue.<br>
<br>
&gt;<br>
&gt; *         Assume I have deployed from a template. This will create a VM<br>
&gt; with a disk that is already attached. Now, let&#39;s say I want to<br>
&gt; confirm, or add more disks to the VM. If I pass a number of disks,<br>
&gt; that have already been attached, and I reference them by name (in<br>
&gt; ovirt_disks), I get an error. If I do the same operation by ID it<br>
&gt; seems to work. However I cannot get the ID when running ansible, I need to get it from REST.<br>
&gt; When I query ovirt_vms, disk attachments comes up as<br>
&gt;<br>
&gt; o   &quot;disk_attachments&quot;: [],<br>
&gt;<br>
&gt; If that field gets populated, I could then in turn run ovirt_disks<br>
&gt; with the ID, after querying the VM to get the attachments, but as it<br>
&gt; is it cannot be done.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; I&#39;ll give an example<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; - name: Get Disks<br>
&gt;<br>
&gt;   ovirt_disks:<br>
&gt;<br>
&gt;     auth: &quot;{{ovirt_auth}}&quot;<br>
&gt;<br>
&gt;     vm_name: &quot;{{<a href="http://item.0.name" rel="noreferrer" target="_blank">item.0.name</a>}}&quot;<br>
&gt;<br>
&gt;     name: &quot;{{<a href="http://item.1.name" rel="noreferrer" target="_blank">item.1.name</a>}}&quot;<br>
&gt;<br>
&gt;     interface: &quot;{{item.1.interface}}&quot;<br>
&gt;<br>
&gt;   register: r_disks<br>
&gt;<br>
&gt;   with_subelements:<br>
&gt;<br>
&gt;     - &quot;{{virtual_machines }}&quot;<br>
&gt;<br>
&gt;     - drives<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;                 If the drives have already been attached this will<br>
&gt; fail... but<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; - name: Add Disks to VMs<br>
&gt;<br>
&gt;   ovirt_disks:<br>
&gt;<br>
&gt;     auth: &quot;{{ovirt_auth}}&quot;<br>
&gt;<br>
&gt;     vm_name: &quot;{{<a href="http://item.0.name" rel="noreferrer" target="_blank">item.0.name</a>}}&quot;<br>
&gt;<br>
&gt;     id: 8fc2811e-7774-4903-a5b3-<wbr>489fdedb377b<br>
&gt;<br>
&gt;     size: &quot;100GiB&quot;<br>
&gt;<br>
&gt;     format: &quot;{{item.1.format}}&quot;<br>
&gt;<br>
&gt;     storage_domain: &quot;{{<a href="http://item.1.storage_domain.name" rel="noreferrer" target="_blank">item.1.storage_domain.name</a>}<wbr>}&quot;<br>
&gt;<br>
&gt;     bootable: &quot;{{item.1.bootable}}&quot;<br>
&gt;<br>
&gt;     interface: &quot;{{item.1.interface}}&quot;<br>
&gt;<br>
&gt;     state: attached<br>
&gt;<br>
&gt;   with_subelements:<br>
&gt;<br>
&gt;     - &quot;{{virtual_machines }}&quot;<br>
&gt;<br>
&gt;     - drives<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;                 The second example is working, even if the disk has<br>
&gt; already been attached.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; I&#39;m assuming that since I&#39;m creating the VM from a template, there<br>
&gt; might be multiple disks with the same name, and the wrong ID is being retrieved.<br>
<br>
Yes, that is the problem. To work reliably with disks, the only way is the ID. I will document it better, so users aren&#39;t confused.<br>
<br>
I&#39;ve opened following issue:<br>
<br>
  <a href="https://github.com/ansible/ansible/issues/18650" rel="noreferrer" target="_blank">https://github.com/ansible/<wbr>ansible/issues/18650</a><br>
<br>
I will work on it, feel free to comment any ideas there.<br>
<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; I&#39;m happy to do more testing as further commits appear.<br>
<br>
Thank you, the fixes will be during this week, so hopefully merged soon.<br>
<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; Regards*,*<br>
&gt;<br>
&gt; * *<br>
&gt;<br>
&gt; *Jean Paul Gatt*<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; This email (including any attachments) is confidential, protected by<br>
&gt; copyright and/or other intellectual property rights and may be<br>
&gt; privileged. If you have received it in error, please notify the sender<br>
&gt; immediately before deleting the email from your device. Do not use,<br>
&gt; copy or disclose the information contained in this message or in any<br>
&gt; attachment. We accept no responsibility for malware that we may have<br>
&gt; unintentionally transmitted to you within this email. Those<br>
&gt; communicating with us by email will be deemed to have consented to us<br>
&gt; intercepting and monitoring those communications. Gamesys Network Ltd<br>
&gt; is registered in Malta, with company registration number C47555 and<br>
&gt; VAT registered number MT19542837. The registered office is at Capital<br>
&gt; Business Centre, Entrance A, Level 1, Taz-Zwejt Street, San Gwann SGN3000.<br>
&gt;<br>
&gt;<br>
&gt; ______________________________<wbr>_________________<br>
&gt; Users mailing list<br>
&gt; <a href="mailto:Users@ovirt.org">Users@ovirt.org</a><br>
&gt; <a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a><br>
&gt;<br>
<br>
This email (including any attachments) is confidential, protected by copyright and/or other intellectual property rights and may be privileged. If you have received it in error, please notify the sender immediately before deleting the email from your device. Do not use, copy or disclose the information contained in this message or in any attachment. We accept no responsibility for malware that we may have unintentionally transmitted to you within this email. Those communicating with us by email will be deemed to have consented to us intercepting and monitoring those communications. Gamesys Network Ltd is registered in Malta, with company registration number C47555 and VAT registered number MT19542837. The registered office is at Capital Business Centre, Entrance A, Level 1, Taz-Zwejt Street, San Gwann SGN3000.<br>
______________________________<wbr>_________________<br>
Users mailing list<br>
<a href="mailto:Users@ovirt.org">Users@ovirt.org</a><br>
<a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a><br>
</blockquote></div><br></div>