Skip to content

Commit

Permalink
gcp: use lowercase for dev app name
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrildiagne committed Oct 19, 2019
1 parent def80bd commit 790a67d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/gcp/dev_start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ gcloud container clusters get-credentials $KUDA_GCP_CLUSTER_NAME
# --num-nodes 1 \
# --quiet

uid=$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 7)
uid=$(head /dev/urandom | tr -dc a-z0-9 | head -c 7)
dev_app_name=$KUDA_DEV_APP_NAME-$uid
dev_image=$1

Expand Down

0 comments on commit 790a67d

Please sign in to comment.