This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Kubernetes Cheat Sheet | |
A cheat sheet for Kubernetes commands. | |
## Kubectl Alias | |
Linux | |
``` | |
alias k=kubectl | |
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- AppleScript to copy a SafeNet MobilePASS OTP. | |
set passwd to "0000" | |
-- Make sure MobilePASS is not running | |
tell application "MobilePASS" | |
quit | |
delay 0.5 | |
end tell | |
-- Start MobilePASS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Docker aliases | |
alias di='docker images' | |
alias dcu='docker-compose up -d' | |
alias dcd='docker-compose down' | |
alias dcb='docker-compose build' | |
alias dps='docker ps' | |
alias db='docker build -t' | |
alias dr='docker run -p ' | |
alias de='docker exec -it ' |