X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Fjob-cost.sh;h=595b342e42bd975d743266f7339f994b9421e522;hb=b9eb4581940562effcf67863704a3ec2c47ceca0;hp=ee2f4a5209fdfc151d3571dafef2b19ddd5fee0b;hpb=34c9b08438fd4314e0a5ffed414f367c282a700a;p=releng%2Fglobal-jjb.git diff --git a/shell/job-cost.sh b/shell/job-cost.sh index ee2f4a52..595b342e 100644 --- a/shell/job-cost.sh +++ b/shell/job-cost.sh @@ -16,12 +16,13 @@ set -euf -o pipefail source ~/lf-env.sh # AWS job cost not supported, exit -if grep -qi amazon /sys/devices/virtual/dmi/id/bios_vendor ; then +cloudtype="$(jq -r .v1.datasource /run/cloud-init/result.json)" +if [[ $cloudtype == "DataSourceEc2Local" ]]; then echo "INFO: Not able to calculate job cost on AWS" exit 0 fi -lf-activate-venv python-openstackclient +lf-activate-venv zipp==1.1.0 python-openstackclient if [[ -z ${JOB_NAME:-} ]]; then lf-echo-error "Required Env Variable Unset/Empty: JOB_NAME" @@ -59,7 +60,7 @@ url="https://pricing.vexxhost.net/v1/pricing/$instance_type/cost?seconds=$uptime json_block=$(curl -s "$url") # check if JSON returned and can be parsed -if jq <<< "$json_block" > /dev/null 2>&1; then +if jq . <<< "$json_block" > /dev/null 2>&1; then cost=$(jq .cost <<< "$json_block") resource=$(jq .resource <<< "$json_block" | tr -d '"') else