<div dir="ltr"><div><div><div><div><div><div>Hi All,<br><br></div>Thanks alot. <br><br></div>I have created one VM with minimal installation &amp; installed cloud-init package. And, converted that VM into Template. Then executed the code given in <a href="http://lists.ovirt.org/pipermail/users/2014-February/021302.html">http://lists.ovirt.org/pipermail/users/2014-February/021302.html</a> , but no luck, the code is not setting root password.<br>
<br></div>Also, there is no option to set <b>Hostname </b>for the VM.<br><br><br></div><br></div><div><u><b>Code:</b></u><br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; /*********************Begin Customize VM*********************/<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; // Generate the random password, using whatever mechanism you<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; // prefer:<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; String password = &quot;cJql3P9XLQG4drCYVG/6Q/&quot;;<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; // You need to know the name of the template, the cluster and<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; // the VM you are going to create:<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; String templateName = &quot;rhel2_temp&quot;;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; String clusterName = &quot;testCluster&quot;;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; String vmName = &quot;myvm&quot;;<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; // Prepare the data to create the VM from the template:<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; org.ovirt.engine.sdk.entities.Template templateData = new Template();<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; templateData.setName(templateName);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; org.ovirt.engine.sdk.entities.Cluster clusterData = new Cluster();<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; clusterData.setName(clusterName);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; org.ovirt.engine.sdk.entities.VM vmDataForCreate = new VM();<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; vmDataForCreate.setName(vmName);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; vmDataForCreate.setCluster(clusterData);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; vmDataForCreate.setTemplate(templateData);<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; // Send the request to create the VM to the server:<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; api.getVMs().add(vmDataForCreate);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; String state;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; // White till the VM is down (it will be locked for a while):<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; for (;;) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; state = api.getVMs().get(vmName).getStatus().getState();<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if (&quot;down&quot;.equals(state)) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Thread.sleep(1000);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; }<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; System.out.println(&quot;System Status:&quot;+state);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; // Populate parameters for the action to start the VM with cloud-init:<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; org.ovirt.engine.sdk.entities.User userData = new User();<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; userData.setUserName(&quot;root&quot;);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; userData.setPassword(password);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; Users usersData = new Users();<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; usersData.getUsers().add(userData);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; CloudInit cloudData = new CloudInit();<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; cloudData.setUsers(usersData);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; Initialization initData = new Initialization();<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; initData.setCloudInit(cloudData);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; VM vmDataForStart = new VM();<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; vmDataForStart.setInitialization(initData);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; Action actionData = new Action();<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; actionData.setVm(vmDataForStart);<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; // Send the request to start the VM to the server:<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; api.getVMs().get(vmName).start(actionData);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; System.out.println(&quot;After : &quot;+api.getVMs().get(vmName).getStatus());<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; /*********************End Customize VM*********************/&nbsp; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br><br><br></div>Thanks &amp; Regards,<br></div>
Tejesh<br><div><div><div><br></div></div></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Feb 13, 2014 at 2:26 PM, Juan Hernandez <span dir="ltr">&lt;<a href="mailto:jhernand@redhat.com" target="_blank">jhernand@redhat.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On 02/13/2014 09:29 AM, Shahar Havivi wrote:<br>
&gt; On 13.02.14 00:59, Oved Ourfalli wrote:<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; ----- Original Message -----<br>
&gt;&gt;&gt; From: &quot;Shahar Havivi&quot; &lt;<a href="mailto:shaharh@redhat.com">shaharh@redhat.com</a>&gt;<br>
&gt;&gt;&gt; To: <a href="mailto:users@ovirt.org">users@ovirt.org</a><br>
&gt;&gt;&gt; Cc: &quot;Juan Antonio Hernandez Fernandez&quot; &lt;<a href="mailto:jhernand@redhat.com">jhernand@redhat.com</a>&gt;, <a href="mailto:rhevm-api@lists.fedorahosted.org">rhevm-api@lists.fedorahosted.org</a>, &quot;Tejesh M&quot;<br>

&gt;&gt;&gt; &lt;<a href="mailto:tejeshmk@gmail.com">tejeshmk@gmail.com</a>&gt;<br>
&gt;&gt;&gt; Sent: Wednesday, February 12, 2014 11:22:20 PM<br>
&gt;&gt;&gt; Subject: Re: [Users] [rhevm-api] Assign IP address to VM using Java SDK<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On 12.02.14 22:55, Itamar Heim wrote:<br>
&gt;&gt;&gt;&gt; On 02/12/2014 03:14 PM, Tejesh M wrote:<br>
&gt;&gt;&gt;&gt;&gt; Hi,<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Can anyone share sample code on how to assign IP address to guest os &amp;<br>
&gt;&gt;&gt;&gt;&gt; changing the root password while creating VM from Template using Java SDK?<br>
&gt;&gt;&gt; Hi Tejesh,<br>
&gt;&gt;&gt; You should start here:<br>
&gt;&gt;&gt; <a href="http://www.ovirt.org/Api" target="_blank">http://www.ovirt.org/Api</a><br>
&gt;&gt;&gt; This link will explain the basics for fetching VM via the API using HTTP via<br>
&gt;&gt;&gt; curl command line.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Every VM have a collection of networks and manipulating them can be seeing<br>
&gt;&gt;&gt; here with the REST API examples:<br>
&gt;&gt;&gt; <a href="http://www.ovirt.org/Features/Design/Network/SetupNetworks#REST" target="_blank">http://www.ovirt.org/Features/Design/Network/SetupNetworks#REST</a><br>
&gt;&gt;&gt; the section for you is &quot;Attaching a network to a NIC&quot; under the REST<br>
&gt;&gt;&gt; category.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Shahar Havivi.<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Actually it looks like Tejesh is referring to the Guests and not the hosts, so you can use cloud-init in order to do that.<br>
&gt;&gt; See more in &quot;<a href="http://www.ovirt.org/Features/Cloud-Init_Integration" target="_blank">http://www.ovirt.org/Features/Cloud-Init_Integration</a>&quot;.<br>
&gt;&gt; If the VM&#39;s operating system is defined as some kind of Linux, then you&#39;ll be able to set some stuff using cloud-init, either via the Run-Once Dialog, or in the regular VM properties dialog.<br>
&gt;&gt;<br>
&gt;&gt; Omer - we have REST API support for cloud-init, right?<br>
&gt; Yes, more on that can be found here:<br>
&gt; <a href="http://www.ovirt.org/Features/vm-init-persistent" target="_blank">http://www.ovirt.org/Features/vm-init-persistent</a><br>
&gt;&gt;<br>
<br>
Tajesh, you have a detailed example of how to set the password in the<br>
following message:<br>
<br>
<a href="http://lists.ovirt.org/pipermail/users/2014-February/021302.html" target="_blank">http://lists.ovirt.org/pipermail/users/2014-February/021302.html</a><br>
<br>
Setting the IP address is similar.<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
Dirección Comercial: C/Jose Bardasano Baos, 9, Edif. Gorbea 3, planta<br>
3ºD, 28016 Madrid, Spain<br>
Inscrita en el Reg. Mercantil de Madrid &ndash; C.I.F. B82657941 - Red Hat S.L.<br>
</font></span></blockquote></div><br><br clear="all"><br>-- <br><div>Thanks &amp; Regards</div>
<div>Tejesh</div>
</div>