Skip to content

Commit

Permalink
Always pull channel image on channel sync
Browse files Browse the repository at this point in the history
Signed-off-by: David Cassany <[email protected]>
(cherry picked from commit 4f00fe4)
  • Loading branch information
davidcassany committed Dec 12, 2023
1 parent 17a6def commit ae63231
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions pkg/syncer/syncer.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,13 @@ func (c *CustomSyncer) ToContainers() []corev1.Container {
VolumeMounts: []corev1.VolumeMount{{Name: "output",
MountPath: c.MountPath,
}},
Name: "runner",
Image: c.Image,
Command: c.Command,
Args: c.Args,
EnvFrom: c.EnvFrom,
Env: c.Env,
Name: "runner",
Image: c.Image,
ImagePullPolicy: corev1.PullAlways,
Command: c.Command,
Args: c.Args,
EnvFrom: c.EnvFrom,
Env: c.Env,
},
}
}
Expand Down

0 comments on commit ae63231

Please sign in to comment.