X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Fjob-cost.sh;h=c5fb009a596ba3b9abf6ba149a68ad0450c62b5c;hb=b5f829055f4d8def12d62aa9e91456e5645924db;hp=85096cdd0e4798beb9c8b890e3da3237a84307f4;hpb=429412ef9cac443f6dcca6572111d853de067bc1;p=releng%2Fglobal-jjb.git diff --git a/shell/job-cost.sh b/shell/job-cost.sh index 85096cdd..c5fb009a 100644 --- a/shell/job-cost.sh +++ b/shell/job-cost.sh @@ -29,7 +29,7 @@ if [[ $cloudtype == "DataSourceEc2Local" ]]; then exit 0 fi -lf-activate-venv zipp==1.1.0 python-openstackclient +lf-activate-venv zipp==1.1.0 python-openstackclient urllib3~=1.26.15 if [[ -z ${JOB_NAME:-} ]]; then lf-echo-error "Required Env Variable Unset/Empty: JOB_NAME" @@ -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"