This is an automated email from the ASF dual-hosted git repository. omartushevskyi pushed a commit to branch DLAB-52 in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git
commit b641d5bbe43e1d3a56ec4b8417ed6b7366d3695f Author: Oleh Martushevskyi <[email protected]> AuthorDate: Mon Mar 11 12:27:39 2019 +0200 fixed issue with removing shared bucket; --- infrastructure-provisioning/src/general/scripts/gcp/edge_configure.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/infrastructure-provisioning/src/general/scripts/gcp/edge_configure.py b/infrastructure-provisioning/src/general/scripts/gcp/edge_configure.py index 7792173..f8a3792 100644 --- a/infrastructure-provisioning/src/general/scripts/gcp/edge_configure.py +++ b/infrastructure-provisioning/src/general/scripts/gcp/edge_configure.py @@ -113,7 +113,6 @@ if __name__ == "__main__": GCPActions().remove_instance(edge_conf['instance_name'], edge_conf['zone']) GCPActions().remove_static_address(edge_conf['static_address_name'], edge_conf['region']) GCPActions().remove_bucket(edge_conf['bucket_name']) - GCPActions().remove_bucket(edge_conf['shared_bucket_name']) GCPActions().remove_firewall(edge_conf['fw_edge_ingress_public']) GCPActions().remove_firewall(edge_conf['fw_edge_ingress_internal']) GCPActions().remove_firewall(edge_conf['fw_edge_egress_public']) @@ -144,7 +143,6 @@ if __name__ == "__main__": GCPActions().remove_instance(edge_conf['instance_name'], edge_conf['zone']) GCPActions().remove_static_address(edge_conf['static_address_name'], edge_conf['region']) GCPActions().remove_bucket(edge_conf['bucket_name']) - GCPActions().remove_bucket(edge_conf['shared_bucket_name']) GCPActions().remove_firewall(edge_conf['fw_edge_ingress_public']) GCPActions().remove_firewall(edge_conf['fw_edge_ingress_internal']) GCPActions().remove_firewall(edge_conf['fw_edge_egress_public']) @@ -184,7 +182,6 @@ if __name__ == "__main__": GCPActions().remove_instance(edge_conf['instance_name'], edge_conf['zone']) GCPActions().remove_static_address(edge_conf['static_address_name'], edge_conf['region']) GCPActions().remove_bucket(edge_conf['bucket_name']) - GCPActions().remove_bucket(edge_conf['shared_bucket_name']) GCPActions().remove_firewall(edge_conf['fw_edge_ingress_public']) GCPActions().remove_firewall(edge_conf['fw_edge_ingress_internal']) GCPActions().remove_firewall(edge_conf['fw_edge_egress_public']) @@ -218,7 +215,6 @@ if __name__ == "__main__": GCPActions().remove_instance(edge_conf['instance_name'], edge_conf['zone']) GCPActions().remove_static_address(edge_conf['static_address_name'], edge_conf['region']) GCPActions().remove_bucket(edge_conf['bucket_name']) - GCPActions().remove_bucket(edge_conf['shared_bucket_name']) GCPActions().remove_firewall(edge_conf['fw_edge_ingress_public']) GCPActions().remove_firewall(edge_conf['fw_edge_ingress_internal']) GCPActions().remove_firewall(edge_conf['fw_edge_egress_public']) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
