29 lines
1.1 KiB
Ruby
29 lines
1.1 KiB
Ruby
class Kubectx < Formula
|
|
desc "Tool that can switch between kubectl contexts easily and create aliases"
|
|
homepage "https://github.com/ahmetb/kubectx"
|
|
url "https://github.com/ahmetb/kubectx/archive/v0.4.0.tar.gz"
|
|
sha256 "1db44fc6d5af97e2222f6d487f8c80b01fa40e14f50f2c3781f24bc33a58340e"
|
|
head "https://github.com/ahmetb/kubectx.git"
|
|
|
|
bottle :unneeded
|
|
|
|
option "with-short-names", "link as \"kctx\" and \"kns\" instead"
|
|
|
|
depends_on "kubernetes-cli" => [:run, :recommended]
|
|
|
|
def install
|
|
bin.install "kubectx" => build.with?("short-names") ? "kctx" : "kubectx"
|
|
bin.install "kubens" => build.with?("short-names") ? "kns" : "kubens"
|
|
include.install "utils.bash"
|
|
|
|
bash_completion.install "completion/kubectx.bash" => "kubectx"
|
|
bash_completion.install "completion/kubens.bash" => "kubens"
|
|
zsh_completion.install "completion/kubectx.zsh" => "_kubectx"
|
|
zsh_completion.install "completion/kubens.zsh" => "_kubens"
|
|
end
|
|
|
|
test do
|
|
assert_match "USAGE:", shell_output("#{bin}/kubectx -h 2>&1", 1)
|
|
assert_match "USAGE:", shell_output("#{bin}/kubens -h 2>&1", 1)
|
|
end
|
|
end
|