X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=deployment%2Ftag-docker-staging.sh;fp=deployment%2Ftag-docker-staging.sh;h=0000000000000000000000000000000000000000;hb=ef87ec9bc0c87220cfa57a5a72c628e2173b68ad;hp=7aeb4737e4facbfb80c242bdd070bb925738d905;hpb=0adf90393f19ad54c61cb17b79f556b8fe9818f1;p=ccsdk%2Fdistribution.git diff --git a/deployment/tag-docker-staging.sh b/deployment/tag-docker-staging.sh deleted file mode 100755 index 7aeb4737..00000000 --- a/deployment/tag-docker-staging.sh +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/bash -# -# Copyright 2020 © Samsung Electronics Co., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -DOCKER_REPOSITORY="nexus3.onap.org:10003" -ORG="onap" -IMAGES=("ccsdk-dgbuilder-image" "ccsdk-odlsli-alpine-image") -IMAGE_NAME_BASE="${DOCKER_REPOSITORY}/${ORG}/" -TAG_NAME=${UNIQUE_DOCKER_TAG} -TIMESTAMP=`date +'%Y%m%dT%H%M%SZ'` -set -x -# Create tags based on version.properties -source ../version.properties -LATEST_MINOR_TAG=${release_name}.${sprint_number}-STAGING-latest -LATEST_FULL_TAG=${release_name}.${sprint_number}.${feature_revision}-STAGING-latest -LATEST_FULL_TIMESTAMP_TAG=${release_name}.${sprint_number}.${feature_revision}-STAGING-${TIMESTAMP} - -if [ ! -z "${TAG_NAME}" ]; then -for i in ${!IMAGES[@]}; - do - image=${IMAGE_NAME_BASE}${IMAGES[$i]} - echo "Push STAGING tags for docker image ${image}" - docker pull ${image}:${snapshot_version}-${TAG_NAME} - - docker tag ${image}:${snapshot_version}-${TAG_NAME} ${image}:${LATEST_MINOR_TAG} - docker tag ${image}:${snapshot_version}-${TAG_NAME} ${image}:${LATEST_FULL_TAG} - docker tag ${image}:${snapshot_version}-${TAG_NAME} ${image}:${LATEST_FULL_TIMESTAMP_TAG} - - docker push ${image}:${LATEST_MINOR_TAG} - docker push ${image}:${LATEST_FULL_TAG} - docker push ${image}:${LATEST_FULL_TIMESTAMP_TAG} - - done -fi -