This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DATALAB-1408 in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit 488e44555221f243a57f335dde8a35ab6568a82d Author: owlleg6 <[email protected]> AuthorDate: Thu May 19 12:15:20 2022 +0300 added hdinsight lib to reqs --- infrastructure-provisioning/src/base/scripts/install_prerequisites.py | 2 +- infrastructure-provisioning/src/general/files/azure/base_Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure-provisioning/src/base/scripts/install_prerequisites.py b/infrastructure-provisioning/src/base/scripts/install_prerequisites.py index 06135eeff..8150affab 100644 --- a/infrastructure-provisioning/src/base/scripts/install_prerequisites.py +++ b/infrastructure-provisioning/src/base/scripts/install_prerequisites.py @@ -39,7 +39,7 @@ parser.add_argument('--pip_packages', type=str, default='boto3 argparse fabric awscli google-api-python-client google-auth-httplib2 ' 'google-cloud-storage pycryptodome azure-storage-blob azure-datalake-store ' 'azure-mgmt-compute azure-mgmt-network azure-mgmt-resource azure-mgmt-storage ' - 'azure-mgmt-datalake-store azure-identity') + 'azure-mgmt-datalake-store azure-identity azure-mgmt-hdinsight') parser.add_argument('--additional_config', type=str, default='{"empty":"string"}') parser.add_argument('--user', type=str, default='') parser.add_argument('--edge_private_ip', type=str, default='') diff --git a/infrastructure-provisioning/src/general/files/azure/base_Dockerfile b/infrastructure-provisioning/src/general/files/azure/base_Dockerfile index 7c016ae1b..7653d7dbd 100644 --- a/infrastructure-provisioning/src/general/files/azure/base_Dockerfile +++ b/infrastructure-provisioning/src/general/files/azure/base_Dockerfile @@ -33,7 +33,7 @@ RUN apt-get update && \ RUN python3 -m pip install -UI qtconsole==5.1.1 pip==21.1.2 && \ python3 -m pip install backoff patchwork fabric fabvenv argparse requests ujson jupyter pycryptodome azure-common pyyaml && \ python3 -m pip install azure-mgmt-storage azure-mgmt-compute azure-mgmt-core azure-mgmt-network azure-storage-blob azure-mgmt-resource && \ - python3 -m pip install azure-storage-file-datalake azure-datalake-store azure-identity azure-mgmt-datalake-store + python3 -m pip install azure-storage-file-datalake azure-datalake-store azure-identity azure-mgmt-datalake-store azure-mgmt-hdinsight # Configuring ssh for user RUN mkdir -p /root/.ssh; echo "Host *" > /root/.ssh/config; \ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
