From 307e81e6729fd51fbac332e9bd1f672fd00f7448 Mon Sep 17 00:00:00 2001 From: micafer Date: Fri, 23 Apr 2021 09:51:37 +0200 Subject: [PATCH] Set ver 1.10.2 --- IM/__init__.py | 2 +- changelog | 7 +++++++ docker-devel/Dockerfile | 2 +- docker-py3/Dockerfile | 4 ++-- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/IM/__init__.py b/IM/__init__.py index e92a31ec0..7970f449e 100644 --- a/IM/__init__.py +++ b/IM/__init__.py @@ -19,7 +19,7 @@ 'InfrastructureInfo', 'InfrastructureManager', 'recipe', 'request', 'REST', 'retry', 'ServiceRequests', 'SSH', 'SSHRetry', 'timedcall', 'UnixHTTPAdapter', 'VirtualMachine', 'VMRC', 'xmlobject'] -__version__ = '1.10.1' +__version__ = '1.10.2' __author__ = 'Miguel Caballer' diff --git a/changelog b/changelog index 94d3e3157..6ffcea87a 100644 --- a/changelog +++ b/changelog @@ -627,3 +627,10 @@ IM 1.10.1: * Only show active images in OpenStack and OpenNebula conn. * Enable to request GPUs in TOSCA. * Improve OpenStack flavor selection. + +IM 1.10.2: + * Fix error mapping OpenNebula nets. + * Fix error getting IPv4 IP in OpenStack conn. + * Create EGI connector. + * Implement disk_size TOSCA compute property. + * Add IM_NODE_CLOUD_SERVER variable in ansible variables. diff --git a/docker-devel/Dockerfile b/docker-devel/Dockerfile index 750f3b745..ec6c9c8c0 100644 --- a/docker-devel/Dockerfile +++ b/docker-devel/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:20.04 ARG BRANCH=devel LABEL maintainer="Miguel Caballer " -LABEL version="1.10.1" +LABEL version="1.10.2" LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)" EXPOSE 8899 8800 diff --git a/docker-py3/Dockerfile b/docker-py3/Dockerfile index ad8854c51..972cbc687 100644 --- a/docker-py3/Dockerfile +++ b/docker-py3/Dockerfile @@ -1,7 +1,7 @@ # Dockerfile to create a container with the IM service FROM ubuntu:20.04 LABEL maintainer="Miguel Caballer " -LABEL version="1.10.1" +LABEL version="1.10.2" LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)" EXPOSE 8899 8800 @@ -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.15&& \ 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.1 && \ + pip3 install IM==1.10.2 && \ 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/