You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code segment below is found in the setup.sh file and runs the risk of getting into an infinite loop if for some reason the application of the manifest fails. For example, when deploying in an environment without enough hardware resources (nodes).
while true; do
if kubectl apply -f "$tmpfile"; then
echo "Resources successfully applied."
rm "$tmpfile"
break
else
echo "Retrying to apply resources. Be patient, this might take a while..."
sleep 10
fi
done
The text was updated successfully, but these errors were encountered:
dmuiruri
changed the title
Potential infinite lopp in the setup.sh script
Potential infinite loop in the setup.sh script
Jan 23, 2024
The code segment below is found in the setup.sh file and runs the risk of getting into an infinite loop if for some reason the application of the manifest fails. For example, when deploying in an environment without enough hardware resources (nodes).
The text was updated successfully, but these errors were encountered: