Unverified Commit 9d2281a8 authored by Dirk Mueller's avatar Dirk Mueller Committed by GitHub

update sonobuoy to 0.56.4 (#5419)

This appears to be fixing the CI testing in local testing. Signed-off-by: 's avatarDirk Müller <dirk@dmllr.de>
parent 3bd7cdfa
......@@ -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); \
......
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"]
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment