We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5407131 commit 6111c83Copy full SHA for 6111c83
deployment/rollout_new_release.sh
@@ -1,4 +1,7 @@
1
#!/bin/bash
2
+source args.sh
3
+source instance_group_management.sh
4
+
5
TARGET="$1"
6
7
case $TARGET in
@@ -13,9 +16,6 @@ case $TARGET in
13
16
exit 1
14
17
esac
15
18
-source args.sh
-source instance_group_management.sh
-
19
# Fetch latest image sha from GCR.
20
IMAGE_SHA=$(gcloud container images list-tags $IMAGE_IN_GCR --format=yaml --limit=1 | grep -i digest | cut -d' ' -f2)
21
IMAGE_FQN="${IMAGE_IN_GCR}@${IMAGE_SHA}"
0 commit comments