-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpush
executable file
·109 lines (91 loc) · 2.96 KB
/
push
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#!/bin/bash
set -e
if [ -z ${IMAGE_REPO} ];
then
echo "Error: IMAGE_REPO is not specified";
exit 1
fi
source "$(dirname $0)/version"
if [ ${ARCH} == "linux_arm64" ]; then
IMAGEID=$( docker images -q openebs/jiva-${XC_ARCH}:${VERSION} )
IMAGE_REPO="openebs/jiva-${XC_ARCH}"
else
IMAGEID=$( docker images -q openebs/jiva:${VERSION} )
fi
echo $IMAGEID
if [ -z ${IMAGEID} ];
then
echo "Error: unable to get IMAGEID for ${IMAGE_REPO}:${VERSION}";
exit 1
fi
# Generate a uniqe tag based on the commit and tag
BUILD_ID=$(git describe --tags --always)
# Determine the current branch
CURRENT_BRANCH=""
if [ -z ${TRAVIS_BRANCH} ];
then
CURRENT_BRANCH=$(git branch | grep \* | cut -d ' ' -f2)
else
CURRENT_BRANCH=${TRAVIS_BRANCH}
fi
#Depending on the branch where builds are generated,
# set the tag CI (fixed) and build tags.
BUILD_TAG="${CURRENT_BRANCH}-${BUILD_ID}"
CI_TAG="${CURRENT_BRANCH}-ci"
if [ ${CURRENT_BRANCH} = "master" ]; then
CI_TAG="ci"
fi
echo "Set the image repo as: ${IMAGE_REPO}"
echo "Set the fixed ci image tag as: ${CI_TAG}"
echo "Set the build/unique image tag as: ${BUILD_TAG}"
function TagAndPushImage() {
REPO="$1"
TAG="$2"
IMAGE_URI="${REPO}:${TAG}";
sudo docker tag ${IMAGEID} ${IMAGE_URI};
echo " push ${IMAGE_URI}";
sudo docker push ${IMAGE_URI};
}
if [ ! -z "${DNAME}" ] && [ ! -z "${DPASS}" ];
then
sudo docker login -u "${DNAME}" -p "${DPASS}";
# Push CI tagged image - :ci or :branch-ci
TagAndPushImage "${IMAGE_REPO}" "${CI_TAG}"
# Push unique tagged image - :master-<uuid> or :branch-<uuid>
# This unique/build image will be pushed to corresponding ci repo.
TagAndPushImage "${IMAGE_REPO}-ci" "${BUILD_TAG}"
if [ ! -z "${TRAVIS_TAG}" ] ;
then
# Push with different tags if tagged as a release
# When github is tagged with a release, then Travis will
# set the release tag in env TRAVIS_TAG
TagAndPushImage "${IMAGE_REPO}" "${TRAVIS_TAG}"
TagAndPushImage "${IMAGE_REPO}" "latest"
fi;
else
echo "No docker credentials provided. Skip uploading ${IMAGE_REPO} to docker hub";
fi;
# Push ci image to quay.io for security scanning
if [ ! -z "${QNAME}" ] && [ ! -z "${QPASS}" ];
then
sudo docker login -u "${QNAME}" -p "${QPASS}" quay.io;
# Push CI tagged image - :ci or :branch-ci
TagAndPushImage "quay.io/${IMAGE_REPO}" "${CI_TAG}"
if [ ! -z "${TRAVIS_TAG}" ] ;
then
# Push with different tags if tagged as a release
# When github is tagged with a release, then Travis will
# set the release tag in env TRAVIS_TAG
TagAndPushImage "quay.io/${IMAGE_REPO}" "${TRAVIS_TAG}"
TagAndPushImage "quay.io/${IMAGE_REPO}" "latest"
fi;
else
echo "No docker credentials provided. Skip uploading ${IMAGE_REPO} to quay";
fi;
#Push image to run openebs-e2e based on git commit
if [ ! -z "${COMMIT}" ] && [ ! -z "${DNAMEGL}" ] && [ ! -z "${DPASSGL}" ];
then
sudo docker login -u "${DNAMEGL}" -p "${DPASSGL}";
# Push COMMIT tagged image - :COMMIT
TagAndPushImage "${IMAGE_REPO}" "${COMMIT}"
fi;