kubectl.plugin.zsh 1.43 KB
Newer Older
Patrick Stadler's avatar
Patrick Stadler committed
1
2
3
4
5
6
7
# Autocompletion for kubectl, the command line interface for Kubernetes
#
# Author: https://github.com/pstadler

if [ $commands[kubectl] ]; then
  source <(kubectl completion zsh)
fi
8
9
10
11

# This command is used ALOT both below and in daily life
alias k=kubectl

12
13
14
# Apply a YML file
alias kaf='k apply -f'

15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Drop into an interactive terminal on a container
alias keti='k exec -ti'

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

# Pod management.
alias kgp='k get pods'
alias kep='k edit pods'
alias kdp='k describe pods'
alias kdelp='k delete pods'

# Service management.
alias kgs='k get svc'
alias kes='k edit svc'
alias kds='k describe svc'
alias kdels='k delete svc'

36
37
38
39
40
41
# Ingress management
alias kgi='k get ingress'
alias kei='k edit ingress'
alias kdi='k describe ingress'
alias kdeli='k delete ingress'

42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Secret management
alias kgsec='k get secret'
alias kdsec='k describe secret'
alias kdelsec='k delete secret'

# Deployment management.
alias kgd='k get deployment'
alias ked='k edit deployment'
alias kdd='k describe deployment'
alias kdeld='k delete deployment'
alias ksd='k scale deployment'
alias krsd='k rollout status deployment'

# Rollout management.
alias kgrs='k get rs'
alias krh='k rollout history'
alias kru='k rollout undo'
59
60
61
62

# Logs
alias kl='k logs'
alias klf='k logs -f'