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
Our current Delete Account apparently does not wait for pods to shut down, which creates a race condition. The PVC is deleted immediately, and this causes any pods that are still running to fail to shutdown because the PVC fails to unmount.
We should check for running pods before deleting an account, and have a few options for handling this case:
any running pods could be shut down, with the PVC to be deleted afterward
we could trigger an error that prevents the account from being deleted
The text was updated successfully, but these errors were encountered:
This could probably just trigger a DELETE on the namespace. This way, Kubernetes handles all of the shutdown procedures in the background and should do everything in the right order to ensure the namespace is cleaned up completely
Our current Delete Account apparently does not wait for pods to shut down, which creates a race condition. The PVC is deleted immediately, and this causes any pods that are still running to fail to shutdown because the PVC fails to unmount.
We should check for running pods before deleting an account, and have a few options for handling this case:
The text was updated successfully, but these errors were encountered: