Skip to content

Commit

Permalink
Set ImagePullPolicy to Always in test_util templateParams (#2086)
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitjain235 authored Jun 2, 2023
1 parent bc0a0c1 commit 255be73
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkg/testutil/testutil.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,11 @@ func newTestPodTemplateSpec() v1.PodTemplateSpec {
Spec: v1.PodSpec{
Containers: []v1.Container{
{
Name: "test-container",
Image: consts.LatestKanisterToolsImage,
Command: []string{"tail"},
Args: []string{"-f", "/dev/null"},
Name: "test-container",
Image: consts.LatestKanisterToolsImage,
Command: []string{"tail"},
Args: []string{"-f", "/dev/null"},
ImagePullPolicy: v1.PullAlways,
},
},
},
Expand Down

0 comments on commit 255be73

Please sign in to comment.