mirror of
https://github.com/auricom/home-cluster.git
synced 2025-10-02 00:34:25 +02:00
15 lines
337 B
Bash
Executable File
15 lines
337 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
JOB_NAME=$1
|
|
NAMESPACE="${2:-default}"
|
|
|
|
[[ -z "${JOB_NAME}" ]] && echo "Job name not specified" && exit 1
|
|
|
|
while true; do
|
|
STATUS="$(kubectl -n "${NAMESPACE}" get pod -l job-name="${JOB_NAME}" -o jsonpath='{.items[*].status.phase}')"
|
|
if [ "${STATUS}" == "Pending" ]; then
|
|
break
|
|
fi
|
|
sleep 1
|
|
done
|