X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Fjob-cost.sh;h=c5fb009a596ba3b9abf6ba149a68ad0450c62b5c;hb=refs%2Ftags%2Fv0.89.4;hp=6a989a655f36be779c9ac3852de984536414f1bb;hpb=86bdd74b5f204e3a800458186eea9f676c04615b;p=releng%2Fglobal-jjb.git diff --git a/shell/job-cost.sh b/shell/job-cost.sh index 6a989a65..c5fb009a 100644 --- a/shell/job-cost.sh +++ b/shell/job-cost.sh @@ -59,7 +59,14 @@ uptime=$(awk '{print int($1 + 1)}' /proc/uptime) # EC2 and OpenStack have simiar instace metadata APIs at this IP # AWS docs: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html # Nova docs: https://docs.openstack.org/nova/latest/user/metadata.html +set +e instance_type=$(curl -s http://169.254.169.254/latest/meta-data/instance-type) +result=$? +if [[ "$result" -ne 0 ]]; then + echo "INFO: Unable to retrieve instance type. Skipping job cost..." + exit 0 +fi +set -e echo "INFO: Retrieving Pricing Info for: $instance_type" url="https://pricing.vexxhost.net/v1/pricing/$instance_type/cost?seconds=$uptime"