DEV Community

Piotr Stapp
Piotr Stapp

Posted on • Updated on • Originally published at stapp.space

Make PowerShell with k8s great again

So, like me, you're using Windows. WSL isn't always reliable (e.g. VPN problems), yet you're working with Kubernetes and require autocomplete tools. I'm the same way :)

Kubectl autocomplete

With bash or zsh, having autocomplete is straightforward. Almost only one command is required to complete the task:

source <(kubectl completion bash)
Enter fullscreen mode Exit fullscreen mode

However, this will obviously not work in PowerShell๐Ÿ˜…. Especially when you look what and how many lines the kubectl completion bash command produces and how many lines it generates:

kubectl completion bash | wc -l
Enter fullscreen mode Exit fullscreen mode

14143 is the correct answer! To implement autocomplete, more than 14k lines of code were written!
How to use it on Windows? Is it possible to move it? Yes, and thankfully, someone else did the legwork for you: https://github.com/mziyabo/PSKubectlCompletion/blob/master/PSKubectlCompletion.psm1

To use autocomplete we will need the PSKubectlCompletion module. Install it with Install-Module PSKubectlCompletion and include with:

Import-Module PSKubectlCompletion
Set-Alias k -Value kubectl
Register-KubectlCompletion
Enter fullscreen mode Exit fullscreen mode

At this point the basics are working quite well. But how about other tools? Like ...

kubectx and kubens

If you never use the original ones these are two simple commands to switch your current Kubernetes context (kubectx) and namespace (kubens). In PowerShell world they should be named rather like Select-KubeContext and Select-KubeNamespace, but I will you aliases instead ๐Ÿ˜œ

And for above someone else did the work for you once more. It's me this time: https://github.com/ptrstpp950/PSKubeContext
How it works? Just let me present a small YouTube:

Great, isn't it? I'm so glad it works that I made and published a module called PSKubeContext

To utilize it, install it with Install-Module PSKubeContext, and simply add the following to your profile:

Import-Module PSKubeContext
Set-Alias kubens -Value Select-KubeNamespace
Set-Alias kubectx -Value Select-KubeContext
Register-PSKubeContextComplete
Enter fullscreen mode Exit fullscreen mode

What's inside:

  • Select-KubeContext or if you prefer alias kubectx
  • Select-KubeNamespace or kubens
  • 100% autocomplete using ๐Ÿ™ˆ๐Ÿ™‰๐Ÿ™Š
  • A menu in command line to select the context/namespace if something goes wrong ๐Ÿ˜…

And that's it. Your PowerShell is great again and works well with Kubernetes CLI.

Top comments (0)