Commit 8d57fbd4 authored by Erik Wilson's avatar Erik Wilson

Change klipper-helm to PullIfNotPresent

PullAlways ImagePullPolicy causes issues with offline/airgap support, so only pull if image is not already present.
parent 78d75fb1
......@@ -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{
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment