diff --git a/test/e2e/buildrun-gather.bats b/test/e2e/buildrun-gather.bats index 192fde9d4..206893a3a 100644 --- a/test/e2e/buildrun-gather.bats +++ b/test/e2e/buildrun-gather.bats @@ -22,7 +22,8 @@ teardown() { run shp build create ${build_name} \ --source-git-url=https://github.com/shipwright-io/sample-go \ --source-context-dir=source-build \ - --output-image=${output_image} + --output-image=${output_image} \ + --output-insecure=true assert_success run shp buildrun create ${buildrun_name} --buildref-name=${build_name} diff --git a/test/e2e/log-follow--follow.bats b/test/e2e/log-follow--follow.bats index f050cbb98..651294681 100644 --- a/test/e2e/log-follow--follow.bats +++ b/test/e2e/log-follow--follow.bats @@ -23,7 +23,8 @@ teardown() { run shp build create ${build_name} \ --source-git-url=https://github.com/shipwright-io/sample-go \ --source-context-dir=source-build \ - --output-image=${output_image} + --output-image=${output_image} \ + --output-insecure=true assert_success # initiate a BuildRun diff --git a/test/e2e/log-follow-F.bats b/test/e2e/log-follow-F.bats index 6ebab219b..791d72210 100644 --- a/test/e2e/log-follow-F.bats +++ b/test/e2e/log-follow-F.bats @@ -23,7 +23,8 @@ teardown() { run shp build create ${build_name} \ --source-git-url=https://github.com/shipwright-io/sample-go \ --source-context-dir=source-build \ - --output-image=${output_image} + --output-image=${output_image} \ + --output-insecure=true assert_success # initiate a BuildRun diff --git a/test/e2e/run-follow.bats b/test/e2e/run-follow.bats index b3b4be3e5..46db05cf3 100644 --- a/test/e2e/run-follow.bats +++ b/test/e2e/run-follow.bats @@ -23,7 +23,8 @@ teardown() { run shp build create ${build_name} \ --source-git-url=https://github.com/shipwright-io/sample-go \ --source-context-dir=source-build \ - --output-image=${output_image} + --output-image=${output_image} \ + --output-insecure=true assert_success # initiate a BuildRun with -F diff --git a/test/e2e/upload.bats b/test/e2e/upload.bats index 082c7fadf..76a2cb118 100644 --- a/test/e2e/upload.bats +++ b/test/e2e/upload.bats @@ -41,7 +41,8 @@ function assert_shp_upload_follow_output() { run shp build create ${build_name} \ --source-git-url="${source_url}" \ --source-context-dir="source-build" \ - --output-image="${output_image}" + --output-image="${output_image}" \ + --output-insecure=true assert_success # cloning the same repository used for the build in the test temporary directory, this is the