Skip to content

Commit

Permalink
kubeone-e2e: Go 1.16.7, remove k8s 1.18 binaries and add 1.22 binaries
Browse files Browse the repository at this point in the history
Signed-off-by: Marko Mudrinić <mudrinic.mare@gmail.com>
  • Loading branch information
xmudrii committed Aug 13, 2021
1 parent 4e4e146 commit 11ef47d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions hack/images/kubeone-e2e/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@

# building image

FROM golang:1.16.5 as builder
FROM golang:1.16.7 as builder

RUN apt-get update && apt-get install -y \
unzip \
upx-ucl

ENV TERRAFORM_VERSION "1.0.0"
ENV TERRAFORM_VERSION "1.0.4"
RUN curl -fL https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip | funzip >/usr/local/bin/terraform
RUN chmod +x /usr/local/bin/terraform

Expand All @@ -37,7 +37,7 @@ RUN /opt/install-kube-tests-binaries.sh

# resulting image

FROM golang:1.16.5
FROM golang:1.16.7

ARG version

Expand Down
8 changes: 4 additions & 4 deletions hack/images/kubeone-e2e/install-kube-tests-binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
set -euox pipefail

declare -A full_versions
full_versions["1.18"]="v1.18.17"
full_versions["1.19"]="v1.19.9"
full_versions["1.20"]="v1.20.5"
full_versions["1.21"]="v1.21.0"
full_versions["1.19"]="v1.19.14"
full_versions["1.20"]="v1.20.10"
full_versions["1.21"]="v1.21.4"
full_versions["1.22"]="v1.22.0"

root_dir=${KUBETESTS_ROOT:-"/opt/kube-test"}
tmp_root=${TMP_ROOT:-"/tmp/get-kube"}
Expand Down
2 changes: 1 addition & 1 deletion hack/images/kubeone-e2e/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

set -euox pipefail

TAG=v0.1.16
TAG=v0.1.17

docker build --build-arg version=${TAG} --pull -t kubermatic/kubeone-e2e:${TAG} .
docker push kubermatic/kubeone-e2e:${TAG}

0 comments on commit 11ef47d

Please sign in to comment.