We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Skaffold has a health-check timeout (deploy.statusCheckDeadlineSeconds), which is the amount of time, in seconds, to wait for deployments to stabilize. However, this is not supported for Cloud Run.
Here the deadline gets passed in for Cloud Run. If you trace that back up, it comes from Monitor.statusCheckDeadline which is hardcoded to 10 minutes.
Would have to do something similar to what's done with deployments and stateful sets, for example here
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Skaffold has a health-check timeout (deploy.statusCheckDeadlineSeconds), which is the amount of time, in seconds, to wait for deployments to stabilize. However, this is not supported for Cloud Run.
Here the deadline gets passed in for Cloud Run. If you trace that back up, it comes from Monitor.statusCheckDeadline which is hardcoded to 10 minutes.
Would have to do something similar to what's done with deployments and stateful sets, for example here
The text was updated successfully, but these errors were encountered: