forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 41
/
push.sh
executable file
·77 lines (67 loc) · 2.47 KB
/
push.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
#!/bin/bash
# Copyright 2018 The Kubernetes Authors.
#
# 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.
# bump.sh will
# * ensure there are no pending changes
# * optionally activate GOOGLE_APPLICATION_CREDENTIALS and configure-docker if set
# * run //prow:release-push to build and push prow images
# * update all the cluster/*.yaml files to use the new image tags
set -o errexit
set -o nounset
set -o pipefail
# TODO(fejta): rewrite this in a better language REAL SOON
# See https://misc.flogisoft.com/bash/tip_colors_and_formatting
color-version() { # Bold blue
echo -e "\x1B[1;34m${@}\x1B[0m"
}
color-error() { # Light red
echo -e "\x1B[91m${@}\x1B[0m"
}
color-target() { # Bold cyan
echo -e "\x1B[1;33m${@}\x1B[0m"
}
# darwin is great
SED=sed
if which gsed &>/dev/null; then
SED=gsed
fi
if ! (${SED} --version 2>&1 | grep -q GNU); then
echo "!!! GNU sed is required. If on OS X, use 'brew install gnu-sed'." >&2
exit 1
fi
if [[ -n "${GOOGLE_APPLICATION_CREDENTIALS:-}" ]]; then
echo "Detected GOOGLE_APPLICATION_CREDENTIALS, activating..." >&2
gcloud auth activate-service-account --key-file="${GOOGLE_APPLICATION_CREDENTIALS}"
gcloud auth configure-docker
fi
# Build and push the current commit, failing on any uncommitted changes.
new_version="v$(date -u '+%Y%m%d')-$(git describe --tags --always --dirty)"
echo -e "version: $(color-version ${new_version})" >&2
if [[ "${new_version}" == *-dirty ]]; then
echo -e "$(color-error ERROR): uncommitted changes to repo" >&2
echo " Fix with git commit" >&2
exit 1
fi
echo -e "Pushing $(color-version ${new_version}) via $(color-target //prow:release-push --platforms=@io_bazel_rules_go//go/toolchain:linux_amd64) ..." >&2
# Remove retries after https://github.com/bazelbuild/rules_docker/issues/673
for i in {1..3}; do
if bazel run //prow:release-push --platforms=@io_bazel_rules_go//go/toolchain:linux_amd64; then
exit 0
elif [[ "$i" == 3 ]]; then
echo "Failed"
exit 1
fi
echo "Failed attempt $i, retrying..."
sleep 5
done