From 75cca9b7d6c0fe4371d122d52a3e844ed19cbb67 Mon Sep 17 00:00:00 2001 From: Zachary Loeber Date: Thu, 20 Feb 2020 15:10:37 -0600 Subject: [PATCH] minikube: new package (#337) Co-authored-by: Maxim Mironenko --- .github/auto-label.yml | 1 + README.md | 1 + docs/targets.md | 1 + vendor/minikube/DESCRIPTION | 1 + vendor/minikube/LICENSE | 1 + vendor/minikube/Makefile | 18 ++++++++++++++++++ vendor/minikube/RELEASE | 1 + vendor/minikube/VERSION | 1 + 8 files changed, 25 insertions(+) create mode 100644 vendor/minikube/DESCRIPTION create mode 100644 vendor/minikube/LICENSE create mode 100644 vendor/minikube/Makefile create mode 100644 vendor/minikube/RELEASE create mode 100644 vendor/minikube/VERSION diff --git a/.github/auto-label.yml b/.github/auto-label.yml index 5bf5131aad..7b73cd772b 100644 --- a/.github/auto-label.yml +++ b/.github/auto-label.yml @@ -79,6 +79,7 @@ vendor/kubens: vendor/kubens/** vendor/kubeval: vendor/kubeval/** vendor/lazydocker: vendor/lazydocker/** vendor/lectl: vendor/lectl/** +vendor/minikube: vendor/minikube/** vendor/misspell: vendor/misspell/** vendor/pack: vendor/pack/** vendor/packer: vendor/packer/** diff --git a/README.md b/README.md index a30e57ffbd..11219345b7 100644 --- a/README.md +++ b/README.md @@ -312,6 +312,7 @@ kubens 0.7.1 Switch faster between clusters and namespac kubeval 0.14.0 Validate your Kubernetes configuration files, supports multiple Kubernetes versions lazydocker 0.8 The lazier way to manage everything docker lectl 0.20 Script to check issued certificates by Let's Encrypt on CTL (Certificate Transparency Log) using https://crt.sh +minikube 1.7.2 Run Kubernetes locally misspell 0.3.4 Correct commonly misspelled English words in source files pack 0.8.1 Create cloud native Buildpacks packer 1.5.0 Packer is a tool for creating identical machine images for multiple platforms from a single source configuration. diff --git a/docs/targets.md b/docs/targets.md index f3a376157c..198512411d 100644 --- a/docs/targets.md +++ b/docs/targets.md @@ -63,6 +63,7 @@ kubens 0.7.1 Switch faster between clusters and namespac kubeval 0.14.0 Validate your Kubernetes configuration files, supports multiple Kubernetes versions lazydocker 0.8 The lazier way to manage everything docker lectl 0.20 Script to check issued certificates by Let's Encrypt on CTL (Certificate Transparency Log) using https://crt.sh +minikube 1.7.2 Run Kubernetes locally misspell 0.3.4 Correct commonly misspelled English words in source files pack 0.8.1 Create cloud native Buildpacks packer 1.5.0 Packer is a tool for creating identical machine images for multiple platforms from a single source configuration. diff --git a/vendor/minikube/DESCRIPTION b/vendor/minikube/DESCRIPTION new file mode 100644 index 0000000000..b8d96b7d0c --- /dev/null +++ b/vendor/minikube/DESCRIPTION @@ -0,0 +1 @@ +Run Kubernetes locally diff --git a/vendor/minikube/LICENSE b/vendor/minikube/LICENSE new file mode 100644 index 0000000000..622901aa99 --- /dev/null +++ b/vendor/minikube/LICENSE @@ -0,0 +1 @@ +Apache-2.0 diff --git a/vendor/minikube/Makefile b/vendor/minikube/Makefile new file mode 100644 index 0000000000..2678acf900 --- /dev/null +++ b/vendor/minikube/Makefile @@ -0,0 +1,18 @@ +## Package - minikube +include ../../tasks/Makefile.package +include ../../tasks/Makefile.apk + +export VENDOR = kubernetes +export PACKAGE_NAME = minikube +export PACKAGE_REPO_NAME = minikube +export DOWNLOAD_URL ?= $(PACKAGE_REPO_URL)/releases/download/v$(PACKAGE_VERSION)/$(PACKAGE_NAME)-$(OS)-$(ARCH) +export APK_BUILD_TEMPLATE ?= APKBUILD.github-binary + +## Uncomment only if you need additional libraries +export APKBUILD_DEPENDS += libc6-compat + +install: + $(call download_binary) + +test: + $(PACKAGE_EXE) version diff --git a/vendor/minikube/RELEASE b/vendor/minikube/RELEASE new file mode 100644 index 0000000000..c227083464 --- /dev/null +++ b/vendor/minikube/RELEASE @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/vendor/minikube/VERSION b/vendor/minikube/VERSION new file mode 100644 index 0000000000..f8a696c8dc --- /dev/null +++ b/vendor/minikube/VERSION @@ -0,0 +1 @@ +1.7.2