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