Merge "Adding missing tests"
[vfc/nfvo/driver/vnfm/svnfm.git] / nokiav2 / deployment / src / main / resources / build_image.sh
1 #!/bin/bash
2 #
3 # Copyright 2017, Nokia Corporation
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17
18 if [ "a$1" != "abuildDocker" ] ; then
19   echo "Skipping building Docker image"
20   echo "If you would like to build the docker image by script execute $0 buildDocker" 
21   echo "If you would like to build and push the docker image by script execute $0 buildDocker pushImage" 
22   echo "If you would like to build the docker image by maven execute mvn package -Dexec.args=\"buildDocker\"" 
23   echo "If you would like to push the docker image by maven execute mvn package -Dexec.args=\"buildDocker pushImage\""
24   exit
25 fi 
26
27 DIRNAME=`dirname $0`
28 DOCKER_BUILD_DIR=`cd $DIRNAME/; pwd`
29 echo "----- Build directory ${DOCKER_BUILD_DIR}"
30 cd ${DOCKER_BUILD_DIR}
31
32 VERSION=`xmlstarlet sel -t -v "/_:project/_:version" ../../../pom.xml | sed 's/-SNAPSHOT//g'`
33 echo "------ Detected version: $VERSION"
34
35 PROJECT="vfc"
36 IMAGE="nfvo/svnfm/nokiav2"
37 DOCKER_REPOSITORY="nexus3.onap.org:10003"
38 ORG="onap"
39 BUILD_ARGS="--no-cache --squash"
40 IMAGE_NAME="${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/${IMAGE}"
41 TIMESTAMP=$(date +"%Y%m%dT%H%M%S")
42
43 if [ $HTTP_PROXY ]; then
44     echo "----- Using HTTP proxy ${HTTP_PROXY}"
45     BUILD_ARGS+=" --build-arg HTTP_PROXY=${HTTP_PROXY}"
46 fi
47
48 if [ $HTTPS_PROXY ]; then
49     echo "----- Using HTTPS proxy ${HTTPS_PROXY}"
50     BUILD_ARGS+=" --build-arg HTTPS_PROXY=${HTTPS_PROXY}"
51 fi
52
53 function build_image {
54     echo "Start build docker image: ${IMAGE_NAME}"
55     echo "docker build --build-arg VERSION=${VERSION} ${BUILD_ARGS} -t ${IMAGE_NAME}:latest ."
56     docker build --build-arg VERSION=${VERSION} ${BUILD_ARGS} -t ${IMAGE_NAME}:latest .
57 }
58
59 function push_image_tag {
60     TAG_NAME=$1
61     echo "Start push ${TAG_NAME}"
62     docker tag ${IMAGE_NAME}:latest ${TAG_NAME}
63     docker push ${TAG_NAME}
64 }
65
66 function push_image {
67     echo "Start push ${IMAGE_NAME}:latest"
68     docker push ${IMAGE_NAME}:latest
69     
70     push_image_tag ${IMAGE_NAME}:${VERSION}-SNAPSHOT-latest
71     push_image_tag ${IMAGE_NAME}:${VERSION}-STAGING-latest
72     push_image_tag ${IMAGE_NAME}:${VERSION}-STAGING-${TIMESTAMP}
73 }
74
75 build_image
76
77 if [ "a$2" != "apushImage" ]; then
78    echo "Skipping image pushing"
79    echo "If you would like to push the docker image by maven execute mvn package -Dexec.args=\"buildDocker pushImage\""
80 else
81    echo "Pushing image"
82    push_image
83 fi