Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
Fix random string gen (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Sloan authored Sep 1, 2017
1 parent 3c97d2d commit 1a7548b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/gke_integration_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ if [[ -z "$imageUnderTest" ]]; then
fi

if [[ -z "$clusterName" ]]; then
clusterName=$(uuidgen)
# generate random alpha string
clusterName=$(cat /dev/urandom | tr -dc 'a-z' | fold -w 20 | head -n 1)
readonly tearDown="true"
fi

Expand Down

0 comments on commit 1a7548b

Please sign in to comment.