mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-26 17:11:19 +02:00
15 lines
310 B
Bash
Executable File
15 lines
310 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eou pipefail
|
|
|
|
{
|
|
sleep 300
|
|
echo "Timed out waiting for integration tests"
|
|
kill $$
|
|
} &
|
|
|
|
until ./osctl.sh kubeconfig > kubeconfig; do cat kubeconfig; sleep 5; done
|
|
until ./kubectl.sh get nodes -o json | jq '.items | length' | grep 4; do ./kubectl.sh get nodes; sleep 5; done
|
|
|
|
exit 0
|