Currently, Deployster supports either:
- always pull resource images (default)
- relying on Docker to pull the image if not already present (includes
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 the latest tag, but avoid pulling tags if they are already present
never 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.
Currently, Deployster supports either:
latestwhich is unfortunate)It would be beneficial to support a new
--pull-policyargument with the following values:alwayswhich would always [re]pull resource images regardless if they are present or not (esp.latest)if-not-presentwhich would always pull thelatesttag, but avoid pulling tags if they are already presentneverwhich would never pull new tags (failing if a tag is not already present in the system)The default IMO should be
if-not-present.