blob: 627be95d7eca68073ebdd54d7f9e2fcfad35e7bb [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...
35cd ../auth-cass/docker
Instrumental75587312018-09-25 17:30:46 -050036bash ./dbuild.sh
Instrumental3019a282018-09-25 16:05:20 -050037cd -
38
Instrumental32cdd552018-07-19 13:29:32 -050039# Create the AAF Config (Security) Images
Instrumental9ec28952018-07-12 11:14:10 -050040cd ..
Instrumental9fe11532018-10-23 17:40:47 -050041cp auth-cmd/target/aaf-auth-cmd-$VERSION-full.jar sample/bin
Instrumentalbc299c02018-09-25 06:42:31 -050042cp -Rf ../conf/CA sample
Instrumental32cdd552018-07-19 13:29:32 -050043
44# AAF Config image (for AAF itself)
45sed -e 's/${AAF_VERSION}/'${VERSION}'/g' -e 's/${AAF_COMPONENT}/'${AAF_COMPONENT}'/g' docker/Dockerfile.config > sample/Dockerfile
Instrumental94053612018-10-08 11:27:18 -050046$DOCKER build -t ${ORG}/${PROJECT}/aaf_config:${VERSION} sample
47$DOCKER tag ${ORG}/${PROJECT}/aaf_config:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_config:${VERSION}
48$DOCKER tag ${ORG}/${PROJECT}/aaf_config:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/latest
Instrumental32cdd552018-07-19 13:29:32 -050049
Instrumental93871ff2018-10-15 07:37:28 -050050cp ../cadi/servlet-sample/target/aaf-cadi-servlet-sample-${VERSION}-sample.jar sample/bin
Instrumental32cdd552018-07-19 13:29:32 -050051# AAF Agent Image (for Clients)
52sed -e 's/${AAF_VERSION}/'${VERSION}'/g' -e 's/${AAF_COMPONENT}/'${AAF_COMPONENT}'/g' docker/Dockerfile.client > sample/Dockerfile
Instrumental94053612018-10-08 11:27:18 -050053$DOCKER build -t ${ORG}/${PROJECT}/aaf_agent:${VERSION} sample
54$DOCKER tag ${ORG}/${PROJECT}/aaf_agent:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_agent:${VERSION}
55$DOCKER tag ${ORG}/${PROJECT}/aaf_agent:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_agent:latest
Instrumental32cdd552018-07-19 13:29:32 -050056
57# Clean up
Instrumental9fe11532018-10-23 17:40:47 -050058rm 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 -050059rm -Rf sample/CA
Instrumental9ec28952018-07-12 11:14:10 -050060cd -
Instrumental365638c2018-10-01 15:26:03 -050061
Instrumental32cdd552018-07-19 13:29:32 -050062########
Instrumental9ec28952018-07-12 11:14:10 -050063# Second, build a core Docker Image
64echo Building aaf_$AAF_COMPONENT...
65# Apply currrent Properties to Docker file, and put in place.
Instrumental4ad47632018-07-13 15:49:26 -050066sed -e 's/${AAF_VERSION}/'${VERSION}'/g' -e 's/${AAF_COMPONENT}/'${AAF_COMPONENT}'/g' Dockerfile.core >../aaf_${VERSION}/Dockerfile
Instrumental9ec28952018-07-12 11:14:10 -050067cd ..
Instrumental94053612018-10-08 11:27:18 -050068$DOCKER build -t ${ORG}/${PROJECT}/aaf_core:${VERSION} aaf_${VERSION}
69$DOCKER tag ${ORG}/${PROJECT}/aaf_core:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_core:${VERSION}
70$DOCKER tag ${ORG}/${PROJECT}/aaf_core:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_core:latest
Instrumental9ec28952018-07-12 11:14:10 -050071rm aaf_${VERSION}/Dockerfile
72cd -
Sai Gandham66118342018-04-04 15:33:05 -050073
Instrumental93871ff2018-10-15 07:37:28 -050074#######
75# Do all the Containers related to AAF Services
76#######
Sai Gandham66118342018-04-04 15:33:05 -050077if ["$1" == ""]; then
Instrumental93871ff2018-10-15 07:37:28 -050078 AAF_COMPONENTS=$(ls ../aaf_${VERSION}/bin | grep -v '\.')
Sai Gandham66118342018-04-04 15:33:05 -050079else
Instrumental4ad47632018-07-13 15:49:26 -050080 AAF_COMPONENTS=$1
Sai Gandham66118342018-04-04 15:33:05 -050081fi
82
Instrumental08e93402018-10-03 08:38:52 -050083mkdir -p ../aaf_${VERSION}/pod
84cp ../sample/bin/pod_wait.sh ../aaf_${VERSION}/pod
Sai Gandham66118342018-04-04 15:33:05 -050085for AAF_COMPONENT in ${AAF_COMPONENTS}; do
Instrumental4ad47632018-07-13 15:49:26 -050086 echo Building aaf_$AAF_COMPONENT...
87 sed -e 's/${AAF_VERSION}/'${VERSION}'/g' -e 's/${AAF_COMPONENT}/'${AAF_COMPONENT}'/g' Dockerfile.ms >../aaf_${VERSION}/Dockerfile
88 cd ..
Instrumental94053612018-10-08 11:27:18 -050089 $DOCKER build -t ${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} aaf_${VERSION}
90 $DOCKER tag ${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION}
91 $DOCKER tag ${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:latest
Instrumental4ad47632018-07-13 15:49:26 -050092 rm aaf_${VERSION}/Dockerfile
93 cd -
Instrumental93871ff2018-10-15 07:37:28 -050094
Sai Gandham66118342018-04-04 15:33:05 -050095done
Instrumental08e93402018-10-03 08:38:52 -050096rm ../aaf_${VERSION}/pod/*
97rmdir ../aaf_${VERSION}/pod