Skip to content

Commit

Permalink
Use ubuntu images for sidecar tests
Browse files Browse the repository at this point in the history
Sidecar tests were failing on our CI when using the busybox images, switching it
to ubuntu image 'fix' it.

I tried a few other way to fix it properly (change the paths, change loop to
sleep infinity etc...) with no success.

Closes #1253
  • Loading branch information
chmouel authored and tekton-robot committed Aug 30, 2019
1 parent 14425d1 commit fdd91da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/sidecar_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ func TestSidecarTaskSupport(t *testing.T) {
tb.TaskSpec(
tb.Step(
primaryContainerName,
"busybox:1.31.0-musl",
"ubuntu",
tb.StepCommand(test.stepCommand...),
),
tb.Sidecar(
sidecarContainerName,
"busybox:1.31.0-musl",
"ubuntu",
tb.Command(test.sidecarCommand...),
),
),
Expand Down

0 comments on commit fdd91da

Please sign in to comment.