From b16d16eca45530ba1c4e63ca9e14277dd5649251 Mon Sep 17 00:00:00 2001 From: Jack Lucas Date: Mon, 16 Apr 2018 22:07:20 +0000 Subject: Add support for HEAT install Issue-ID: DCAEGEN2-416 Change-Id: I7aeb895c6a6f461923b2a67d0ba099e9f7907dfc Signed-off-by: Jack Lucas --- cm-container/Dockerfile-template | 10 ++++++++++ cm-container/pom.xml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/cm-container/Dockerfile-template b/cm-container/Dockerfile-template index cbfca20..2c67d51 100644 --- a/cm-container/Dockerfile-template +++ b/cm-container/Dockerfile-template @@ -33,3 +33,13 @@ RUN scripts/get-type-files.sh ${TYPE_REPO} ${CCSDK_REPO}\ && chown -R cfyuser:cfyuser /opt/manager/resources/spec/cloudify/3.4 # Create mount point for CM config file RUN mkdir -p /opt/onap && chown cfyuser:cfyuser /opt/onap + +# For HEAT environment, install software needed to use Cloudify CLI 4.2 to install plugins & deploy blueprints locally +# Install python development-related packages +RUN yum install -y gcc python-devel python-virtualenv python-pip + +# Set up virtualenv and install Cloudify CLI 4.2 +RUN pip install --upgrade pip==9.0.3 \ + && virtualenv cfy42 \ + && source cfy42/bin/activate \ + && pip install cloudify==4.2 diff --git a/cm-container/pom.xml b/cm-container/pom.xml index fb3dae3..6d7114a 100644 --- a/cm-container/pom.xml +++ b/cm-container/pom.xml @@ -27,7 +27,7 @@ limitations under the License. org.onap.dcaegen2.deployments cm-container dcaegen2-deployments-cm-container - 1.1.0 + 1.2.0 http://maven.apache.org UTF-8 -- cgit 1.2.3-korg