blob: 1b4e5eee8eb51298469baad22f32b07f18313550 [file] [log] [blame]
Instrumental4ad47632018-07-13 15:49:26 -05001#!/bin/bash
Instrumental7a1817b2018-11-05 11:11:15 -06002#########
3# ============LICENSE_START====================================================
4# org.onap.aaf
5# ===========================================================================
6# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
7# ===========================================================================
8# Licensed under the Apache License, Version 2.0 (the "License");
9# you may not use this file except in compliance with the License.
10# You may obtain a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS,
16# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17# See the License for the specific language governing permissions and
18# limitations under the License.
19# ============LICENSE_END====================================================
Sai Gandham66118342018-04-04 15:33:05 -050020#
21# Docker Building Script. Reads all the components generated by install, on per-version basis
22#
sandovalfrd6bda192019-03-21 14:21:09 -060023
Instrumentalaae5c072019-03-29 15:42:37 -050024# Pull in Variables from d.props
25if [ ! -e ./d.props ]; then
26 cp d.props.init d.props
27fi
28
29. ./d.props
30
sandovalfrd6bda192019-03-21 14:21:09 -060031AAF_COMPONENTS=ALL
32
33# process input. originally, an optional positional parameter is used to designate a component.
34# A flagged parameter has been added to optionally indicate docker pull registry. Ideally, options
35# would be flagged but we're avoiding ripple effect of changing original usage
36if [ $# -gt 0 ]; then
37 if [ "$1" == "-r" ]; then
38 DOCKER_PULL_REGISTRY=$2
39 else
40 AAF_COMPONENTS=$1
41 if [[ $# -gt 1 && $2 == "-r" ]]; then
42 # If docker.io is indicated, registry var is void as that is docker default
43 if [ $3 == "docker.io" ]; then
44 DOCKER_PULL_REGISTRY=''
45 else
46 DOCKER_PULL_REGISTRY=$3
47 fi
48 fi
49 fi
50fi
51
52echo "$0: AAF_COMPONENTS=$AAF_COMPONENTS DOCKER_PULL_REGISTRY=$DOCKER_PULL_REGISTRY"
53
Instrumental94053612018-10-08 11:27:18 -050054DOCKER=${DOCKER:=docker}
55
Instrumentalbc299c02018-09-25 06:42:31 -050056echo "Building Containers for aaf components, version $VERSION"
57
Instrumental3019a282018-09-25 16:05:20 -050058# AAF_cass now needs a version...
Instrumental3505a522019-01-31 14:49:24 -060059cd ../auth-cass/docker
sandovalfrd6bda192019-03-21 14:21:09 -060060bash ./dbuild.sh $DOCKER_PULL_REGISTRY
Instrumental3505a522019-01-31 14:49:24 -060061cd -
Instrumental12414fe2019-01-22 10:27:32 -060062
63# AAF Base version - set the core image, etc
64sed -e 's/${AAF_VERSION}/'${VERSION}'/g' \
Instrumental628b7102019-02-15 19:40:04 -060065 -e 's/${DUSER}/'${DUSER}'/g' \
sandovalfrd6bda192019-03-21 14:21:09 -060066 -e 's/${REGISTRY}/'${DOCKER_PULL_REGISTRY}'/g' \
Instrumental12414fe2019-01-22 10:27:32 -060067 Dockerfile.base > Dockerfile
68$DOCKER build -t ${ORG}/${PROJECT}/aaf_base:${VERSION} .
69$DOCKER tag ${ORG}/${PROJECT}/aaf_base:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_base:${VERSION}
70$DOCKER tag ${ORG}/${PROJECT}/aaf_base:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_base:latest
71rm Dockerfile
Instrumental3019a282018-09-25 16:05:20 -050072
Instrumental32cdd552018-07-19 13:29:32 -050073# Create the AAF Config (Security) Images
Instrumental9ec28952018-07-12 11:14:10 -050074cd ..
Instrumental9fe11532018-10-23 17:40:47 -050075cp auth-cmd/target/aaf-auth-cmd-$VERSION-full.jar sample/bin
Instrumentale2fa0e62019-02-07 11:09:32 -060076cp auth-batch/target/aaf-auth-batch-$VERSION-full.jar sample/bin
Instrumentalbc299c02018-09-25 06:42:31 -050077cp -Rf ../conf/CA sample
Instrumental32cdd552018-07-19 13:29:32 -050078
79# AAF Config image (for AAF itself)
Instrumental12414fe2019-01-22 10:27:32 -060080sed -e 's/${AAF_VERSION}/'${VERSION}'/g' \
81 -e 's/${AAF_COMPONENT}/'${AAF_COMPONENT}'/g' \
82 -e 's/${DOCKER_REPOSITORY}/'${DOCKER_REPOSITORY}'/g' \
Instrumental628b7102019-02-15 19:40:04 -060083 -e 's/${DUSER}/'${DUSER}'/g' \
Instrumental12414fe2019-01-22 10:27:32 -060084 docker/Dockerfile.config > sample/Dockerfile
Instrumental94053612018-10-08 11:27:18 -050085$DOCKER build -t ${ORG}/${PROJECT}/aaf_config:${VERSION} sample
86$DOCKER tag ${ORG}/${PROJECT}/aaf_config:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_config:${VERSION}
Instrumental3505a522019-01-31 14:49:24 -060087$DOCKER tag ${ORG}/${PROJECT}/aaf_config:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_config:latest
Instrumental32cdd552018-07-19 13:29:32 -050088
Instrumental93871ff2018-10-15 07:37:28 -050089cp ../cadi/servlet-sample/target/aaf-cadi-servlet-sample-${VERSION}-sample.jar sample/bin
Instrumental32cdd552018-07-19 13:29:32 -050090# AAF Agent Image (for Clients)
Instrumental12414fe2019-01-22 10:27:32 -060091sed -e 's/${AAF_VERSION}/'${VERSION}'/g' \
92 -e 's/${AAF_COMPONENT}/'${AAF_COMPONENT}'/g' \
93 -e 's/${DOCKER_REPOSITORY}/'${DOCKER_REPOSITORY}'/g' \
Instrumental628b7102019-02-15 19:40:04 -060094 -e 's/${DUSER}/'${DUSER}'/g' \
Instrumentalbd7def72019-04-03 08:25:28 -050095 docker/Dockerfile.agent > sample/Dockerfile
Instrumental94053612018-10-08 11:27:18 -050096$DOCKER build -t ${ORG}/${PROJECT}/aaf_agent:${VERSION} sample
97$DOCKER tag ${ORG}/${PROJECT}/aaf_agent:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_agent:${VERSION}
98$DOCKER tag ${ORG}/${PROJECT}/aaf_agent:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_agent:latest
Instrumental32cdd552018-07-19 13:29:32 -050099
100# Clean up
Instrumentale2fa0e62019-02-07 11:09:32 -0600101rm sample/Dockerfile sample/bin/aaf-*-${VERSION}-full.jar sample/bin/aaf-cadi-servlet-sample-${VERSION}-sample.jar
Instrumentalbc299c02018-09-25 06:42:31 -0500102rm -Rf sample/CA
Instrumental9ec28952018-07-12 11:14:10 -0500103cd -
Instrumental365638c2018-10-01 15:26:03 -0500104
Instrumental32cdd552018-07-19 13:29:32 -0500105########
Instrumental9ec28952018-07-12 11:14:10 -0500106# Second, build a core Docker Image
107echo Building aaf_$AAF_COMPONENT...
108# Apply currrent Properties to Docker file, and put in place.
Instrumental12414fe2019-01-22 10:27:32 -0600109sed -e 's/${AAF_VERSION}/'${VERSION}'/g' \
110 -e 's/${AAF_COMPONENT}/'${AAF_COMPONENT}'/g' \
111 -e 's/${DOCKER_REPOSITORY}/'${DOCKER_REPOSITORY}'/g' \
Instrumental628b7102019-02-15 19:40:04 -0600112 -e 's/${DUSER}/'${DUSER}'/g' \
Instrumental12414fe2019-01-22 10:27:32 -0600113 Dockerfile.core >../aaf_${VERSION}/Dockerfile
Instrumental9ec28952018-07-12 11:14:10 -0500114cd ..
Instrumentalbd7def72019-04-03 08:25:28 -0500115echo "#######"
116pwd
117echo "#######"
Instrumental94053612018-10-08 11:27:18 -0500118$DOCKER build -t ${ORG}/${PROJECT}/aaf_core:${VERSION} aaf_${VERSION}
119$DOCKER tag ${ORG}/${PROJECT}/aaf_core:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_core:${VERSION}
120$DOCKER tag ${ORG}/${PROJECT}/aaf_core:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_core:latest
Instrumental9ec28952018-07-12 11:14:10 -0500121rm aaf_${VERSION}/Dockerfile
122cd -
Sai Gandham66118342018-04-04 15:33:05 -0500123
Instrumental93871ff2018-10-15 07:37:28 -0500124#######
125# Do all the Containers related to AAF Services
126#######
sandovalfrd6bda192019-03-21 14:21:09 -0600127if [ $AAF_COMPONENTS == "ALL" ]; then
Instrumentalbd7def72019-04-03 08:25:28 -0500128 AAF_COMPONENTS=$(cat components)
Sai Gandham66118342018-04-04 15:33:05 -0500129fi
130
Instrumental12414fe2019-01-22 10:27:32 -0600131cp ../sample/bin/pod_wait.sh ../aaf_${VERSION}/bin
Sai Gandham66118342018-04-04 15:33:05 -0500132for AAF_COMPONENT in ${AAF_COMPONENTS}; do
Instrumental4ad47632018-07-13 15:49:26 -0500133 echo Building aaf_$AAF_COMPONENT...
Instrumentalbd7def72019-04-03 08:25:28 -0500134 if [ "hello" = "${AAF_COMPONENT}" ]; then
135 echo Building Hello separately
136 DF="Dockerfile.hello"
137 cp -Rf ../sample/etc ../aaf_${VERSION}/etc
138 else
139 DF="Dockerfile.ms"
140 fi
Instrumental12414fe2019-01-22 10:27:32 -0600141 sed -e 's/${AAF_VERSION}/'${VERSION}'/g' \
142 -e 's/${AAF_COMPONENT}/'${AAF_COMPONENT}'/g' \
143 -e 's/${DOCKER_REPOSITORY}/'${DOCKER_REPOSITORY}'/g' \
Instrumental628b7102019-02-15 19:40:04 -0600144 -e 's/${DUSER}/'${DUSER}'/g' \
Instrumentalbd7def72019-04-03 08:25:28 -0500145 $DF >../aaf_${VERSION}/Dockerfile
Instrumental4ad47632018-07-13 15:49:26 -0500146 cd ..
Instrumental94053612018-10-08 11:27:18 -0500147 $DOCKER build -t ${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} aaf_${VERSION}
148 $DOCKER tag ${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION}
149 $DOCKER tag ${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:latest
Instrumental4ad47632018-07-13 15:49:26 -0500150 rm aaf_${VERSION}/Dockerfile
Instrumentalbd7def72019-04-03 08:25:28 -0500151 if [ -e aaf_${VERSION}/etc ]; then
152 rm -Rf aaf_${VERSION}/etc
153 fi
Instrumental4ad47632018-07-13 15:49:26 -0500154 cd -
Sai Gandham66118342018-04-04 15:33:05 -0500155done
Instrumentalbd7def72019-04-03 08:25:28 -0500156
157# Final cleanup
Instrumental12414fe2019-01-22 10:27:32 -0600158rm ../aaf_${VERSION}/bin/pod_wait.sh