ocp-csi-test-scripts/dell-publish-unpublish-test/publish-unpublish-test.sh
Philipp Richter 77a4a47552 test scripts
2025-01-14 17:19:34 +01:00

15 lines
352 B
Bash
Executable File

#!/bin/bash
while : ; do
./switch.sh 1
#sleep 480
sleep 120
echo "$(date +'%Y-%m-%d %H:%M:%S') Pods State not in running state"
oc get pods -n test-richph | grep -v "Running"
./switch.sh 2
# sleep 480
sleep 120
echo "$(date +'%Y-%m-%d %H:%M:%S') Pods State not in running state"
oc get pods -n test-richph | grep -v "Running"
done