From 755dca0ba21856f8ec1e15b0b693d0f9b58448c0 Mon Sep 17 00:00:00 2001 From: micafer Date: Tue, 22 May 2018 12:30:05 +0200 Subject: [PATCH] Add new Azure depedency --- README.md | 2 +- ansible_install.yaml | 2 +- doc/source/manual.rst | 2 +- docker-py3/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index bb5e173f9..b1d612ea2 100644 --- a/README.md +++ b/README.md @@ -168,7 +168,7 @@ $ yum localinstall IM-*.rpm RADL-*.rpm Azure python SDK is not available in CentOS. So if you need the Azure plugin you have to manually install them using pip: ```sh -$ pip install msrest msrestazure azure-common azure-mgmt-storage azure-mgmt-compute azure-mgmt-network azure-mgmt-resource azure-mgmt-dns +$ pip install msrest msrestazure azure-common azure-mgmt-storage azure-mgmt-compute azure-mgmt-network azure-mgmt-resource azure-mgmt-dns azure-storage ``` #### 1.3.4 From Deb package (Tested with Ubuntu 14.04 and 16.04) diff --git a/ansible_install.yaml b/ansible_install.yaml index b98d1cde6..04b8f81e9 100644 --- a/ansible_install.yaml +++ b/ansible_install.yaml @@ -76,7 +76,7 @@ ignore_errors: yes - name: Install pip libraries - pip: executable=pip name=pyOpenSSL,MySQL-python,msrest,msrestazure,azure-common,azure-mgmt-storage,azure-mgmt-compute,azure-mgmt-network,azure-mgmt-resource,azure-mgmt-dns + pip: executable=pip name=pyOpenSSL,MySQL-python,msrest,msrestazure,azure-common,azure-mgmt-storage,azure-mgmt-compute,azure-mgmt-network,azure-mgmt-resource,azure-mgmt-dns,azure-storage - name: Install IM dependencies for CentOS 6 pip: name=pysqlite version=2.7.0 diff --git a/doc/source/manual.rst b/doc/source/manual.rst index 795f80290..226236f34 100644 --- a/doc/source/manual.rst +++ b/doc/source/manual.rst @@ -125,7 +125,7 @@ Then install the downloaded RPMs:: Azure python SDK is not available in CentOS. So if you need the Azure plugin you have to manually install them using pip:: - $ pip install msrest msrestazure azure-common azure-mgmt-storage azure-mgmt-compute azure-mgmt-network azure-mgmt-resource azure-mgmt-dns + $ pip install msrest msrestazure azure-common azure-mgmt-storage azure-mgmt-compute azure-mgmt-network azure-mgmt-resource azure-mgmt-dns azure-storage From Deb package (Tested with Ubuntu 14.04 and 16.04) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/docker-py3/Dockerfile b/docker-py3/Dockerfile index abf889cad..7f0a6627d 100644 --- a/docker-py3/Dockerfile +++ b/docker-py3/Dockerfile @@ -12,7 +12,7 @@ RUN pip3 install setuptools pip --upgrade -I RUN pip3 install pyOpenSSL --upgrade -I # Install pip optional libraries -RUN pip3 install msrest msrestazure azure-common azure-mgmt-storage azure-mgmt-compute azure-mgmt-network azure-mgmt-resource azure-mgmt-dns cheroot xmltodict +RUN pip3 install msrest msrestazure azure-common azure-mgmt-storage azure-mgmt-compute azure-mgmt-network azure-mgmt-resource azure-mgmt-dns azure-storage cheroot xmltodict # Install IM RUN apt-get update && apt-get install --no-install-recommends -y gcc libssl-dev libffi-dev libsqlite3-dev && \