These files are always sourced (never executed directly), so the #!/bin/bash shebang is inert and misleading. Drop it consistently across rc.d/*, profile.d/*, and aliases.d/*.
20 lines
987 B
Plaintext
20 lines
987 B
Plaintext
if (command -v kubectl &>/dev/null); then
|
|
|
|
# create some usefull aliases
|
|
alias k="kubectl"
|
|
alias kg="kubectl get"
|
|
alias kd="kubectl describe"
|
|
|
|
alias ks="kubectl --namespace kube-system"
|
|
alias ksg="kubectl --namespace kube-system get"
|
|
alias ksd="kubectl --namespace kube-system describe"
|
|
alias kga="kubectl get --all-namespaces"
|
|
alias kuc="kubectl config unset current-context"
|
|
alias kun="kubectl config set-context --current --namespace="
|
|
|
|
alias kgnodes="kubectl get nodes --label-columns topology.kubernetes.io/region,topology.kubernetes.io/zone"
|
|
alias kgmasters="kubectl get nodes --selector 'node-role.kubernetes.io/control-plane' --label-columns topology.kubernetes.io/region,topology.kubernetes.io/zone"
|
|
alias kgworkers="kubectl get nodes --selector '!node-role.kubernetes.io/control-plane' --label-columns topology.kubernetes.io/region,topology.kubernetes.io/zone"
|
|
alias kgtaints="kubectl get nodes --output custom-columns=NAME:.metadata.name,TAINTS:.spec.taints"
|
|
fi
|