mirror of https://github.com/k3s-io/k3s
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
3 years ago
|
ARG GOLANG=golang:1.18.1-alpine3.15
|
||
2 years ago
|
FROM ${GOLANG} as test-base
|
||
6 years ago
|
|
||
2 years ago
|
RUN apk -U --no-cache add bash jq
|
||
|
ENV K3S_SOURCE /go/src/github.com/k3s-io/k3s/
|
||
|
WORKDIR ${K3S_SOURCE}
|
||
|
|
||
|
COPY . ${K3S_SOURCE}
|
||
|
|
||
|
|
||
|
From test-base as test-mods
|
||
|
|
||
|
COPY ./scripts/test-mods /bin/
|
||
|
ENTRYPOINT ["/bin/test-mods"]
|
||
|
|
||
|
From test-base as test-k3s
|
||
|
|
||
|
RUN apk -U --no-cache add git gcc musl-dev docker curl coreutils python3 openssl py3-pip procps
|
||
6 years ago
|
|
||
3 years ago
|
ENV SONOBUOY_VERSION 0.56.5
|
||
6 years ago
|
|
||
4 years ago
|
RUN OS=linux; \
|
||
|
ARCH=$(go env GOARCH); \
|
||
|
RELEASE=$(curl -fs https://storage.googleapis.com/kubernetes-release/release/stable.txt); \
|
||
3 years ago
|
if [ "${ARCH}" == "amd64" ] || [ "${ARCH}" == "arm64" ] || [ "${ARCH}" == "s390x" ]; then \
|
||
4 years ago
|
curl -sL "https://github.com/vmware-tanzu/sonobuoy/releases/download/v${SONOBUOY_VERSION}/sonobuoy_${SONOBUOY_VERSION}_${OS}_${ARCH}.tar.gz" | \
|
||
|
tar -xzf - -C /usr/local/bin; \
|
||
|
fi; \
|
||
|
curl -fsL https://storage.googleapis.com/kubernetes-release/release/${RELEASE}/bin/linux/${ARCH}/kubectl -o /usr/local/bin/kubectl; \
|
||
4 years ago
|
chmod a+x /usr/local/bin/kubectl; \
|
||
|
pip install codespell
|
||
6 years ago
|
|
||
5 years ago
|
ENV TEST_CLEANUP true
|
||
|
|
||
6 years ago
|
ENTRYPOINT ["./scripts/entry.sh"]
|
||
2 years ago
|
CMD ["test"]
|