Skip to content

Commit

Permalink
minikube 1.5.0 (new formula)
Browse files Browse the repository at this point in the history
Closes #45603.

Signed-off-by: Rui Chen <[email protected]>
  • Loading branch information
commitay authored and chenrui333 committed Oct 26, 2019
1 parent 6e90df4 commit 1d8d1f6
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions Formula/minikube.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
class Minikube < Formula
desc "Run a Kubernetes cluster locally"
homepage "https://minikube.sigs.k8s.io/"
url "https://github.com/kubernetes/minikube.git",
:tag => "v1.5.0",
:revision => "d1151d93385a70c5a03775e166e94067791fe2d9"
head "https://github.com/kubernetes/minikube.git"

depends_on "go" => :build
depends_on "go-bindata" => :build
depends_on "kubernetes-cli"

def install
system "make"
bin.install "out/minikube"

output = Utils.popen_read("#{bin}/minikube completion bash")
(bash_completion/"minikube").write output

output = Utils.popen_read("#{bin}/minikube completion zsh")
(zsh_completion/"_minikube").write output
end

test do
output = shell_output("#{bin}/minikube version")
assert_match "version: v#{version}", output

(testpath/".minikube/config/config.json").write <<~EOS
{
"vm-driver": "virtualbox"
}
EOS
output = shell_output("#{bin}/minikube config view")
assert_match "vm-driver: virtualbox", output
end
end

0 comments on commit 1d8d1f6

Please sign in to comment.