Repository: libcloud Updated Branches: refs/heads/trunk ec8ab7452 -> 3e14f05a1
[google compute] Bug fix for ex_create_multiple_nodes Google Cloud disk auto delete properties Closes #955 Signed-off-by: Eric Johnson <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/3e14f05a Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/3e14f05a Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/3e14f05a Branch: refs/heads/trunk Commit: 3e14f05a13aa56fd2a2980825711a3a60a9d4964 Parents: ec8ab74 Author: John Baublitz <[email protected]> Authored: Mon Nov 28 15:53:21 2016 -0500 Committer: Eric Johnson <[email protected]> Committed: Sat Dec 24 12:19:39 2016 +0000 ---------------------------------------------------------------------- CHANGES.rst | 4 ++++ libcloud/compute/drivers/gce.py | 1 + 2 files changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/3e14f05a/CHANGES.rst ---------------------------------------------------------------------- diff --git a/CHANGES.rst b/CHANGES.rst index b12e2bf..25b2569 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -10,6 +10,10 @@ Compute - Added new CloudScale.ch driver +- [google compute] Bug fix for ex_create_multiple_nodes Google Cloud disk auto delete + (GITHUB-955) + [John Baublitz] + - [google compute] Add "MULTI_IP_SUBNET" guestOsFeatures option. (GITHUB-956) [Max Illfelder] http://git-wip-us.apache.org/repos/asf/libcloud/blob/3e14f05a/libcloud/compute/drivers/gce.py ---------------------------------------------------------------------- diff --git a/libcloud/compute/drivers/gce.py b/libcloud/compute/drivers/gce.py index 4d5fbb8..9412c0e 100644 --- a/libcloud/compute/drivers/gce.py +++ b/libcloud/compute/drivers/gce.py @@ -7634,6 +7634,7 @@ class GCENodeDriver(NodeDriver): ex_service_accounts=node_attrs['ex_service_accounts'], description=node_attrs['description'], ex_can_ip_forward=node_attrs['ex_can_ip_forward'], + ex_disk_auto_delete=node_attrs['ex_disk_auto_delete'], ex_disks_gce_struct=node_attrs['ex_disks_gce_struct'], ex_nic_gce_struct=node_attrs['ex_nic_gce_struct'], ex_on_host_maintenance=node_attrs['ex_on_host_maintenance'],
