README.md in vagrant-vcenter-0.3.2 vs README.md in vagrant-vcenter-0.3.3

- old
+ new

@@ -1,17 +1,31 @@ [Vagrant](http://www.vagrantup.com) provider for VMware vCenter® ============= -[Version 0.3.2](../../releases/tag/v0.3.2) has been released! +[![Join the chat at https://gitter.im/frapposelli/vagrant-vcenter](https://badges.gitter.im/frapposelli/vagrant-vcenter.svg)](https://gitter.im/frapposelli/vagrant-vcenter?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) + +[Version 0.3.3](../../releases/tag/v0.3.3) has been released! ------------- Please note that this software is still Alpha/Beta quality and is not recommended for production usage. We have a wide array of boxes available at [Vagrant Cloud](https://vagrantcloud.com/gosddc) you can use them directly or you can roll your own as you please, make sure to install VMware tools in it. This plugin supports the universal [```vmware_ovf``` box format](https://github.com/gosddc/packer-post-processor-vagrant-vmware-ovf/wiki/vmware_ovf-Box-Format), that is 100% portable between [vagrant-vcloud](https://github.com/frapposelli/vagrant-vcloud), [vagrant-vcenter](https://github.com/gosddc/vagrant-vcenter) and [vagrant-vcloudair](https://github.com/gosddc/vagrant-vcloudair), no more double boxes!. +Changes in [version 0.3.3](../../releases/tag/v0.3.3) include: + +Changes + +- Configuration setting ```computer_name``` renamed to ```compute_name``` as this can be either a vSphere host or a Cluster name. + +Fixes + +- Better error management +- Fixed some commands in unwanted situations (SSH when machine suspended/off) +- Refactored code to avoid code duplication + Install ------------- Latest version can be easily installed by running the following command: @@ -62,11 +76,11 @@ vcenter.hostname = 'my.vcenter.hostname' vcenter.username = 'myUsername' vcenter.password = 'myPassword' vcenter.folder_name = 'myFolderName' vcenter.datacenter_name = 'MyDatacenterName' - vcenter.computer_name = 'MyHostOrCluster' + vcenter.compute_name = 'MyHostOrCluster' vcenter.datastore_name = 'MyDatastore' vcenter.network_name = 'myNetworkName' vcenter.linked_clones = true end @@ -80,11 +94,11 @@ ip: node[:ip], netmask: '255.255.0.0', gateway: '10.250.254.254', dns_server_list: ['8.8.4.4', '8.8.8.8'], dns_suffix_list: ['ad.lab.gosddc.com'] - + # Let's override some provider settings for specific VMs node_config.vm.provider :vcenter do |override| # Override number of cpu and memory based on what's in the nodes array override.num_cpu = node[:cpu] override.memory = node[:mem] @@ -114,6 +128,6 @@ - Thorough testing. - Error checking is absymal. - Some spaghetti code here and there. - Bugs, bugs and BUGS!. -If you're a developer and want to lend us a hand, head over to our ```develop``` branch and send us PRs! +If you're a developer and want to lend us a hand, send us PRs!