blob: 924feea073254cbecf35de851dfed923655f0acf [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#
Instrumental924b18d2018-04-05 20:17:18 -050023# Pull in Variables from d.props
Instrumental9ec28952018-07-12 11:14:10 -050024if [ ! -e ./d.props ]; then
Instrumental4ad47632018-07-13 15:49:26 -050025 cp d.props.init d.props
Instrumental9ec28952018-07-12 11:14:10 -050026fi
27
Instrumentalf482ea02018-04-10 15:03:24 -050028. ./d.props
Instrumental9ec28952018-07-12 11:14:10 -050029
Instrumental94053612018-10-08 11:27:18 -050030DOCKER=${DOCKER:=docker}
31
Instrumentalbc299c02018-09-25 06:42:31 -050032echo "Building Containers for aaf components, version $VERSION"
33
Instrumental3019a282018-09-25 16:05:20 -050034# AAF_cass now needs a version...
Instrumental3505a522019-01-31 14:49:24 -060035cd ../auth-cass/docker
36bash ./dbuild.sh
37cd -
Instrumental12414fe2019-01-22 10:27:32 -060038
39# AAF Base version - set the core image, etc
40sed -e 's/${AAF_VERSION}/'${VERSION}'/g' \
41 Dockerfile.base > Dockerfile
42$DOCKER build -t ${ORG}/${PROJECT}/aaf_base:${VERSION} .
43$DOCKER tag ${ORG}/${PROJECT}/aaf_base:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_base:${VERSION}
44$DOCKER tag ${ORG}/${PROJECT}/aaf_base:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_base:latest
45rm Dockerfile
Instrumental3019a282018-09-25 16:05:20 -050046
Instrumental32cdd552018-07-19 13:29:32 -050047# Create the AAF Config (Security) Images
Instrumental9ec28952018-07-12 11:14:10 -050048cd ..
Instrumental9fe11532018-10-23 17:40:47 -050049cp auth-cmd/target/aaf-auth-cmd-$VERSION-full.jar sample/bin
Instrumentalbc299c02018-09-25 06:42:31 -050050cp -Rf ../conf/CA sample
Instrumental32cdd552018-07-19 13:29:32 -050051
Instrumental12414fe2019-01-22 10:27:32 -060052
Instrumental32cdd552018-07-19 13:29:32 -050053# AAF Config image (for AAF itself)
Instrumental12414fe2019-01-22 10:27:32 -060054sed -e 's/${AAF_VERSION}/'${VERSION}'/g' \
55 -e 's/${AAF_COMPONENT}/'${AAF_COMPONENT}'/g' \
56 -e 's/${DOCKER_REPOSITORY}/'${DOCKER_REPOSITORY}'/g' \
57 docker/Dockerfile.config > sample/Dockerfile
Instrumental94053612018-10-08 11:27:18 -050058$DOCKER build -t ${ORG}/${PROJECT}/aaf_config:${VERSION} sample
59$DOCKER tag ${ORG}/${PROJECT}/aaf_config:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_config:${VERSION}
Instrumental3505a522019-01-31 14:49:24 -060060$DOCKER tag ${ORG}/${PROJECT}/aaf_config:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_config:latest
Instrumental32cdd552018-07-19 13:29:32 -050061
Instrumental93871ff2018-10-15 07:37:28 -050062cp ../cadi/servlet-sample/target/aaf-cadi-servlet-sample-${VERSION}-sample.jar sample/bin
Instrumental32cdd552018-07-19 13:29:32 -050063# AAF Agent Image (for Clients)
Instrumental12414fe2019-01-22 10:27:32 -060064sed -e 's/${AAF_VERSION}/'${VERSION}'/g' \
65 -e 's/${AAF_COMPONENT}/'${AAF_COMPONENT}'/g' \
66 -e 's/${DOCKER_REPOSITORY}/'${DOCKER_REPOSITORY}'/g' \
67 docker/Dockerfile.client > sample/Dockerfile
Instrumental94053612018-10-08 11:27:18 -050068$DOCKER build -t ${ORG}/${PROJECT}/aaf_agent:${VERSION} sample
69$DOCKER tag ${ORG}/${PROJECT}/aaf_agent:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_agent:${VERSION}
70$DOCKER tag ${ORG}/${PROJECT}/aaf_agent:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_agent:latest
Instrumental32cdd552018-07-19 13:29:32 -050071
72# Clean up
Instrumental9fe11532018-10-23 17:40:47 -050073rm sample/Dockerfile sample/bin/aaf-auth-cmd-${VERSION}-full.jar sample/bin/aaf-cadi-servlet-sample-${VERSION}-sample.jar
Instrumentalbc299c02018-09-25 06:42:31 -050074rm -Rf sample/CA
Instrumental9ec28952018-07-12 11:14:10 -050075cd -
Instrumental365638c2018-10-01 15:26:03 -050076
Instrumental32cdd552018-07-19 13:29:32 -050077########
Instrumental9ec28952018-07-12 11:14:10 -050078# Second, build a core Docker Image
79echo Building aaf_$AAF_COMPONENT...
80# Apply currrent Properties to Docker file, and put in place.
Instrumental12414fe2019-01-22 10:27:32 -060081sed -e 's/${AAF_VERSION}/'${VERSION}'/g' \
82 -e 's/${AAF_COMPONENT}/'${AAF_COMPONENT}'/g' \
83 -e 's/${DOCKER_REPOSITORY}/'${DOCKER_REPOSITORY}'/g' \
84 Dockerfile.core >../aaf_${VERSION}/Dockerfile
Instrumental9ec28952018-07-12 11:14:10 -050085cd ..
Instrumental94053612018-10-08 11:27:18 -050086$DOCKER build -t ${ORG}/${PROJECT}/aaf_core:${VERSION} aaf_${VERSION}
87$DOCKER tag ${ORG}/${PROJECT}/aaf_core:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_core:${VERSION}
88$DOCKER tag ${ORG}/${PROJECT}/aaf_core:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_core:latest
Instrumental9ec28952018-07-12 11:14:10 -050089rm aaf_${VERSION}/Dockerfile
90cd -
Sai Gandham66118342018-04-04 15:33:05 -050091
Instrumental93871ff2018-10-15 07:37:28 -050092#######
93# Do all the Containers related to AAF Services
94#######
Sai Gandham66118342018-04-04 15:33:05 -050095if ["$1" == ""]; then
Instrumental93871ff2018-10-15 07:37:28 -050096 AAF_COMPONENTS=$(ls ../aaf_${VERSION}/bin | grep -v '\.')
Sai Gandham66118342018-04-04 15:33:05 -050097else
Instrumental4ad47632018-07-13 15:49:26 -050098 AAF_COMPONENTS=$1
Sai Gandham66118342018-04-04 15:33:05 -050099fi
100
Instrumental12414fe2019-01-22 10:27:32 -0600101cp ../sample/bin/pod_wait.sh ../aaf_${VERSION}/bin
Sai Gandham66118342018-04-04 15:33:05 -0500102for AAF_COMPONENT in ${AAF_COMPONENTS}; do
Instrumental4ad47632018-07-13 15:49:26 -0500103 echo Building aaf_$AAF_COMPONENT...
Instrumental12414fe2019-01-22 10:27:32 -0600104 sed -e 's/${AAF_VERSION}/'${VERSION}'/g' \
105 -e 's/${AAF_COMPONENT}/'${AAF_COMPONENT}'/g' \
106 -e 's/${DOCKER_REPOSITORY}/'${DOCKER_REPOSITORY}'/g' \
107 Dockerfile.ms >../aaf_${VERSION}/Dockerfile
Instrumental4ad47632018-07-13 15:49:26 -0500108 cd ..
Instrumental94053612018-10-08 11:27:18 -0500109 $DOCKER build -t ${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} aaf_${VERSION}
110 $DOCKER tag ${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION}
111 $DOCKER tag ${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:latest
Instrumental4ad47632018-07-13 15:49:26 -0500112 rm aaf_${VERSION}/Dockerfile
113 cd -
Instrumental93871ff2018-10-15 07:37:28 -0500114
Sai Gandham66118342018-04-04 15:33:05 -0500115done
Instrumental12414fe2019-01-22 10:27:32 -0600116rm ../aaf_${VERSION}/bin/pod_wait.sh