I am testing a pre-upgrade hook which just has a bash script that prints a string and sleep for 10 mins. When I run helm upgrade, it ran for some time and exited with the error in the title. I used kubectl to check the job and it was still running. Any idea on how to get rid of the error?
Thanks
The script in the container that the job runs:
#!/bin/bash
echo "Sleeping for testing..."
sleep 600