mirror of
https://github.com/ahmetb/kubectx.git
synced 2025-09-09 12:29:07 +00:00
This allows linking as "kctx" and "kns" to prevent overlap with kubectl Tab completion when user hits `ku<Tab>`. Fixes #3. Also fixed variables KUBECTX and PREV leaking to zsh shell once the _kubectx function is invoked. Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
27 lines
1.1 KiB
Ruby
27 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.2.0.tar.gz"
|
|
sha256 "28069aff84aaba1aa38f42d3b27e64e460a5c0651fb56b1748f44fd832d912e3"
|
|
head "https://github.com/ahmetb/kubectx.git", :branch => "short-names"
|
|
bottle :unneeded
|
|
|
|
option "with-short-names", "link as \"kctx\" and \"kns\" instead"
|
|
|
|
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
|
|
system "which", build.with?("short-names") ? "kctx" : "kubectx"
|
|
system "which", build.with?("short-names") ? "kns" : "kubens"
|
|
end
|
|
end
|