Skip to content

Commit

Permalink
Upgrade sononuoy to 0.56.2
Browse files Browse the repository at this point in the history
The path for the results directory changed so the junit results file path needs to change.
  • Loading branch information
thomasferrandiz authored and brandond committed Mar 18, 2022
1 parent 8c2a883 commit 8dda958
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.dapper
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN if [ "$(go env GOARCH)" = "amd64" ]; then \
RUN if [ "${ARCH}" == "amd64" ]; then \
go get sigs.k8s.io/kustomize/kustomize/[email protected]; \
fi
ARG SONOBUOY_VERSION=0.18.5
ARG SONOBUOY_VERSION=0.56.2
RUN if [ "${ARCH}" != "arm" ] && [ "${ARCH}" != "s390x" ]; then \
set -x; \
curl -sL "https://github.com/vmware-tanzu/sonobuoy/releases/download/v${SONOBUOY_VERSION}/sonobuoy_${SONOBUOY_VERSION}_linux_${ARCH}.tar.gz" \
Expand Down
2 changes: 1 addition & 1 deletion e2e/cluster/local/scripts/cluster-prepare
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e
: "${DIST?required}"
: "${ALPINE_TAG:=3.14}"
: "${KUBECTL_TAG:=v1.21.9}"
: "${SONOBUOY_TAG:=v0.18.5}"
: "${SONOBUOY_TAG:=v0.56.2}"

docker-image-save() {
echo "Pulling '$1:$2' ..."
Expand Down
2 changes: 1 addition & 1 deletion e2e/suite/zz_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func TestMain(m *testing.M) {
func TestSuite(t *testing.T) {
gomega.RegisterFailHandler(ginkgo.Fail)
ginkgo.RunSpecsWithDefaultAndCustomReporters(t, "E2E SUITE", []ginkgo.Reporter{
reporters.NewJUnitReporter("/tmp/results/junit.xml"),
reporters.NewJUnitReporter("/tmp/sonobuoy/results/junit.xml"),
})
}

Expand Down
2 changes: 1 addition & 1 deletion scripts/e2e-sonobuoy
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export ARCH COMMIT DIST REPO TAG VERSION E2E_CLUSTER=${E2E_CLUSTER:=local} KUBEC
export PATH="$PWD/e2e/cluster/${E2E_CLUSTER}/scripts:$PATH"

e2e-sonobuoy-run() {
: ${SONOBUOY_RUN_SONOBUOY_IMAGE:="sonobuoy/sonobuoy:v0.18.5"}
: ${SONOBUOY_RUN_SONOBUOY_IMAGE:="sonobuoy/sonobuoy:v0.56.2"}
: ${SONOBUOY_RUN_IMAGE_PULL_POLICY:=Never}
: ${SONOBUOY_RUN_WAIT:=10}

Expand Down

0 comments on commit 8dda958

Please sign in to comment.