mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
Change klipper-helm to PullIfNotPresent
PullAlways ImagePullPolicy causes issues with offline/airgap support, so only pull if image is not already present.
This commit is contained in:
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
Block a user