This is an automated email from the ASF dual-hosted git repository.
lfrolov pushed a commit to branch DATALAB-2409
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
The following commit(s) were added to refs/heads/DATALAB-2409 by this push:
new f21a66b [DATALAB-2409]: made gcp ssn instance size argument optional
f21a66b is described below
commit f21a66beb63dcca2ed3194a6c56711e34459429f
Author: leonidfrolov <[email protected]>
AuthorDate: Fri Oct 15 16:52:32 2021 +0300
[DATALAB-2409]: made gcp ssn instance size argument optional
---
infrastructure-provisioning/scripts/deploy_datalab.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/infrastructure-provisioning/scripts/deploy_datalab.py
b/infrastructure-provisioning/scripts/deploy_datalab.py
index f0e253b..98278b9 100644
--- a/infrastructure-provisioning/scripts/deploy_datalab.py
+++ b/infrastructure-provisioning/scripts/deploy_datalab.py
@@ -255,12 +255,12 @@ def build_parser():
gcp_parser.add_argument('--gcp_vpc_name', type=str, help='GCP VPC Name')
gcp_parser.add_argument('--gcp_firewall_name', type=str,
help='One of more comma-separated GCP Firewall
rules for SSN')
+ gcp_parser.add_argument('--gcp_ssn_instance_size', type=str,
default='n1-standard-2',
+ help='The SSN instance shape')
gcp_required_args = gcp_parser.add_argument_group('Required arguments')
gcp_required_args.add_argument('--gcp_region', type=str, required=True,
help='GCP region')
gcp_required_args.add_argument('--gcp_zone', type=str, required=True,
help='GCP zone')
- gcp_required_args.add_argument('--gcp_ssn_instance_size', type=str,
required=True, default='n1-standard-2',
- help='The SSN instance shape')
gcp_required_args.add_argument('--gcp_project_id', type=str, required=True,
help='The project ID in Google Cloud
Platform')
gcp_required_args.add_argument('--gcp_service_account_path', type=str,
required=True,
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]