We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17a6def commit ae63231Copy full SHA for ae63231
pkg/syncer/syncer.go
@@ -133,12 +133,13 @@ func (c *CustomSyncer) ToContainers() []corev1.Container {
133
VolumeMounts: []corev1.VolumeMount{{Name: "output",
134
MountPath: c.MountPath,
135
}},
136
- Name: "runner",
137
- Image: c.Image,
138
- Command: c.Command,
139
- Args: c.Args,
140
- EnvFrom: c.EnvFrom,
141
- Env: c.Env,
+ Name: "runner",
+ Image: c.Image,
+ ImagePullPolicy: corev1.PullAlways,
+ Command: c.Command,
+ Args: c.Args,
+ EnvFrom: c.EnvFrom,
142
+ Env: c.Env,
143
},
144
}
145
0 commit comments