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

Add architecture to the installation instructions #9804

Closed
afbjorklund opened this issue Nov 30, 2020 · 2 comments · Fixed by #9859
Closed

Add architecture to the installation instructions #9804

afbjorklund opened this issue Nov 30, 2020 · 2 comments · Fixed by #9859
Labels
area/build-release kind/documentation Categorizes issue or PR as related to documentation. priority/important-soon Must be staffed and worked on either currently, or very soon, ideally in time for the next release.
Milestone

Comments

@afbjorklund
Copy link
Collaborator

Currently hardcoded:

Binary download

 curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
 sudo install minikube-linux-amd64 /usr/local/bin/minikube

Debian package

curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube_latest_amd64.deb
sudo dpkg -i minikube_latest_amd64.deb

RPM package

curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-latest.x86_64.rpm
sudo rpm -ivh minikube-latest.x86_64.rpm

This needs to also support other architectures, starting with arm64.

Binary download

 curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-arm64
 sudo install minikube-linux-arm64 /usr/local/bin/minikube

Debian package

curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube_latest_arm64.deb
sudo dpkg -i minikube_latest_arm64.deb

RPM package

curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-latest.aarch64.rpm
sudo rpm -ivh minikube-latest.aarch64.rpm
@afbjorklund afbjorklund added area/build-release kind/documentation Categorizes issue or PR as related to documentation. labels Nov 30, 2020
@afbjorklund
Copy link
Collaborator Author

Related: #6159

@afbjorklund afbjorklund added the priority/important-soon Must be staffed and worked on either currently, or very soon, ideally in time for the next release. label Nov 30, 2020
@afbjorklund afbjorklund added this to the v1.16.0 milestone Nov 30, 2020
@afbjorklund
Copy link
Collaborator Author

afbjorklund commented Dec 5, 2020

Currently missing an arm32 package, for Raspbian... The binary is available, though:

https://storage.googleapis.com/minikube/releases/latest/minikube-linux-arm

minikube-linux-arm:   ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), statically linked, Go BuildID=sHe2GxxwO7hfPBS2TkpL/6j13wiLJgaevKPm8umrR/qxsKn5Jp8_OcVHfiRaR5/lIf-1mQYhpZiVExswFL0, not stripped
minikube-linux-arm64: ELF 64-bit LSB executable, ARM aarch64, version 1 (SYSV), statically linked, Go BuildID=VUxz5Yg5zvihiQvCDc9h/jisdn4pMJfVN9RugXHZu/y1VrpW9ve83FE1cJ6oPw/3VZKA_SX0bpD13lnbxRZ, not stripped
$ ./minikube-linux-arm version
minikube version: v1.15.1
commit: 23f40a012abb52eff365ff99a709501a61ac5876
$ ./minikube-linux-arm64 version
minikube version: v1.15.1
commit: 23f40a012abb52eff365ff99a709501a61ac5876

See #9762

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/build-release kind/documentation Categorizes issue or PR as related to documentation. priority/important-soon Must be staffed and worked on either currently, or very soon, ideally in time for the next release.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant