chef-boneyard / chef-provisioning-vsphere

DEPRECATED: A chef-provisioning provisioner for VMware vSphere
MIT License
17 stars 15 forks source link

Have an additional_datastore option to go with additional_disk_size_gb? #66

Open vchung-nz opened 7 years ago

vchung-nz commented 7 years ago

Since there is an additional_disk_size_gb bootstrap option, does it make sense to have an optional additional_datastore option as well? eg for VM with additional disks on higher storage tier.

Something like:

with_machine_options :bootstrap_options => {
  ...
  additional_datastore: ["tier_one_ds", "tier_two_ds"],
  additional_disk_size_gb: [50,20],
  ...

If undefined, then the behaviour is unchanged: requires datastore to be defined instead.