This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DATALAB-2091 in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit 6641361c607868dc8cd30ac5793be185a9cbbea5 Author: leonidfrolov <[email protected]> AuthorDate: Wed May 5 17:39:00 2021 +0300 [DATALAB-2386]: added repository parameters in deploy datalab --- infrastructure-provisioning/scripts/deploy_datalab.py | 6 ++++++ infrastructure-provisioning/src/general/conf/datalab.ini | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/infrastructure-provisioning/scripts/deploy_datalab.py b/infrastructure-provisioning/scripts/deploy_datalab.py index d1096d4..1ea825f 100644 --- a/infrastructure-provisioning/scripts/deploy_datalab.py +++ b/infrastructure-provisioning/scripts/deploy_datalab.py @@ -159,6 +159,12 @@ parser.add_argument('--conf_stepcerts_kid_password', type=str, default='', help= parser.add_argument('--conf_stepcerts_ca_url', type=str, default='', help='Step CA URL') parser.add_argument('--conf_letsencrypt_enabled', type=str, default='false', help='Enable or disable Let`s Encrypt certificates') +parser.add_argument('--conf_repository_user', type=str, default='', + help='user to access repository (used for jars download)') +parser.add_argument('--conf_repository_pass', type=str, default='', + help='password to access repository (used for jars download)') +parser.add_argument('--conf_repository_address', type=str, default='', + help='address to access repository (used for jars download)') parser.add_argument('--conf_letsencrypt_domain_name', type=str, default='', help='Domain names to apply. ' 'For multiple domains enter a comma separated list of domains as a parameter' 'ssn.domain_name will be used for ssn_node, DNS A record have to exist during deployment') diff --git a/infrastructure-provisioning/src/general/conf/datalab.ini b/infrastructure-provisioning/src/general/conf/datalab.ini index 085561c..334a618 100644 --- a/infrastructure-provisioning/src/general/conf/datalab.ini +++ b/infrastructure-provisioning/src/general/conf/datalab.ini @@ -86,11 +86,11 @@ letsencrypt_enabled = false ### Prefix of the private subnet private_subnet_prefix = 24 ### Repository user -repository_user = +# repository_user = ### Repository password -repository_pass = +# repository_pass = ### Repository url -repository_address = +# repository_address = ### Deeplearning native cloud AMI enabled deeplearning_cloud_ami = true --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
