aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/kubernetes-cli.rb
diff options
context:
space:
mode:
authorMatthias Nuessler2015-02-28 00:11:30 +0100
committerTim D. Smith2015-03-02 17:34:43 -0800
commit7230d9e81404123b1c2f624fe36992d2bf298e0f (patch)
treeceafbb6cae06c244efb618d6cbe91bb9b7f2af40 /Library/Formula/kubernetes-cli.rb
parent165a6225a6bb45c229a2f92d81ba6f7657e39bcd (diff)
downloadhomebrew-7230d9e81404123b1c2f624fe36992d2bf298e0f.tar.bz2
kubernetes-cli 0.11.0
Closes #37259. Signed-off-by: Tim D. Smith <git@tim-smith.us>
Diffstat (limited to 'Library/Formula/kubernetes-cli.rb')
-rw-r--r--Library/Formula/kubernetes-cli.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/Library/Formula/kubernetes-cli.rb b/Library/Formula/kubernetes-cli.rb
index fa36994c3..1610e9b04 100644
--- a/Library/Formula/kubernetes-cli.rb
+++ b/Library/Formula/kubernetes-cli.rb
@@ -1,7 +1,7 @@
class KubernetesCli < Formula
homepage "http://kubernetes.io/"
- url "https://github.com/GoogleCloudPlatform/kubernetes/archive/v0.10.1.tar.gz"
- sha256 "76000917bae4d8002884f24d33aa3ed23938fd1e39e89c73b8dfdd2d9c06fe24"
+ url "https://github.com/GoogleCloudPlatform/kubernetes/archive/v0.11.0.tar.gz"
+ sha256 "5eceee178649b12fbbae3a484457f067468db1811945502a36778c5e8807b2ff"
bottle do
cellar :any
@@ -18,11 +18,10 @@ class KubernetesCli < Formula
system "make", "all", "WHAT=cmd/*", "GOFLAGS=-v"
dir = "_output/local/bin/darwin/#{arch}"
- bin.install "#{dir}/kubecfg", "#{dir}/kubectl", "#{dir}/kubernetes"
+ bin.install "#{dir}/kubectl", "#{dir}/kubernetes"
end
test do
- assert_match /^Usage: kubecfg/, shell_output("#{bin}/kubecfg 2>&1", 1)
assert_match /^kubectl controls the Kubernetes cluster manager./, shell_output("#{bin}/kubectl 2>&1", 0)
assert_match %r{^Usage of #{bin}/kubernetes:}, shell_output("#{bin}/kubernetes --help 2>&1", 2)
end