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
If supplied with a non-zero value along with the "deploy" action, after the deployment completes successfully, the plugin would delete any older versions beyond the "max version" count.
For example, if we added max_versions: 2 to deployment config and the deployed service had 4 total versions after the deployment completed, the plugin would remove the 2 older versions.
This is meant to deal with the limit of 210 versions for an App Engine project, which can be reached rather quickly if a large/active team is developing against the project. At the moment, reaching this 210 limit causes the plugin to error and developers must manually remove older versions from their projects. This should remove that manual intervention without requiring users to add any more moving parts to their deployment pipelines.
The text was updated successfully, but these errors were encountered:
If supplied with a non-zero value along with the "deploy" action, after the deployment completes successfully, the plugin would delete any older versions beyond the "max version" count.
For example, if we added
max_versions: 2
to deployment config and the deployed service had 4 total versions after the deployment completed, the plugin would remove the 2 older versions.This is meant to deal with the limit of 210 versions for an App Engine project, which can be reached rather quickly if a large/active team is developing against the project. At the moment, reaching this 210 limit causes the plugin to error and developers must manually remove older versions from their projects. This should remove that manual intervention without requiring users to add any more moving parts to their deployment pipelines.
The text was updated successfully, but these errors were encountered: