Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 532 Bytes

tips_and_tricks.md

File metadata and controls

25 lines (19 loc) · 532 Bytes

Before soloving any problem in CKAD exam, atleast do the following to save some time during the exam

Add the following line to you ~/.bashrc or ~/.zshrc and source it using source ~/.bashrc.

alias k=kubectl

Add the following configuration to ~/.vimrc

set expandtab
set tabstop=2
set shiftwidth=2

Create few shorthands like:

export dr="--dry-run=client -o yaml" # for creating yaml file quickly

Delete a pod with 0 grace period:

k delete po <pod-name> --force --grace-period=0