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 #1239

Merged
merged 1 commit into from
Feb 3, 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
8 changes: 4 additions & 4 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.15.2 as builder
FROM golang:1.15.7 as builder

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

ENV TERRAFORM_VERSION "0.12.29"
ENV TERRAFORM_VERSION "0.12.30"
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,11 +37,11 @@ RUN /opt/install-kube-tests-binaries.sh

# resulting image

FROM golang:1.15.2
FROM golang:1.15.7

ARG version

LABEL "io.kubeone"="Loodse GmbH"
LABEL "io.kubeone"="Kubermatic GmbH"
LABEL version=${version}
LABEL description="Set of kubernetes binaries to conduct kubeone E2E tests"
LABEL maintainer="https://github.com/kubermatic/kubeone/blob/master/OWNERS"
Expand Down
7 changes: 3 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,9 @@
set -euox pipefail

declare -A full_versions
full_versions["1.16"]="v1.16.15"
full_versions["1.17"]="v1.17.12"
full_versions["1.18"]="v1.18.9"
full_versions["1.19"]="v1.19.2"
full_versions["1.18"]="v1.18.15"
full_versions["1.19"]="v1.19.7"
full_versions["1.20"]="v1.20.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.12
TAG=v0.1.13

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