Skip to content

Commit

Permalink
unique AR image-name for each run
Browse files Browse the repository at this point in the history
  • Loading branch information
gargnitingoogle committed Sep 23, 2024
1 parent cb928b0 commit 57cb4b2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions perfmetrics/scripts/testing_on_gke/examples/run-gke-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -589,9 +589,10 @@ function createCustomCsiDriverIfNeeded() {
make uninstall || true
make generate-spec-yaml
printf "\nBuilding a new custom CSI driver using the above GCSFuse binary ...\n\n"
make build-image-and-push-multi-arch REGISTRY=gcr.io/${project_id}/${USER} GCSFUSE_PATH=gs://${package_bucket}
registry=gcr.io/${project_id}/${USER}/${cluster_name}
make build-image-and-push-multi-arch REGISTRY=${registry} GCSFUSE_PATH=gs://${package_bucket}
printf "\nInstalling the new custom CSI driver built above ...\n\n"
make install PROJECT=${project_id} REGISTRY=gcr.io/${project_id}/${USER}
make install PROJECT=${project_id} REGISTRY=${registry}
cd -
# Wait some time after csi driver installation before deploying pods
# to avoid failures caused by 'the webhook failed to inject the
Expand Down

0 comments on commit 57cb4b2

Please sign in to comment.