We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21b9814 commit 6482279Copy full SHA for 6482279
tests/scripts/checks.sh
@@ -6,8 +6,13 @@ check_pod_ready() {
6
7
echo "Checking $pod_label pod"
8
9
+ kubectl get pods -n ${TEST_NAMESPACE} --show-labels | grep nvidia-driver-daemonset
10
+ echo "SHIVA1"
11
kubectl get pods -lapp=$pod_label -n ${TEST_NAMESPACE}
-
12
+ echo "SHIVA2"
13
+ pod_name=$(kubectl get pods -n ${TEST_NAMESPACE} --no-headers -o custom-columns=":metadata.name" | grep nvidia-driver-daemonset | head -n1)
14
+ echo "SHIVA3 $pod_name"
15
+
16
echo "Checking $pod_label pod readiness"
17
18
if kubectl wait -n ${TEST_NAMESPACE} --for=condition=Ready pod -l app=$pod_label --timeout ${pod_status_time_out}; then
0 commit comments