Skip to content

Commit

Permalink
Merge pull request #1201 from grycap/devel
Browse files Browse the repository at this point in the history
Set version 1.10.4
  • Loading branch information
micafer authored Jun 14, 2021
2 parents 58bca72 + 1d7a1fe commit 6dcf1dd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion IM/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
'InfrastructureInfo', 'InfrastructureManager', 'recipe', 'request', 'REST', 'retry',
'ServiceRequests', 'SSH', 'SSHRetry', 'timedcall', 'UnixHTTPAdapter',
'VirtualMachine', 'VMRC', 'xmlobject']
__version__ = '1.10.3'
__version__ = '1.10.4'
__author__ = 'Miguel Caballer'


Expand Down
7 changes: 7 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
Expand Up @@ -643,3 +643,10 @@ IM 1.10.3:
* Fix error in context if IM remote dir is deleted.
* Fix error in OpenStack getting sda as the device of an attached volume.
* Use ansible parted to create partitions in ctxt.

IM 1.10.4:
* Enable to create ephemeral disks in OpenStack conn.
* Fix error setting boot disk size in OpenStack conn.
* Use default installed ssh key to connect with proxy hosts if creds are not provided.
* Add support to proxy_host in TOSCA
* Openstack: deploy OS image in a volume.
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 ubuntu:20.04
ARG BRANCH=devel
LABEL maintainer="Miguel Caballer <[email protected]>"
LABEL version="1.10.3"
LABEL version="1.10.4"
LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)"
EXPOSE 8899 8800

Expand Down
4 changes: 2 additions & 2 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:20.04
LABEL maintainer="Miguel Caballer <[email protected]>"
LABEL version="1.10.3"
LABEL version="1.10.4"
LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)"
EXPOSE 8899 8800

Expand All @@ -15,7 +15,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y python3-setupto
pip3 install pyOpenSSL cheroot xmltodict pymongo ansible==2.9.21&& \
cd /tmp && git clone https://github.com/openstack/tosca-parser && pip3 install /tmp/tosca-parser && \
cd /tmp && git clone https://github.com/apache/libcloud && pip3 install /tmp/libcloud && \
pip3 install IM==1.10.3 && \
pip3 install IM==1.10.4 && \
apt-get purge -y python3-pip git && \
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 6dcf1dd

Please sign in to comment.