This file contains hidden or 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
# AlpineLinux with a glibc-2.21 and Oracle Java 8 | |
FROM alpine:3.2 | |
MAINTAINER Rajdeep Bhattacharya | |
# Install cURL | |
RUN apk --update add wget ca-certificates tar |
This file contains hidden or 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
alias k='kubectl' | |
alias kgp='kubectl get pods' | |
alias kgs='kubectl get svc' | |
alias kgcs='kubectl get componentstatuses' | |
alias kctx='kubectl config current-context' | |
alias kcux='kubectl config use-context' | |
alias kcgx='kubectl config get-context' | |
alias kgd='kubectl get deployment' | |
alias kge='kubectl get endpoints' | |
alias kgn='kubectl get nodes' |