diff options
author | Todd Malsbary <todd.malsbary@intel.com> | 2021-06-17 17:06:58 -0700 |
---|---|---|
committer | Todd Malsbary <todd.malsbary@intel.com> | 2021-06-17 17:11:43 -0700 |
commit | 8d3604540bb1eefc36da8d412caf8c072872dc6e (patch) | |
tree | 492edeaf5b1a3e1b8f3c41edcc15b46b2a58e96d /kud/tests/sriov.sh | |
parent | dc925231a978d1ae4dce969cb4c386d4a1b0bb87 (diff) |
Fix jq null error in tests
The specific error is:
jq: error (at <stdin>:1232): null (null) cannot be parsed as a
number
Issue-ID: MULTICLOUD-1361
Signed-off-by: Todd Malsbary <todd.malsbary@intel.com>
Change-Id: I1821e5002260cd65ac467756753e2a2ffa01a4ce
Diffstat (limited to 'kud/tests/sriov.sh')
-rwxr-xr-x | kud/tests/sriov.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kud/tests/sriov.sh b/kud/tests/sriov.sh index 7aa97f0c..a44aba04 100755 --- a/kud/tests/sriov.sh +++ b/kud/tests/sriov.sh @@ -10,7 +10,7 @@ set -o pipefail -sriov_capable_nodes=$(kubectl get nodes -o json | jq -r '.items[] | select((.status.capacity."intel.com/intel_sriov_700"|tonumber)>=2) | .metadata.name') +sriov_capable_nodes=$(kubectl get nodes -o json | jq -r '.items[] | select((.status.capacity."intel.com/intel_sriov_700"!=null) and ((.status.capacity."intel.com/intel_sriov_700"|tonumber)>=2)) | .metadata.name') if [ -z "$sriov_capable_nodes" ]; then echo "SRIOV test case cannot run on the cluster." exit 0 |