fix: kub commands using wrong fuzzy finder
All checks were successful
/ build-host (map[host:beefcake]) (push) Successful in 33s
/ build-host (map[host:dragon]) (push) Successful in 45s
/ build-host (map[host:flipflop]) (push) Successful in 40s
/ build-host (map[host:foxtrot]) (push) Successful in 45s
/ build-host (map[host:rascal]) (push) Successful in 19s
/ build-host (map[host:router]) (push) Successful in 24s
/ build-host (map[host:steamdeck]) (push) Successful in 42s
/ build-devshell (push) Successful in 18s
/ flake-check (push) Successful in 5m48s

This commit is contained in:
Daniel Flanagan 2025-03-26 16:38:00 -05:00
parent 713ac8a396
commit 03f0baea26
2 changed files with 2 additions and 2 deletions

View file

@ -5,5 +5,5 @@ kubectl config get-contexts --no-headers | \
tr -s ' ' | \
sed -E 's/^\*?[[:space:]]*//g' | \
cut -d ' ' -f1 | \
sk | \
fzf | \
xargs -I{} kubectl config use-context '{}'

View file

@ -8,5 +8,5 @@ kubectl get namespaces --show-labels | \
uniq | \
sort | \
cut -d ' ' -f1 | \
sk | \
fzf | \
xargs -I{} kubectl config set-context --current --namespace='{}'