Browse Source

update sonobuoy to 0.56.4 (#5419)

This appears to be fixing the CI testing in local testing.

Signed-off-by: Dirk Müller <dirk@dmllr.de>
pull/5429/head
Dirk Mueller 3 years ago committed by GitHub
parent
commit
9d2281a8db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Dockerfile.test.dapper
  2. 8
      conformance/Dockerfile
  3. 2
      conformance/run-test.sh

2
Dockerfile.test.dapper

@ -3,7 +3,7 @@ FROM ${GOLANG}
RUN apk -U --no-cache add bash git gcc musl-dev docker curl jq coreutils python3 openssl py3-pip procps
ENV SONOBUOY_VERSION 0.55.0
ENV SONOBUOY_VERSION 0.56.4
RUN OS=linux; \
ARCH=$(go env GOARCH); \

8
conformance/Dockerfile

@ -1,6 +1,6 @@
FROM ubuntu:18.04
RUN apt-get update && \
apt-get install -y curl
RUN curl -sfL https://github.com/vmware-tanzu/sonobuoy/releases/download/v0.19.0/sonobuoy_0.19.0_linux_amd64.tar.gz | tar xvzf - -C /usr/bin
FROM alpine:3.15
ENV SONOBUOY_VERSION 0.56.4
RUN apk add curl tar gzip
RUN curl -sfL https://github.com/vmware-tanzu/sonobuoy/releases/download/v${SONOBUOY_VERSION}/sonobuoy_${SONOBUOY_VERSION}_linux_amd64.tar.gz | tar xvzf - -C /usr/bin
COPY run-test.sh /usr/bin
CMD ["/usr/bin/run-test.sh"]

2
conformance/run-test.sh

@ -11,6 +11,6 @@ sed 's/localhost/server/g' /etc/rancher/k3s/k3s.yaml > /root/.kube/config
export KUBECONFIG=/root/.kube/config
cat /etc/rancher/k3s/k3s.yaml
cat $KUBECONFIG
sonobuoy run --sonobuoy-image=rancher/sonobuoy-sonobuoy:v0.19.0
sonobuoy run --sonobuoy-image=rancher/sonobuoy-sonobuoy:v0.56.4
sleep 15
sonobuoy logs -f

Loading…
Cancel
Save