diff options
Diffstat (limited to 'k8s-bootstrap-container')
-rw-r--r-- | k8s-bootstrap-container/Dockerfile-template | 2 | ||||
-rwxr-xr-x | k8s-bootstrap-container/bootstrap.sh | 4 | ||||
-rw-r--r-- | k8s-bootstrap-container/pom.xml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/k8s-bootstrap-container/Dockerfile-template b/k8s-bootstrap-container/Dockerfile-template index 55e64f0..9f95eb8 100644 --- a/k8s-bootstrap-container/Dockerfile-template +++ b/k8s-bootstrap-container/Dockerfile-template @@ -41,7 +41,7 @@ COPY 00-consul.json /opt/consul/config/ RUN curl -Ss -L "https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64" > /bin/jq \ && chmod +x /bin/jq -# Install pip +# Install pip and Cloudify CLI (stay at version 4.2 because of changes in higher versions) RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \ && python get-pip.py \ && rm get-pip.py \ diff --git a/k8s-bootstrap-container/bootstrap.sh b/k8s-bootstrap-container/bootstrap.sh index fb092ce..2fe0cac 100755 --- a/k8s-bootstrap-container/bootstrap.sh +++ b/k8s-bootstrap-container/bootstrap.sh @@ -195,8 +195,9 @@ do install_plugin ${wagon} done +# After this point, failures should not stop the script or block later commands +trap - ERR set +e -# (Don't let failure of one stop the script. This is likely due to image pull taking too long.) # Deploy platform components # Allow for some parallelism to speed up the process. Probably could be somewhat more aggressive. @@ -223,7 +224,6 @@ deploy prh k8s-prh.yaml & # holmes_rules must be deployed before holmes_engine, but holmes_rules can go in parallel with other service components deploy holmes_rules k8s-holmes-rules.yaml k8s-holmes_rules-inputs.yaml deploy holmes_engine k8s-holmes-engine.yaml k8s-holmes_engine-inputs.yaml -set -e # Display deployments, for debugging purposes cfy deployments list diff --git a/k8s-bootstrap-container/pom.xml b/k8s-bootstrap-container/pom.xml index 33b58ae..066a71d 100644 --- a/k8s-bootstrap-container/pom.xml +++ b/k8s-bootstrap-container/pom.xml @@ -27,7 +27,7 @@ limitations under the License. <groupId>org.onap.dcaegen2.deployments</groupId> <artifactId>k8s-bootstrap-container</artifactId> <name>dcaegen2-deployments-k8s-bootstrap-container</name> - <version>1.4.0</version> + <version>1.4.1</version> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |