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
Also, just noticed that currently Deployster tries to pull resource images per resource - meaning that if two resources use the same image, it's downloaded twice. This should be fixed as part of this issue.
Currently, Deployster supports either:
latest
which is unfortunate)It would be beneficial to support a new
--pull-policy
argument with the following values:always
which would always [re]pull resource images regardless if they are present or not (esp.latest
)if-not-present
which would always pull thelatest
tag, but avoid pulling tags if they are already presentnever
which would never pull new tags (failing if a tag is not already present in the system)The default IMO should be
if-not-present
.The text was updated successfully, but these errors were encountered: