As my daily routine highly includes Docker, Kubernetes and OpenShift, I thought that it would be a good idea to prepare and publish a cheat sheet for myself and also for anyone who might find this useful. So let's start with some aliases.
alias dockerauth='cat $HOME/.docker/config.json'
alias dockerps='docker ps --format "table {{.ID}}\t{{.Names}}\t{{.Image}}\t{{.Status}}\t{{.Command}}" --no-trunc'
alias ocsource='source <(oc completion bash)'
alias ocnodelistpods='oc adm manage-node --list-pods'
alias ocnodemaintenanceon='oc adm manage-node --schedulable=false'