diff options
author | Todd Malsbary <todd.malsbary@intel.com> | 2022-01-19 13:54:14 -0800 |
---|---|---|
committer | Todd Malsbary <todd.malsbary@intel.com> | 2022-01-19 13:54:14 -0800 |
commit | 1f92a0ec4ea037089b82e3f80bb030f34fab64f0 (patch) | |
tree | 1a245e9f2a605910c8cec327d06165d6a532946a /kud/tests/sriov.sh | |
parent | 0dd494c4953bf9f910bc1d16fe96db83f03f2fb7 (diff) |
Use kubectl wait in KuD wait_for_pod test function
This handles intermittent Err* Pod status such as ErrImagePull.
Additionally, remove the duplication of wait_for_pod among the tests.
Issue-ID: MULTICLOUD-1435
Signed-off-by: Todd Malsbary <todd.malsbary@intel.com>
Change-Id: I70c69e0427b80e31b2f97515ebdbc3496a91ced1
Diffstat (limited to 'kud/tests/sriov.sh')
-rwxr-xr-x | kud/tests/sriov.sh | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/kud/tests/sriov.sh b/kud/tests/sriov.sh index a44aba04..ecc13d87 100755 --- a/kud/tests/sriov.sh +++ b/kud/tests/sriov.sh @@ -10,6 +10,8 @@ set -o pipefail +source _functions.sh + 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." @@ -78,20 +80,7 @@ for podType in ${POD_TYPE:-single multiple}; do kubectl create -f $HOME/$pod_name-$podType.yaml --validate=false for pod in $pod_name; do - status_phase="" - while [[ $status_phase != "Running" ]]; do - new_phase=$(kubectl get pods $pod | awk 'NR==2{print $3}') - if [[ $new_phase != $status_phase ]]; then - echo "$(date +%H:%M:%S) - $pod-$podType : $new_phase" - status_phase=$new_phase - fi - if [[ $new_phase == "Running" ]]; then - echo "Pod is up and running.." - fi - if [[ $new_phase == "Err"* ]]; then - exit 1 - fi - done + wait_for_pod $pod_name done allocated_node_resource=$(kubectl describe node | grep "intel.com/intel_sriov_700" | tail -n1 |awk '{print $(NF)}') |