Compare commits

...

2 Commits

Author SHA1 Message Date
Eric Renfro b759db9ccb
Added kubectl alias and krew path 2023-11-16 21:36:23 -05:00
Eric Renfro 03d246e406
Updated MySQL hosts to current 2023-11-14 08:51:57 -05:00
3 changed files with 9 additions and 2 deletions

View File

@ -43,6 +43,6 @@ root: ~/
# post: tmux -CC attach -t mysql
windows:
- mariadb1: ssh root@mariadb1
- mariadb2: ssh root@mariadb2
- mysql1: ssh root@mysql1
- mysql2: ssh root@mysql2

View File

@ -0,0 +1,3 @@
if (( ! ${+commands[kubectl]} )); then
alias k=kubectl
fi

View File

@ -0,0 +1,4 @@
if [[ -d "$HOME/.krew/bin" || -n "$KREW_ROOT" ]]; then
export PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH"
fi