0.18.0
New in this release:
Bug Fixes
- Fixes a bug where providing the
--help
flag for a command that also requires the--target
flag would produce an error. - Fixes
ignore_warnings
so that it is now a quoted string instead of a json bool - Fixes #41 so you can now re-attach to a running deletion
New Features
- Highly Experimental support for configuring Openstack environments
- Allows for bosh configuration of AWS networks
Provided the ability for an operator to configure their bosh director.
The syntax below is now supported for --resource-configuration
when calling the configure-bosh
command:
{
"director": {
"instance_type": {
"id": "m1.medium"
},
"persistent_disk": {
"size_mb": "20480"
},
"internet_connected": true,
"elb_names": ["my-elb"]
},
"compilation": {
"instances": 1,
"instance_type": {
"id": "m1.medium"
},
"internet_connected": true,
"elb_names": ["my-elb"]
}
}
Breaking Changes
We have slightly tweaked the format required for passing network configuration to om
this was done to accommodate the way AWS networks work. The iaas_identifier
now resides within the subnet object like so:
"subnets": [
{
"iaas_identifier": "vpc-subnet-id-2",
"cidr": "10.0.4.0/22",
"reserved_ip_ranges": "10.0.4.0-10.0.4.4",
"dns": "8.8.8.8",
}
]
The documentation has been updated to reflect this.