Skip to content

Commit

Permalink
Fix kubeTask test image issue (#4441)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavannd1 authored and Ilya Kislenko committed Nov 21, 2018
1 parent 8db13c4 commit eb4a83a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/kube/pod.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func CreatePod(ctx context.Context, cli kubernetes.Interface, opts *PodOptions)
Name: "container",
Image: opts.Image,
Command: opts.Command,
ImagePullPolicy: v1.PullPolicy(v1.PullIfNotPresent),
ImagePullPolicy: v1.PullPolicy(v1.PullAlways),
VolumeMounts: volumeMounts,
},
},
Expand Down

0 comments on commit eb4a83a

Please sign in to comment.