-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Update test runner for Cloud Run logging-manual (#2097)
* fix: Update test runner for Cloud Run logging-manual
- Loading branch information
1 parent
95022be
commit 2eda771
Showing
8 changed files
with
198 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
steps: | ||
|
||
- id: 'Delete image and service' | ||
name: 'gcr.io/cloud-builders/gcloud' | ||
entrypoint: '/bin/bash' | ||
args: | ||
- '-c' | ||
- | | ||
./test/retry.sh "gcloud container images describe gcr.io/${PROJECT_ID}/${_SERVICE}:${_VERSION}" \ | ||
"gcloud container images delete gcr.io/${PROJECT_ID}/${_SERVICE}:${_VERSION} --quiet" | ||
./test/retry.sh "gcloud run services describe ${_SERVICE} --region ${_REGION} --platform ${_PLATFORM}" \ | ||
"gcloud run services delete ${_SERVICE} --region ${_REGION} --platform ${_PLATFORM} --quiet" | ||
substitutions: | ||
_SERVICE: logging-manual | ||
_VERSION: manual | ||
_REGION: us-central1 | ||
_PLATFORM: managed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
steps: | ||
|
||
- id: 'Build Container Image' | ||
name: 'gcr.io/cloud-builders/docker' | ||
entrypoint: '/bin/bash' | ||
args: | ||
- '-c' | ||
- | | ||
./test/retry.sh "docker build -t gcr.io/${PROJECT_ID}/${_SERVICE}:${_VERSION} ." | ||
- id: 'Push Container Image' | ||
name: 'gcr.io/cloud-builders/docker' | ||
entrypoint: '/bin/bash' | ||
args: | ||
- '-c' | ||
- | | ||
./test/retry.sh "docker push gcr.io/${PROJECT_ID}/${_SERVICE}:${_VERSION}" | ||
- id: 'Deploy to Cloud Run' | ||
name: 'gcr.io/cloud-builders/gcloud:latest' | ||
entrypoint: /bin/bash | ||
args: | ||
- '-c' | ||
- | | ||
./test/retry.sh "gcloud run deploy ${_SERVICE} \ | ||
--image gcr.io/${PROJECT_ID}/${_SERVICE}:${_VERSION} \ | ||
--no-allow-unauthenticated \ | ||
--region ${_REGION} \ | ||
--platform ${_PLATFORM}" | ||
images: | ||
- gcr.io/${PROJECT_ID}/${_SERVICE}:${_VERSION} | ||
|
||
substitutions: | ||
_SERVICE: logging-manual | ||
_VERSION: manual | ||
_REGION: us-central1 | ||
_PLATFORM: managed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
#!/usr/bin/env bash | ||
# Copyright 2020 Google LLC | ||
# | ||
# 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. | ||
|
||
## | ||
# retry.sh | ||
# Provides utility function commonly needed across Cloud Build pipelines to | ||
# retry commands on failure. | ||
# | ||
# Usage: | ||
# 1. Retry single command: | ||
# | ||
# ./retry.sh "CMD" | ||
# | ||
# 2. Retry with check: | ||
# | ||
# ./retry.sh "gcloud RESOURCE EXISTS?" "gcloud ACTION" | ||
# | ||
## | ||
|
||
# Usage: try "cmd1" "cmd2" | ||
# If first cmd executes successfully then execute second cmd | ||
runIfSuccessful() { | ||
echo "running: $1" | ||
$($1 > /dev/null) | ||
if [ $? -eq 0 ]; then | ||
echo "running: $2" | ||
$($2 > /dev/null) | ||
fi | ||
} | ||
|
||
# Define max retries | ||
max_attempts=3; | ||
attempt_num=1; | ||
|
||
arg1="$1" | ||
arg2="$2" | ||
|
||
if [ $# -eq 1 ] | ||
then | ||
cmd="$arg1" | ||
else | ||
cmd="runIfSuccessful \"$arg1\" \"$arg2\"" | ||
fi | ||
|
||
until eval $cmd | ||
do | ||
if ((attempt_num==max_attempts)) | ||
then | ||
echo "Attempt $attempt_num / $max_attempts failed! No more retries left!" | ||
exit 1 | ||
else | ||
echo "Attempt $attempt_num / $max_attempts failed!" | ||
sleep $((attempt_num++)) | ||
fi | ||
done |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.