You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datalab.apache.org by lf...@apache.org on 2021/10/13 11:22:29 UTC

[incubator-datalab] branch DATALAB-2409 updated: [DATALAB-2409]: moved azure_ssn_instance_size argument to optional as it has default value

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 aee7cc9  [DATALAB-2409]: moved azure_ssn_instance_size argument to optional as it has default value
aee7cc9 is described below

commit aee7cc90721ccb9af6a73c89e6aef23c85b61d1e
Author: leonidfrolov <fr...@gmail.com>
AuthorDate: Wed Oct 13 14:22:20 2021 +0300

    [DATALAB-2409]: moved azure_ssn_instance_size argument to optional as it has default value
---
 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 bc06569..f0e253b 100644
--- a/infrastructure-provisioning/scripts/deploy_datalab.py
+++ b/infrastructure-provisioning/scripts/deploy_datalab.py
@@ -239,11 +239,11 @@ def build_parser():
     azure_parser.add_argument('--azure_region_info', type=str, help='Azure region info')
     azure_parser.add_argument('--azure_source_vpc_name', type=str, help='Azure VPC source Name')
     azure_parser.add_argument('--azure_source_resource_group_name', type=str, help='Azure source resource group')
+    azure_parser.add_argument('--azure_ssn_instance_size', type=str, default='Standard_DS2_v2',
+                                     help='The SSN instance shape')
 
     azure_required_args = azure_parser.add_argument_group('Required arguments')
     azure_required_args.add_argument('--azure_region', type=str, required=True, help='Azure region')
-    azure_required_args.add_argument('--azure_ssn_instance_size', type=str, default='Standard_DS2_v2', required=True,
-                                     help='The SSN instance shape')
     azure_required_args.add_argument('--azure_auth_path', type=str, required=True,
                                      help='Full path to Azure credentials JSON file')
 

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datalab.apache.org
For additional commands, e-mail: commits-help@datalab.apache.org