Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

spawn-az-vm: Update defaults #156

Merged
merged 1 commit into from
Feb 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions spawn-az-vm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ DELETE_VM=

OFFER="${OFFER:-"flatcar-container-linux-free"}"
CHANNEL="${CHANNEL:-alpha}"
SIZE="${SIZE:-Standard_D16ds_v5}"
SIZE="${SIZE:-Standard_D32ds_v5}"
# Note use "-" instead ":-" to be able to explicitly clear it
EXTRA=(${EXTRA-default})
if [ "${EXTRA[*]}" = "default" ]; then
Expand Down Expand Up @@ -58,7 +58,7 @@ while true; do
echo "To exit, type Ctrl + ] followed by 'q'."
echo
echo "Example:"
echo " ./$(basename "${0}") --name spawn-test --ssh-key ~/.ssh/id_rsa.pub --resource-group ${USER}-spawn --location westeurope --create-vm --ignition MY.ign MYBRANCH"
echo " ./$(basename "${0}") --name spawn-test --ssh-key ~/.ssh/id_rsa.pub --resource-group ${USER}-spawn --location westus2 --create-vm --ignition MY.ign MYBRANCH"
exit 1
;;
-i|--ignition)
Expand Down