diff options
Diffstat (limited to 'zsh/oh-my-zsh/plugins/kubectl')
-rw-r--r-- | zsh/oh-my-zsh/plugins/kubectl/README.md | 137 | ||||
-rw-r--r-- | zsh/oh-my-zsh/plugins/kubectl/kubectl.plugin.zsh | 189 |
2 files changed, 0 insertions, 326 deletions
diff --git a/zsh/oh-my-zsh/plugins/kubectl/README.md b/zsh/oh-my-zsh/plugins/kubectl/README.md deleted file mode 100644 index 579a90b..0000000 --- a/zsh/oh-my-zsh/plugins/kubectl/README.md +++ /dev/null @@ -1,137 +0,0 @@ -# Kubectl plugin - -This plugin adds completion for the [Kubernetes cluster manager](https://kubernetes.io/docs/reference/kubectl/kubectl/), -as well as some aliases for common kubectl commands. - -To use it, add `kubectl` to the plugins array in your zshrc file: - -```zsh -plugins=(... kubectl) -``` - -## Aliases - -| Alias | Command | Description | -|:--------|:------------------------------------|:-------------------------------------------------------------------------------------------------| -| k | `kubectl` | The kubectl command | -| kca | `kubectl --all-namespaces` | The kubectl command targeting all namespaces | -| kaf | `kubectl apply -f` | Apply a YML file | -| keti | `kubectl exec -ti` | Drop into an interactive terminal on a container | -| | | **Manage configuration quickly to switch contexts between local, dev and staging** | -| kcuc | `kubectl config use-context` | Set the current-context in a kubeconfig file | -| kcsc | `kubectl config set-context` | Set a context entry in kubeconfig | -| kcdc | `kubectl config delete-context` | Delete the specified context from the kubeconfig | -| kccc | `kubectl config current-context` | Display the current-context | -| kcgc | `kubectl config get-contexts` | List of contexts available | -| | | **General aliases** | -| kdel | `kubectl delete` | Delete resources by filenames, stdin, resources and names, or by resources and label selector | -| kdelf | `kubectl delete -f` | Delete a pod using the type and name specified in -f argument | -| | | **Pod management** | -| kgp | `kubectl get pods` | List all pods in ps output format | -| kgpw | `kgp --watch` | After listing/getting the requested object, watch for changes | -| kgpwide | `kgp -o wide` | Output in plain-text format with any additional information. For pods, the node name is included | -| kep | `kubectl edit pods` | Edit pods from the default editor | -| kdp | `kubectl describe pods` | Describe all pods | -| kdelp | `kubectl delete pods` | Delete all pods matching passed arguments | -| kgpl | `kgp -l` | Get pods by label. Example: `kgpl "app=myapp" -n myns` | -| kgpn | `kgp -n` | Get pods by namespace. Example: `kgpn kube-system` | -| | | **Service management** | -| kgs | `kubectl get svc` | List all services in ps output format | -| kgsw | `kgs --watch` | After listing all services, watch for changes | -| kgswide | `kgs -o wide` | After listing all services, output in plain-text format with any additional information | -| kes | `kubectl edit svc` | Edit services(svc) from the default editor | -| kds | `kubectl describe svc` | Describe all services in detail | -| kdels | `kubectl delete svc` | Delete all services matching passed argument | -| | | **Ingress management** | -| kgi | `kubectl get ingress` | List ingress resources in ps output format | -| kei | `kubectl edit ingress` | Edit ingress resource from the default editor | -| kdi | `kubectl describe ingress` | Describe ingress resource in detail | -| kdeli | `kubectl delete ingress` | Delete ingress resources matching passed argument | -| | | **Namespace management** | -| kgns | `kubectl get namespaces` | List the current namespaces in a cluster | -| kcn | `kubectl config set-context --current --namespace` | Change current namespace | -| kens | `kubectl edit namespace` | Edit namespace resource from the default editor | -| kdns | `kubectl describe namespace` | Describe namespace resource in detail | -| kdelns | `kubectl delete namespace` | Delete the namespace. WARNING! This deletes everything in the namespace | -| | | **ConfigMap management** | -| kgcm | `kubectl get configmaps` | List the configmaps in ps output format | -| kecm | `kubectl edit configmap` | Edit configmap resource from the default editor | -| kdcm | `kubectl describe configmap` | Describe configmap resource in detail | -| kdelcm | `kubectl delete configmap` | Delete the configmap | -| | | **Secret management** | -| kgsec | `kubectl get secret` | Get secret for decoding | -| kdsec | `kubectl describe secret` | Describe secret resource in detail | -| kdelsec | `kubectl delete secret` | Delete the secret | -| | | **Deployment management** | -| kgd | `kubectl get deployment` | Get the deployment | -| kgdw | `kgd --watch` | After getting the deployment, watch for changes | -| kgdwide | `kgd -o wide` | After getting the deployment, output in plain-text format with any additional information | -| ked | `kubectl edit deployment` | Edit deployment resource from the default editor | -| kdd | `kubectl describe deployment` | Describe deployment resource in detail | -| kdeld | `kubectl delete deployment` | Delete the deployment | -| ksd | `kubectl scale deployment` | Scale a deployment | -| krsd | `kubectl rollout status deployment` | Check the rollout status of a deployment | -| kres | `kubectl set env $@ REFRESHED_AT=...` | Recreate all pods in deployment with zero-downtime | -| | | **Rollout management** | -| kgrs | `kubectl get replicaset` | List all ReplicaSets `rs` created by the deployment | -| kdrs | `kubectl describe replicaset` | Describe ReplicaSet in detail | -| kers | `kubectl edit replicaset` | Edit ReplicaSet from the default editor | -| krh | `kubectl rollout history` | Check the revisions of this deployment | -| kru | `kubectl rollout undo` | Rollback to the previous revision | -| | | **Port forwarding** | -| kpf | `kubectl port-forward` | Forward one or more local ports to a pod | -| | | **Tools for accessing all information** | -| kga | `kubectl get all` | List all resources in ps format | -| kgaa | `kubectl get all --all-namespaces` | List the requested object(s) across all namespaces | -| | | **Logs** | -| kl | `kubectl logs` | Print the logs for a container or resource | -| klf | `kubectl logs -f` | Stream the logs for a container or resource (follow) | -| | | **File copy** | -| kcp | `kubectl cp` | Copy files and directories to and from containers | -| | | **Node management** | -| kgno | `kubectl get nodes` | List the nodes in ps output format | -| keno | `kubectl edit node` | Edit nodes resource from the default editor | -| kdno | `kubectl describe node` | Describe node resource in detail | -| kdelno | `kubectl delete node` | Delete the node | -| | | **Persistent Volume Claim management** | -| kgpvc | `kubectl get pvc` | List all PVCs | -| kgpvcw | `kgpvc --watch` | After listing/getting the requested object, watch for changes | -| kepvc | `kubectl edit pvc` | Edit pvcs from the default editor | -| kdpvc | `kubectl describe pvc` | Describe all pvcs | -| kdelpvc | `kubectl delete pvc` | Delete all pvcs matching passed arguments | -| | | **StatefulSets management** | -| kgss | `kubectl get statefulset` | List the statefulsets in ps format | -| kgssw | `kgss --watch` | After getting the list of statefulsets, watch for changes | -| kgsswide| `kgss -o wide` | After getting the statefulsets, output in plain-text format with any additional information | -| kess | `kubectl edit statefulset` | Edit statefulset resource from the default editor | -| kdss | `kubectl describe statefulset` | Describe statefulset resource in detail | -| kdelss | `kubectl delete statefulset` | Delete the statefulset | -| ksss | `kubectl scale statefulset` | Scale a statefulset | -| krsss | `kubectl rollout status statefulset`| Check the rollout status of a deployment | -| | | **Service Accounts management** | -| kdsa | `kubectl describe sa` | Describe a service account in details | -| kdelsa | `kubectl delete sa` | Delete the service account | -| | | **DaemonSet management** | -| kgds | `kubectl get daemonset` | List all DaemonSets in ps output format | -| kgdsw | `kgds --watch` | After listing all DaemonSets, watch for changes | -| keds | `kubectl edit daemonset` | Edit DaemonSets from the default editor | -| kdds | `kubectl describe daemonset` | Describe all DaemonSets in detail | -| kdelds | `kubectl delete daemonset` | Delete all DaemonSets matching passed argument | -| | | **CronJob management** | -| kgcj | `kubectl get cronjob` | List all CronJobs in ps output format | -| kecj | `kubectl edit cronjob` | Edit CronJob from the default editor | -| kdcj | `kubectl describe cronjob` | Describe a CronJob in details | -| kdelcj | `kubectl delete cronjob` | Delete the CronJob | -| | | **Job management** | -| kgj | `kubectl get job` | List all Job in ps output format | -| kej | `kubectl edit job` | Edit a Job in details | -| kdj | `kubectl describe job` | Describe the Job | -| kdelj | `kubectl delete job` | Delete the Job | - -## Wrappers - -This plugin provides 3 wrappers to colorize kubectl output in JSON and YAML using various tools (which must be installed): - -- `kj`: JSON, colorized with [`jq`](https://stedolan.github.io/jq/). -- `kjx`: JSON, colorized with [`fx`](https://github.com/antonmedv/fx). -- `ky`: YAML, colorized with [`yh`](https://github.com/andreazorzetto/yh). diff --git a/zsh/oh-my-zsh/plugins/kubectl/kubectl.plugin.zsh b/zsh/oh-my-zsh/plugins/kubectl/kubectl.plugin.zsh deleted file mode 100644 index 095d2b3..0000000 --- a/zsh/oh-my-zsh/plugins/kubectl/kubectl.plugin.zsh +++ /dev/null @@ -1,189 +0,0 @@ -if (( $+commands[kubectl] )); then - # If the completion file does not exist, generate it and then source it - # Otherwise, source it and regenerate in the background - if [[ ! -f "$ZSH_CACHE_DIR/completions/_kubectl" ]]; then - kubectl completion zsh | tee "$ZSH_CACHE_DIR/completions/_kubectl" >/dev/null - source "$ZSH_CACHE_DIR/completions/_kubectl" - else - source "$ZSH_CACHE_DIR/completions/_kubectl" - kubectl completion zsh | tee "$ZSH_CACHE_DIR/completions/_kubectl" >/dev/null &| - fi -fi - -# This command is used a LOT both below and in daily life -alias k=kubectl - -# Execute a kubectl command against all namespaces -alias kca='_kca(){ kubectl "$@" --all-namespaces; unset -f _kca; }; _kca' - -# Apply a YML file -alias kaf='kubectl apply -f' - -# Drop into an interactive terminal on a container -alias keti='kubectl exec -t -i' - -# Manage configuration quickly to switch contexts between local, dev ad staging. -alias kcuc='kubectl config use-context' -alias kcsc='kubectl config set-context' -alias kcdc='kubectl config delete-context' -alias kccc='kubectl config current-context' - -# List all contexts -alias kcgc='kubectl config get-contexts' - -# General aliases -alias kdel='kubectl delete' -alias kdelf='kubectl delete -f' - -# Pod management. -alias kgp='kubectl get pods' -alias kgpa='kubectl get pods --all-namespaces' -alias kgpw='kgp --watch' -alias kgpwide='kgp -o wide' -alias kep='kubectl edit pods' -alias kdp='kubectl describe pods' -alias kdelp='kubectl delete pods' -alias kgpall='kubectl get pods --all-namespaces -o wide' - -# get pod by label: kgpl "app=myapp" -n myns -alias kgpl='kgp -l' - -# get pod by namespace: kgpn kube-system" -alias kgpn='kgp -n' - -# Service management. -alias kgs='kubectl get svc' -alias kgsa='kubectl get svc --all-namespaces' -alias kgsw='kgs --watch' -alias kgswide='kgs -o wide' -alias kes='kubectl edit svc' -alias kds='kubectl describe svc' -alias kdels='kubectl delete svc' - -# Ingress management -alias kgi='kubectl get ingress' -alias kgia='kubectl get ingress --all-namespaces' -alias kei='kubectl edit ingress' -alias kdi='kubectl describe ingress' -alias kdeli='kubectl delete ingress' - -# Namespace management -alias kgns='kubectl get namespaces' -alias kens='kubectl edit namespace' -alias kdns='kubectl describe namespace' -alias kdelns='kubectl delete namespace' -alias kcn='kubectl config set-context --current --namespace' - -# ConfigMap management -alias kgcm='kubectl get configmaps' -alias kgcma='kubectl get configmaps --all-namespaces' -alias kecm='kubectl edit configmap' -alias kdcm='kubectl describe configmap' -alias kdelcm='kubectl delete configmap' - -# Secret management -alias kgsec='kubectl get secret' -alias kgseca='kubectl get secret --all-namespaces' -alias kdsec='kubectl describe secret' -alias kdelsec='kubectl delete secret' - -# Deployment management. -alias kgd='kubectl get deployment' -alias kgda='kubectl get deployment --all-namespaces' -alias kgdw='kgd --watch' -alias kgdwide='kgd -o wide' -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' - -function kres(){ - kubectl set env $@ REFRESHED_AT=$(date +%Y%m%d%H%M%S) -} - -# Rollout management. -alias kgrs='kubectl get replicaset' -alias kdrs='kubectl describe replicaset' -alias kers='kubectl edit replicaset' -alias krh='kubectl rollout history' -alias kru='kubectl rollout undo' - -# Statefulset management. -alias kgss='kubectl get statefulset' -alias kgssa='kubectl get statefulset --all-namespaces' -alias kgssw='kgss --watch' -alias kgsswide='kgss -o wide' -alias kess='kubectl edit statefulset' -alias kdss='kubectl describe statefulset' -alias kdelss='kubectl delete statefulset' -alias ksss='kubectl scale statefulset' -alias krsss='kubectl rollout status statefulset' - -# Port forwarding -alias kpf="kubectl port-forward" - -# Tools for accessing all information -alias kga='kubectl get all' -alias kgaa='kubectl get all --all-namespaces' - -# Logs -alias kl='kubectl logs' -alias kl1h='kubectl logs --since 1h' -alias kl1m='kubectl logs --since 1m' -alias kl1s='kubectl logs --since 1s' -alias klf='kubectl logs -f' -alias klf1h='kubectl logs --since 1h -f' -alias klf1m='kubectl logs --since 1m -f' -alias klf1s='kubectl logs --since 1s -f' - -# File copy -alias kcp='kubectl cp' - -# Node Management -alias kgno='kubectl get nodes' -alias keno='kubectl edit node' -alias kdno='kubectl describe node' -alias kdelno='kubectl delete node' - -# PVC management. -alias kgpvc='kubectl get pvc' -alias kgpvca='kubectl get pvc --all-namespaces' -alias kgpvcw='kgpvc --watch' -alias kepvc='kubectl edit pvc' -alias kdpvc='kubectl describe pvc' -alias kdelpvc='kubectl delete pvc' - -# Service account management. -alias kdsa="kubectl describe sa" -alias kdelsa="kubectl delete sa" - -# DaemonSet management. -alias kgds='kubectl get daemonset' -alias kgdsw='kgds --watch' -alias keds='kubectl edit daemonset' -alias kdds='kubectl describe daemonset' -alias kdelds='kubectl delete daemonset' - -# CronJob management. -alias kgcj='kubectl get cronjob' -alias kecj='kubectl edit cronjob' -alias kdcj='kubectl describe cronjob' -alias kdelcj='kubectl delete cronjob' - -# Job management. -alias kgj='kubectl get job' -alias kej='kubectl edit job' -alias kdj='kubectl describe job' -alias kdelj='kubectl delete job' - -# Only run if the user actually has kubectl installed -if (( ${+_comps[kubectl]} )); then - function kj() { kubectl "$@" -o json | jq; } - function kjx() { kubectl "$@" -o json | fx; } - function ky() { kubectl "$@" -o yaml | yh; } - - compdef kj=kubectl - compdef kjx=kubectl - compdef ky=kubectl -fi |