blob: f9f674f7db79d406f1e951599a50fb8738ae3399 [file] [log] [blame]
Instrumental0cf3f312018-04-25 16:34: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====================================================
20#
Sai Gandham66118342018-04-04 15:33:05 -050021# Docker push Script. Reads all the components generated by install, on per-version basis
22#
Instrumental12f7f462018-04-23 15:43:47 -050023# Pull in Variables from d.props
24. ./d.props
Instrumental94053612018-10-08 11:27:18 -050025DOCKER=${DOCKER:=docker}
Sai Gandham66118342018-04-04 15:33:05 -050026
Instrumental04c0f752019-01-23 04:49:48 -060027AAF_COMPONENTS="config agent base core cass $(cat components) "
Instrumentale44d2f72018-08-16 17:22:45 -050028
Sai Gandham66118342018-04-04 15:33:05 -050029for AAF_COMPONENT in ${AAF_COMPONENTS}; do
Instrumental04c0f752019-01-23 04:49:48 -060030 # docker push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_AAF_COMPONENT}:${OLD_VERSION}
31 $DOCKER push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_AAF_COMPONENT}:${VERSION}
32 docker tag ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_AAF_COMPONENT}:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_AAF_COMPONENT}:${VERSION}-latest
33 docker tag ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_AAF_COMPONENT}:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_AAF_COMPONENT}:latest
34 $DOCKER push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_AAF_COMPONENT}:${VERSION}-latest
35 $DOCKER push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_AAF_COMPONENT}:latest
Instrumental12f7f462018-04-23 15:43:47 -050036done