I deployed VMware's new vCenter Infrastructure Navigator in my lab over the weekend and just like the rest of the other virtual appliances (vCloud, vCO, vCC, vShield), here is how you can automate the deployment of VMware vIN.
Here are the ovf parameters that are available to deploy vCenter Infrastructure Navigator:
- vm.password
- vami.gateway.vCenter_Infrastructure_Navigator
- vami.DNS.vCenter_Infrastructure_Navigator
- vami.ip0.vCenter_Infrastructure_Navigator
- vami.netmask0.vCenter_Infrastructure_Navigator
To see these properties before deploying, you can query using the ovftool which can help you identify the name of the ovf variables using the following command:
ovftool --hideEula Navigator-1.0.0.49-592384_OVF10.ova
Note: Before deploying vIN, ensure that you have the vCenter advanced setting VirtualCenter.ManagedIP configured as it is needed by the vService in vIN. For more details, take a look at this blog post on how you can easily automate this.
Here is an example of the ovftool command to deploy vIN Server:
ovftool --acceptAllEulas --skipManifestCheck '--net:Network 1=VM_Network' --datastore=iSCSI-4 --diskMode=thin --name=vin --prop:vami.DNS.vCenter_Infrastructure_Navigator=172.30.0.100 --prop:vami.gateway.vCenter_Infrastructure_Navigator=172.30.0.1 --prop:vami.ip0.vCenter_Infrastructure_Navigator=172.30.0.150 --prop:vami.netmask0.vCenter_Infrastructure_Navigator=255.255.255.0 --prop:vm.password=vmware123 Navigator-1.0.0.49-592384_OVF10.ova 'vi://root:*protected email*/?dns=vesxi50-3.primp-industries.com'
Of course, I wrote a simple shell script deployvIN.sh to help with the deployment. The script assumes you have ovftool installed and the OVF files located in the same directory as the script. You will need to edit the following variables if you wish to deploy vIN:
Note: There are many ways of using the ovftool to deploy an OVF. In this simple example, it requires you to specify an ESX(i) host, but you can modify the locator to deploy to a VM folder or datacenter path. For more examples and options, please take a look at the ovftool documentation.
Here is an example of the script in action:
Once the vIN virtual appliance has been deployed, you can also have it automatically power on by specifying the following parameter --powerOn.
If everything was successful, you should be able to license vCenter Infrastructure Navigator using the vSphere Client C# client and then login to the vSphere Web Client to enable the discovery process for your virtual machines. Shortly after, you should start seeing some application dependency within your vSphere environment like this:
jasper9 says
Hi William, You wrote this post in 2012, apparently before they added this new required property below. Any idea the specific syntax to satisfy this?
Output from 'ovftool path_to_ova'
...snip...
VService Dependency:
ID: installation
Name: vCenter Extension Installation
Type: com.vmware.vservice.extension
Required: true
Description: This appliance requires a binding to the vCenter Extension
vService, which allows it to automatically register as a vCenter
Extension at runtime.
...snip...
William Lam says
Take a look here 🙂 http://www.virtuallyghetto.com/2014/10/how-to-configure-the-vcenter-extension-vservice-using-ovftool.html