blob: 0d4042b61f4dd75df699a343faab68e5062827fa [file] [log] [blame]
#!/usr/bin/env bash
set -e
# Copyright 2021 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
source private/devtools/lib.sh || { echo "Are you at repo root?"; exit 1; }
source deploy/lib.sh
usage() {
>&2 cat <<EOUSAGE
Usage: $0 [exp|dev|staging|prod|beta] NAME:TAG
Deploy a frontend image to docker run for the given environment.
EOUSAGE
exit 1
}
main() {
local env=$1
local image=$2
check_env $env
check_image $image
gcloud run deploy --quiet --region us-central1 $env-frontend --image $image
local hdr=$(private/devtools/idtoken.sh -h $env)
# Clear the redis cache
curl -H "$hdr" $(worker_url $env)/clear-cache
# Start the prober checks
curl -H "$hdr" $(prober_url $env)/check
}
main $@