Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

Commit

Permalink
Set version 1.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Jun 19, 2018
1 parent 6d19ded commit 54acb05
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 11 deletions.
2 changes: 1 addition & 1 deletion IM/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
'InfrastructureInfo', 'InfrastructureManager', 'recipe', 'request', 'REST', 'retry',
'ServiceRequests', 'SSH', 'SSHRetry', 'timedcall', 'UnixHTTPAdapter', 'uriparse',
'VirtualMachine', 'VMRC', 'xmlobject']
__version__ = '1.7.3'
__version__ = '1.7.4'
__author__ = 'Miguel Caballer'
7 changes: 7 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
Expand Up @@ -422,3 +422,10 @@ IM 1.7.3:
* Improve OpenStack network management.
* Enable to set poolname in the TOSCA docs.
* Error when trying to attach a storage in OCCI (OpenStack sites).

IM 1.7.4:
* Fix error OCCI connector does not correctly AlterVM adding/removing ips.
* Add VERIFI_SSL var.
* Improve error messages in Async call.


2 changes: 1 addition & 1 deletion docker-devel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM grycap/jenkins:ubuntu16.04-im
ARG BRANCH=devel
MAINTAINER Miguel Caballer <[email protected]>
LABEL version="1.7.3"
LABEL version="1.7.4"
LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)"

EXPOSE 8899 8800
Expand Down
12 changes: 5 additions & 7 deletions docker-py3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Dockerfile to create a container with the IM service
FROM ubuntu:16.04
LABEL maintainer="Miguel Caballer <[email protected]>"
LABEL version="1.7.3"
LABEL version="1.7.4"
LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)"
EXPOSE 8899 8800

Expand All @@ -15,15 +15,13 @@ RUN pip3 install pyOpenSSL --upgrade -I
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 && \
pip3 install IM==1.7.3 && \
apt-get remove -y gcc libssl-dev libffi-dev libsqlite3-dev python-dev python-pip && \
RUN apt-get update && apt-get install --no-install-recommends -y gcc git libssl-dev libffi-dev libsqlite3-dev && \
cd /tmp && git clone https://github.com/micafer/libcloud && cd libcloud && pip3 install /tmp/libcloud && \
pip3 install IM==1.7.4 && \
apt-get remove -y gcc git libssl-dev libffi-dev libsqlite3-dev python-dev python-pip && \
apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/*

# Force requests to be version 2.11.1 to avoid SSL ca errors with proxy files
RUN pip3 install requests==2.11.1

# Copy a ansible.cfg with correct minimum values
COPY ansible.cfg /etc/ansible/ansible.cfg

Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Dockerfile to create a container with the IM service
FROM ubuntu:18.04
LABEL maintainer="Miguel Caballer <[email protected]>"
LABEL version="1.7.3"
LABEL version="1.7.4"
LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)"
EXPOSE 8899 8800

Expand All @@ -17,7 +17,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y git gcc libmysq
pip install MySQL-python && \
# Install my version until PR #1215 is accepted
cd /tmp && git clone https://github.com/micafer/libcloud && cd libcloud && pip install /tmp/libcloud && \
pip install IM==1.7.3 && \
pip install IM==1.7.4 && \
apt-get purge -y git gcc libmysqld-dev libssl-dev libffi-dev libsqlite3-dev python-dev python-pip && \
apt-get autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && rm -rf ~/.cache/

Expand Down

0 comments on commit 54acb05

Please sign in to comment.