From b243bd381cf94588753baf77f5e0085a6db1f12c Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Fri, 6 May 2022 14:05:38 +0200 Subject: Rename kubecontext to kubectx --- .local/bin/kubectx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 .local/bin/kubectx (limited to '.local/bin/kubectx') diff --git a/.local/bin/kubectx b/.local/bin/kubectx new file mode 100755 index 0000000..ac99869 --- /dev/null +++ b/.local/bin/kubectx @@ -0,0 +1,27 @@ +#! /usr/bin/env perl6 + +#| Show all available contexts. +multi sub MAIN () +{ + run << kubectl config get-contexts >>; +} + +#| Switch to a given context. +multi sub MAIN ( + #| The name of the context to switch to. + Str:D $context, +) { + run << kubectl config use-context "$context" >>; +} + +#| Switch to a given namespace in a given context. +multi sub MAIN ( + #| The name of the context to switch to. + Str:D $context, + + #| The name of the namespace to switch to. + Str:D $namespace, +) { + samewith($context); + run << kubectl config set-context --current "--namespace=$namespace" >>; +} -- cgit v1.1