You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
eqx/bin/eqx-market-spot-deviceid

27 lines
477 B

#!/bin/bash
# eqx-get-deviceid-spot
#
# Give a device ID, check if it is spot or not.
# null = not spot
# true = spot
EQXDEVICEID="$1"
if [[ $1 == "" ]]
then \
echo -e "Need device ID"
echo -e "To get device IDs in a project, run:"
echo -e "eqx-get-project-devices [project name]"
echo
exit
fi
packet \
device get \
--json \
--id $EQXDEVICEID \
2>/dev/null | \
jq '.spot_instance' | \
sed -e 's/"//g'