blob: f793315b8d7862c01d9764a85d069f5047a175da [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
Instrumental716a9342018-10-01 17:52:18 -050027AAF_COMPONENTS="config agent 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
Instrumental567a9632018-08-14 13:55:32 -050030 # docker push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${OLD_VERSION}
Instrumental94053612018-10-08 11:27:18 -050031 $DOCKER push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION}
Instrumental567a9632018-08-14 13:55:32 -050032 # docker push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${NEW_VERSION}
Instrumental12f7f462018-04-23 15:43:47 -050033done