Hi,
Is there a way to get "skaffold dev" not to quit immediately on a deployment exit due to slow starting deployments?
I have a simple setup with a deployment of the service being developed and a deployment with a backend store. The service won't start as long as it can't connect to the backend store service which takes a few seconds to start. Kubernetes normally just restarts the pod until it connects and runs but skaffold tears everything down on the first exit, making it impossible to use "skaffold dev" without having to add connection retry logic to the service itself.
- Tais