kubectl.plugin.zsh 2.97 KB
Newer Older
1
2
if (( $+commands[kubectl] )); then
    __KUBECTL_COMPLETION_FILE="${ZSH_CACHE_DIR}/kubectl_completion"
Patrick Stadler's avatar
Patrick Stadler committed
3

4
5
6
    if [[ ! -f $__KUBECTL_COMPLETION_FILE ]]; then
        kubectl completion zsh >! $__KUBECTL_COMPLETION_FILE
    fi
7

8
    [[ -f $__KUBECTL_COMPLETION_FILE ]] && source $__KUBECTL_COMPLETION_FILE
9

10
    unset __KUBECTL_COMPLETION_FILE
Patrick Stadler's avatar
Patrick Stadler committed
11
fi
12

13
alias ku=kubectl
14

15
16
17
# Execute a kubectl command against all namespaces
alias kca='f(){ kubectl "$@" --all-namespaces;  unset -f f; }; f'

18
# Apply a YML file
19
alias kaf='kubectl apply -f'
20

21
# Drop into an interactive terminal on a container
22
alias keti='kubectl exec -ti'
23
24

# Manage configuration quickly to switch contexts between local, dev ad staging.
25
26
27
28
alias kcuc='kubectl config use-context'
alias kcsc='kubectl config set-context'
alias kcdc='kubectl config delete-context'
alias kccc='kubectl config current-context'
29

30
31
32
33
# General aliases
alias kdel='kubectl delete'
alias kdelf='kubectl delete -f'

34
# Pod management.
35
alias kgp='kubectl get pods'
36
37
alias kgpw='kgp --watch'
alias kgpwide='kgp -o wide'
38
39
40
alias kep='kubectl edit pods'
alias kdp='kubectl describe pods'
alias kdelp='kubectl delete pods'
41

42
# get pod by label: kgpl "app=myapp" -n myns
Kayla Altepeter's avatar
Kayla Altepeter committed
43
alias kgpl='kgp -l'
44

45
# Service management.
46
alias kgs='kubectl get svc'
47
48
alias kgsw='kgs --watch'
alias kgswide='kgs -o wide'
49
50
51
alias kes='kubectl edit svc'
alias kds='kubectl describe svc'
alias kdels='kubectl delete svc'
52

53
# Ingress management
54
55
56
57
alias kgi='kubectl get ingress'
alias kei='kubectl edit ingress'
alias kdi='kubectl describe ingress'
alias kdeli='kubectl delete ingress'
58

59
60
61
62
63
# Namespace management
alias kgns='kubectl get namespaces'
alias kens='kubectl edit namespace'
alias kdns='kubectl describe namespace'
alias kdelns='kubectl delete namespace'
64
alias kcn='kubectl config set-context $(kubectl config current-context) --namespace'
65
66
67
68
69
70
71

# ConfigMap management
alias kgcm='kubectl get configmaps'
alias kecm='kubectl edit configmap'
alias kdcm='kubectl describe configmap'
alias kdelcm='kubectl delete configmap'

72
# Secret management
73
74
75
alias kgsec='kubectl get secret'
alias kdsec='kubectl describe secret'
alias kdelsec='kubectl delete secret'
76
77

# Deployment management.
78
alias kgd='kubectl get deployment'
79
80
alias kgdw='kgd --watch'
alias kgdwide='kgd -o wide'
81
82
83
84
85
alias ked='kubectl edit deployment'
alias kdd='kubectl describe deployment'
alias kdeld='kubectl delete deployment'
alias ksd='kubectl scale deployment'
alias krsd='kubectl rollout status deployment'
86
87
88
kres(){
    kubectl set env $@ REFRESHED_AT=$(date +%Y%m%d%H%M%S)
}
89
90

# Rollout management.
91
92
93
alias kgrs='kubectl get rs'
alias krh='kubectl rollout history'
alias kru='kubectl rollout undo'
94

95
# Port forwarding
96
97
98
99
100
alias kpf="kubectl port-forward"

# Tools for accessing all information
alias kga='kubectl get all'
alias kgaa='kubectl get all --all-namespaces'
101

102
# Logs
103
104
alias kl='kubectl logs'
alias klf='kubectl logs -f'
105

106
107
108
# File copy
alias kcp='kubectl cp'

109
110
111
112
# Node Management
alias kgno='kubectl get nodes'
alias keno='kubectl edit node'
alias kdno='kubectl describe node'
Kayla Altepeter's avatar
Kayla Altepeter committed
113
alias kdelno='kubectl delete node'