Install minikube from its GitHub repository

This commit is contained in:
Ohad Livne 2025-06-04 22:46:26 +03:00
parent 77a5e344ae
commit 3929472997
Signed by: libohad-dev
GPG key ID: 34FDC68B51191A4D

View file

@ -0,0 +1,14 @@
#! /usr/bin/sh
package=minikube
repo=kubernetes/minikube
resource=minikube-linux-amd64
install_minikube() {
tempfile="$(mktemp)"
cat - > "${tempfile}"
chmod 550 "${tempfile}"
mv "${tempfile}" "$(systemd-path user-binaries)"/minikube
}
github_update "${package}" "${repo}" "${resource}" install_minikube