cka-SVV/labs/exam-task10.sh
sandervanvugt a64c9fdff9 message
2024-11-13 11:13:14 +01:00

9 lines
258 B
Bash

if helm list | grep mysql &>/dev/null
then
echo -e "\033[32m[OK]\033[0m\t\t you have successfully installed the bitnami mysql chart"
SCORE=$(( SCORE + 10 ))
else
echo -e "\033[31m[FAIL]\033[0m\t\t bitnami mysql chart not found"
fi
TOTAL=$(( TOTAL + 10 ))