forked from istio/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
start_gcb_publish.sh
executable file
·138 lines (123 loc) · 4.79 KB
/
start_gcb_publish.sh
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#!/bin/bash
# Copyright 2017 Istio Authors. All Rights Reserved.
#
# 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.
#
################################################################################
# This is an example file for how to start an istio release publish
# using Cloud Builder. To run it you need a Google Cloud project and
# a service account that has been granted access to start a build.
#
# NOTE: the settings for the repo tool manifest controls which
# script version is used to perform the tag. This is normally
# the same as was used to make the build, though bug fixes
# (or a non-branching model for build automation) might involve
# the use of something newer.
set -o errexit
set -o nounset
set -o pipefail
set -x
SCRIPTPATH=$( cd "$(dirname "$0")" ; pwd -P )
source ${SCRIPTPATH}/gcb_build_lib.sh
PROJECT_ID=""
KEY_FILE_PATH=""
SVC_ACCT=""
SUBS_FILE="$(mktemp /tmp/build.subs.XXXX)"
VER_STRING="0.0.0"
REPO=""
REPO_FILE=default.xml
REPO_FILE_VER=master
WAIT_FOR_RESULT="false"
GCS_SRC=""
GCS_GITHUB_SECRET="istio-secrets/github.txt.enc"
REL_ORG="istio"
GCR_DST=""
GCS_DST=""
DOCKER_DST="istio" # docker.io/istio
REL_REPO="istio"
function usage() {
echo "$0
-p <name> project ID (required)
-a service account for login (optional, defaults to project's cloudbuild@ )
-k <file> path to key file for service account (optional)
-v <ver> version string (optional, defaults to $VER_STRING )
-u <url> URL to git repo with manifest file (required)
-m <file> name of manifest file in repo specified by -u (optional, defaults to $REPO_FILE )
-t <tag> commit tag or branch for manifest repo in -u (optional, defaults to $REPO_FILE_VER )
-w specify that script should wait until build done (optional)
-d <hub> docker hub (optional, defaults to $DOCKER_DST )
-r <name> GCR bucket to store build artifacts (required)
-s <name> GCS bucket to read build artifacts (required)
-b <name> GCS bucket to publish to (required)
-g <path> GCS bucket&path to file with github secret (optional, detaults to $GCS_GITHUB_SECRET )
-h <name> github org to make a release on (optional, defaults to $REL_ORG )
-i <name> github repo to make a release on (optional, defaults to $REL_REPO )"
exit 1
}
while getopts a:b:d:g:h:i:k:m:p:r:s:t:u:v:w arg ; do
case "${arg}" in
a) SVC_ACCT="${OPTARG}";;
b) GCS_DST="${OPTARG}";;
d) DOCKER_DST="${OPTARG}";;
g) GCS_GITHUB_SECRET="${OPTARG}";;
h) REL_ORG="${OPTARG}";;
i) REL_REPO="${OPTARG}";;
k) KEY_FILE_PATH="${OPTARG}";;
m) REPO_FILE="${OPTARG}";;
p) PROJECT_ID="${OPTARG}";;
r) GCR_DST="${OPTARG}";;
s) GCS_SRC="${OPTARG}";;
t) REPO_FILE_VER="${OPTARG}";;
u) REPO="${OPTARG}";;
v) VER_STRING="${OPTARG}";;
w) WAIT_FOR_RESULT="true";;
*) usage;;
esac
done
[[ -z "${PROJECT_ID}" ]] && usage
[[ -z "${REPO}" ]] && usage
[[ -z "${REPO_FILE}" ]] && usage
[[ -z "${REPO_FILE_VER}" ]] && usage
[[ -z "${VER_STRING}" ]] && usage
# [[ -z "${DOCKER_DST}" ]] && usage
[[ -z "${GCR_DST}" ]] && usage
[[ -z "${GCS_DST}" ]] && usage
[[ -z "${GCS_SRC}" ]] && usage
[[ -z "${REL_REPO}" ]] && usage
[[ -z "${REL_ORG}" ]] && usage
[[ -z "${GCS_GITHUB_SECRET}" ]] && usage
DEFAULT_SVC_ACCT="cloudbuild@${PROJECT_ID}.iam.gserviceaccount.com"
if [[ -z "${SVC_ACCT}" ]]; then
SVC_ACCT="${DEFAULT_SVC_ACCT}"
fi
# generate the substitutions file
cat << EOF > ${SUBS_FILE}
"substitutions": {
"_VER_STRING": "${VER_STRING}",
"_MFEST_URL": "${REPO}",
"_MFEST_FILE": "${REPO_FILE}",
"_MFEST_VER": "${REPO_FILE_VER}",
"_GCS_SOURCE": "${GCS_SRC}",
"_GCR_DST": "${GCR_DST}",
"_GCS_DST": "${GCS_DST}",
"_DOCKER_DST": "${DOCKER_DST}",
"_GCS_SECRET": "${GCS_GITHUB_SECRET}",
"_ORG": "${REL_ORG}",
"_REPO": "${REL_REPO}"
}
EOF
run_build "${REPO}" "${REPO_FILE}" "${REPO_FILE_VER}" "cloud_publish.template.json" \
"${SUBS_FILE}" "${PROJECT_ID}" "${SVC_ACCT}" "${KEY_FILE_PATH}" "${WAIT_FOR_RESULT}"
# cleanup
rm -f "${SUBS_FILE}"
exit $BUILD_FAILED