X-Git-Url: https://gerrit.akraino.org/r/gitweb?p=validation.git;a=blobdiff_plain;f=docker%2Fk8s%2FDockerfile;h=06c21c958de912658b694e7a06444cef6a4723e1;hp=48ebee91d20b331f063bb57f2e2ca044a8b1178f;hb=483f9669541c8cc9b8c492eab91c306c0fa434dd;hpb=b21eff6b17f5aa5208510bf92e600744e270cd65 diff --git a/docker/k8s/Dockerfile b/docker/k8s/Dockerfile index 48ebee9..06c21c9 100644 --- a/docker/k8s/Dockerfile +++ b/docker/k8s/Dockerfile @@ -18,12 +18,15 @@ FROM golang:alpine3.9 as build # Sonobuoy supports Kubernetes versions 1.11, 1.12 and 1.13 -ARG K8S_TAG=v1.13.0 +ARG SB_TAG=v0.14.3 +# Determine the latest stable git tag at build time based on stable major version +ARG K8S_VER=1.15 # Install dependencies COPY pip-requirements.txt /wheels/requirements/pip-requirements.txt RUN apk --no-cache add --update \ + curl \ openssl \ python3 \ bash \ @@ -45,12 +48,16 @@ RUN git clone https://github.com/kubernetes/kubernetes /src/k8s.io/kubernetes RUN if [ $(uname -m) == 'aarch64' ]; then HOST_ARCH=arm64; else HOST_ARCH=amd64; fi && \ echo "Building docker on $HOST_ARCH" && \ cd /src/k8s.io/kubernetes && \ - git checkout $K8S_TAG && \ + git checkout $(curl \ + https://storage.googleapis.com/kubernetes-release/release/stable-$K8S_VER.txt) && \ make kubectl ginkgo && \ make WHAT=test/e2e/e2e.test ARCH=$HOST_ARCH -RUN go get -u -v github.com/heptio/sonobuoy -RUN git clone https://gerrit.akraino.org/r/validation /opt/akraino/validation/repo -RUN cat /opt/akraino/validation/repo/bluval/requirements.txt >> \ +RUN go get -d github.com/heptio/sonobuoy && \ + cd /go/src/github.com/heptio/sonobuoy && \ + git checkout $SB_TAG && \ + go install +RUN git clone https://gerrit.akraino.org/r/validation /opt/akraino/validation +RUN cat /opt/akraino/validation/bluval/requirements.txt >> \ /wheels/requirements/pip-requirements.txt WORKDIR /wheels @@ -62,12 +69,9 @@ FROM python:3.6-alpine3.9 COPY --from=build /src/k8s.io/kubernetes/_output/bin /usr/local/bin COPY --from=build /go/bin/sonobuoy /bin/sonobuoy COPY --from=build /wheels /wheels -COPY --from=build /opt/akraino/validation/repo /opt/akraino/validation/repo +COPY --from=build /opt/akraino/validation/ /opt/akraino/validation/ RUN pip3 install -r /wheels/requirements/pip-requirements.txt \ -f /wheels && \ rm -rf /wheels && \ rm -rf /root/.cache/pip/* - -# Set the default command for running the tests -CMD python3 /opt/akraino/validation/repo/bluval/bluval.py base -l k8s