mirror of https://github.com/k3s-io/k3s
Change klipper-helm to PullIfNotPresent
PullAlways ImagePullPolicy causes issues with offline/airgap support, so only pull if image is not already present.pull/253/head
parent
78d75fb15b
commit
8d57fbd430
|
@ -158,7 +158,7 @@ func job(chart *k3s.HelmChart) (*batch.Job, *core.ConfigMap) {
|
|||
{
|
||||
Name: "helm",
|
||||
Image: image,
|
||||
ImagePullPolicy: core.PullAlways,
|
||||
ImagePullPolicy: core.PullIfNotPresent,
|
||||
Args: args(chart),
|
||||
Env: []core.EnvVar{
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue