diff options
author | Chris Evich <cevich@redhat.com> | 2020-09-21 11:38:11 -0400 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2020-10-01 14:27:32 -0400 |
commit | 7c9c159e931109edd84747cfa219917412a55076 (patch) | |
tree | 0b5d9c8c9a84cd906adf468eac32c36d9a740518 /contrib/imgts/entrypoint.sh | |
parent | 5d22eb02f95f28a87ed263afe28b7ff4bf2f6fee (diff) | |
download | podman-7c9c159e931109edd84747cfa219917412a55076.tar.gz podman-7c9c159e931109edd84747cfa219917412a55076.tar.bz2 podman-7c9c159e931109edd84747cfa219917412a55076.zip |
Migrate container images to automation_images
Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to 'contrib/imgts/entrypoint.sh')
-rwxr-xr-x | contrib/imgts/entrypoint.sh | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/contrib/imgts/entrypoint.sh b/contrib/imgts/entrypoint.sh deleted file mode 100755 index b089e1e9b..000000000 --- a/contrib/imgts/entrypoint.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env bash - -set -e - -source /usr/local/bin/lib_entrypoint.sh - -req_env_var GCPJSON GCPNAME GCPPROJECT IMGNAMES BUILDID REPOREF - -gcloud_init - -ARGS=" - --update-labels=last-used=$(date +%s) - --update-labels=build-id=$BUILDID - --update-labels=repo-ref=$REPOREF - --update-labels=project=$GCPPROJECT -" - -for image in $IMGNAMES -do - $GCLOUD compute images update "$image" $ARGS & -done - -wait || echo "Warning: No \$IMGNAMES were specified." |