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

Remove upx from the kubeone-e2e image #1443

Merged
merged 1 commit into from
Aug 13, 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
3 changes: 1 addition & 2 deletions hack/images/kubeone-e2e/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
FROM golang:1.16.7 as builder

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

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
Expand Down
3 changes: 0 additions & 3 deletions hack/images/kubeone-e2e/install-kube-tests-binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@ for version in "${!full_versions[@]}"; do
rm "${directory}"/kubernetes/platforms/linux/amd64/genyaml
rm "${directory}"/kubernetes/platforms/linux/amd64/kubemark
rm "${directory}"/kubernetes/platforms/linux/amd64/linkcheck
if [ "$(command -v upx)" ]; then
upx "${directory}"/kubernetes/platforms/linux/amd64/*
fi
fi
done

Expand Down