blob: 50113b9176ee56a180fb056c1785be501d55d9fc [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
Instrumental5b77b642019-07-17 11:50:16 -050027AAF_COMPONENTS="config agent base core cass hello "
Instrumentale44d2f72018-08-16 17:22:45 -050028
Sai Gandham66118342018-04-04 15:33:05 -050029for AAF_COMPONENT in ${AAF_COMPONENTS}; do
Instrumentaldae1cfc2019-01-23 06:02:29 -060030 # docker push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${OLD_VERSION}
31 $DOCKER push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION}
Gathman, Jonathan (jg1555)5b29af92019-05-03 08:43:23 -050032 $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
Instrumental6c74e832019-05-03 09:57:40 -050034 $DOCKER tag ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION} ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION%-SNAPSHOT}-STAGING-latest
Gathman, Jonathan (jg1555)5b29af92019-05-03 08:43:23 -050035 $DOCKER push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION}-latest
36 $DOCKER push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:latest
Instrumental6c74e832019-05-03 09:57:40 -050037 $DOCKER push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION%-SNAPSHOT}-STAGING-latest
Instrumental12f7f462018-04-23 15:43:47 -050038done