cka-SVV/labs/exam1-task3.sh
sandervanvugt db0687d4e2 message
2024-11-24 06:03:51 -08:00

10 lines
380 B
Bash

export LAB3POD=$(kubectl get pods | awk '/lab153/ { print $1 }') &>/dev/null
if kubectl get pods $LAB3POD -o yaml | grep initContainer &>/dev/null
then
echo -e "\033[32m[OK]\033[0m\t\t $LAB3POD is running and it does have an init container"
SCORE=$(( SCORE + 10 ))
else
echo -e "\033[31m[FAIL]\033[0m\t\t cannot find $LAB3POD using an initcontainer"
fi
TOTAL=$(( TOTAL + 10 ))