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
I think this should be configured to not default to explicitly setting IfNotPresent but instead omitting it by default. The default behavior when omitted is as Always if the image tag is latest, and otherwise IfNotPresent. This fix would be similar to jupyterhub/kubespawner#807 and shouldn't be a change that is disruptive for users, but rather a possible bugfix.
image_pull_policy=Unicode(
"IfNotPresent",
help="The image pull policy of the docker image specified in ``image``",
config=True,
)
The text was updated successfully, but these errors were encountered:
I think this should be configured to not default to explicitly setting
IfNotPresent
but instead omitting it by default. The default behavior when omitted is asAlways
if the image tag islatest
, and otherwiseIfNotPresent
. This fix would be similar to jupyterhub/kubespawner#807 and shouldn't be a change that is disruptive for users, but rather a possible bugfix.The text was updated successfully, but these errors were encountered: