From 52f4d43ddf5dcb6cfd4d1430231af76196d6d86d Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sat, 3 May 2025 13:33:52 +0100 Subject: [PATCH] feat(mise/tools): add stern and kubetail --- config/mise/config.toml | 2 ++ zsh/kubernetes.zsh | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/config/mise/config.toml b/config/mise/config.toml index 76c62be..aff8985 100644 --- a/config/mise/config.toml +++ b/config/mise/config.toml @@ -67,6 +67,7 @@ ruby_install = true "pipx:fonttools" = "latest" "pipx:pipx" = "latest" "pipx:yamllint" = "latest" +"ubi:kubetail-org/kubetail" = { version = "cli/v0.4.4", tag_regex = "^cli\\/v\\d+" } 1password-cli = "latest" actionlint = "latest" argo-rollouts = "latest" @@ -124,6 +125,7 @@ shfmt = "latest" sops = "latest" starship = "latest" staticcheck = "latest" +stern = "latest" talosctl = "latest" taplo = "latest" terraform = "latest" diff --git a/zsh/kubernetes.zsh b/zsh/kubernetes.zsh index c60b7fd..f1df7cf 100644 --- a/zsh/kubernetes.zsh +++ b/zsh/kubernetes.zsh @@ -76,3 +76,11 @@ fi if command-exists helmfile; then setup-completions helmfile "$(command-path helmfile)" helmfile completion zsh fi + +if command-exists stern; then + setup-completions stern "$(command-path stern)" stern --completion zsh +fi + +if command-exists kubetail; then + setup-completions kubetail "$(command-path kubetail)" kubetail completion zsh +fi