diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-10-02 06:33:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-02 06:33:26 -0400 |
commit | f372f4bea35a7a2e3a9a4745d6099c08d19c6db5 (patch) | |
tree | 93df890159bfa9bc9bff1762126611a5aaf090a3 /contrib/imgts/entrypoint.sh | |
parent | 00c7b493a0565205aa054be7708281874163c85d (diff) | |
parent | 7c9c159e931109edd84747cfa219917412a55076 (diff) | |
download | podman-f372f4bea35a7a2e3a9a4745d6099c08d19c6db5.tar.gz podman-f372f4bea35a7a2e3a9a4745d6099c08d19c6db5.tar.bz2 podman-f372f4bea35a7a2e3a9a4745d6099c08d19c6db5.zip |
Merge pull request #7711 from cevich/migrate_imgs
Migrate container images to automation_images
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." |