homebrew-core/Formula/kubectx.rb
BePsvPT 2b08672da5 kubectx 0.6.2
Closes #34480.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2018-11-27 09:45:07 +01:00

30 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.6.2.tar.gz"
sha256 "95e9b0036bd945948c84e566d750aa178ecd7256fabcdff235f745b6c3d38069"
head "https://github.com/ahmetb/kubectx.git"
bottle :unneeded
option "with-short-names", "link as \"kctx\" and \"kns\" instead"
depends_on "kubernetes-cli" => :recommended
def install
bin.install "kubectx" => build.with?("short-names") ? "kctx" : "kubectx"
bin.install "kubens" => build.with?("short-names") ? "kns" : "kubens"
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"
fish_completion.install "completion/kubectx.fish"
fish_completion.install "completion/kubens.fish"
end
test do
assert_match "USAGE:", shell_output("#{bin}/kubectx -h 2>&1")
assert_match "USAGE:", shell_output("#{bin}/kubens -h 2>&1")
end
end