frapposelli / vagrant-vcloud

Vagrant provider for VMware vCloud Director®
MIT License
67 stars 38 forks source link

Support for OVF Properties in Vagrantfile at deployment time #73

Closed tsugliani closed 3 years ago

tsugliani commented 10 years ago

Offer the capability to configure specific in guest application using the OVF properties of supported products.

Just thinking out loud a way to configure them:

  # Go through nodes and configure each of them.j
  nodes.each do |node|
    config.vm.define node[:hostname] do |node_config|
      node_config.vm.ovf.hostname = "great.hostname.com"
      node_config.vm.ovf.root_passwd = "amazing-password"
      node_config.vm.ovf.db_passwd = "awesome-password"
      node_config.vm.ovf.ssh_enabled = true
    end
  end
gastoncan commented 8 years ago

I think this enhancement #73 and #82 are related. Both enhancements are very useful, avoiding to create a new box and uploading it (with the minimal property change) to the vCloud catalog. @frapposelli Is vcloud plugin version 0.5.0 planned to be released? Thanks