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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add minikube #273

Merged
merged 3 commits into from
Jul 6, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 10 additions & 0 deletions deb-get
Original file line number Diff line number Diff line change
Expand Up @@ -1867,6 +1867,16 @@ function deb_youtube-music() {
SUMMARY="Open source, cross-platform, unofficial YouTube Music Desktop App with built-in ad blocker and downloader."
}

function deb_minikube() {
ARCHS_SUPPORTED="amd64 arm64 armhf ppc64el s390x"
get_github_releases "https://api.github.com/repos/kubernetes/minikube/releases/latest"
VERSION_PUBLISHED="$(grep "browser_download_url.*minikube_.*.deb" "${CACHE_DIR}/${APP}.json" | head -n1 | cut -d'"' -f4 | cut -d'/' -f8 | sed 's|v||')"
URL="$(grep "browser_download_url.*minikube_.*_${HOST_ARCH}.deb" "${CACHE_DIR}/${APP}.json" | head -n1 | cut -d'"' -f4)"
PRETTY_NAME="minikube"
WEBSITE="https://minikube.sigs.k8s.io/"
SUMMARY="minikube quickly sets up a local Kubernetes cluster on macOS, Linux, and Windows."
}

function deb_fsearch() {
PPA="ppa:christian-boxdoerfer/fsearch-stable"
PRETTY_NAME="FSearch"
Expand Down