This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DATALAB-2386 in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit 69d4c5c49cc0f1fa8835b6b0677dbf4424ced673 Author: leonidfrolov <[email protected]> AuthorDate: Wed May 5 17:39:00 2021 +0300 [DATALAB-2386]: added repository arguments --- infrastructure-provisioning/scripts/deploy_datalab.py | 6 ++++++ infrastructure-provisioning/src/general/conf/datalab.ini | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/infrastructure-provisioning/scripts/deploy_datalab.py b/infrastructure-provisioning/scripts/deploy_datalab.py index 530f19b..883663c 100644 --- a/infrastructure-provisioning/scripts/deploy_datalab.py +++ b/infrastructure-provisioning/scripts/deploy_datalab.py @@ -157,6 +157,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 8cd67a8..979ea5a 100644 --- a/infrastructure-provisioning/src/general/conf/datalab.ini +++ b/infrastructure-provisioning/src/general/conf/datalab.ini @@ -87,6 +87,12 @@ letsencrypt_enabled = false private_subnet_prefix = 24 ### Range of subnets defined by user # user_subnets_range = 172.31.0.0/24 - 172.31.50.0/24 +### Repository user +# repository_user = +### Repository password +# repository_pass = +### Repository url +# repository_address = #--- [aws] section contains all common parameters related to Amazon ---# [aws] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
