Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the kubeone-e2e image to Go 1.17.1 #1541

Merged
merged 1 commit into from
Sep 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions hack/images/kubeone-e2e/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@

# building image

FROM golang:1.16.7 as builder
FROM golang:1.17.1 as builder

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

ENV TERRAFORM_VERSION "1.0.4"
ENV TERRAFORM_VERSION "1.0.7"
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 @@ -36,7 +36,7 @@ RUN /opt/install-kube-tests-binaries.sh

# resulting image

FROM golang:1.16.7
FROM golang:1.17.1

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.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"
full_versions["1.19"]="v1.19.15"
full_versions["1.20"]="v1.20.11"
full_versions["1.21"]="v1.21.5"
full_versions["1.22"]="v1.22.2"

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.17
TAG=v0.1.18

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