Skip to content

Instantly share code, notes, and snippets.

@dragonde
Created January 3, 2024 10:04
Show Gist options
  • Save dragonde/a2ddbf64756e92fd965aef166c0d455c to your computer and use it in GitHub Desktop.
Save dragonde/a2ddbf64756e92fd965aef166c0d455c to your computer and use it in GitHub Desktop.
Bashrc - Configuration
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth
# append to the history file, don't overwrite it
shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
## x10
HISTSIZE=10000
HISTFILESIZE=20000
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
#shopt -s globstar
# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi
# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color|*-256color) color_prompt=yes;;
esac
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
;;
*)
;;
esac
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
fi
# colored GCC warnings and errors
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
# alias l='ls -CF'
alias l='ls -lha'
# Add an "alert" alias for long running commands. Use like so:
# sleep 10; alert
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init --path)"
eval "$(pyenv init -)"
# completions
complete -C '/usr/local/bin/aws_completer' aws
complete -C /usr/local/bin/terraform terraform
complete -C /usr/local/bin/terraform tf
source <(kubectl completion bash)
alias k=kubectl
complete -F __start_kubectl k
# shopt -s progcomp_alias
# NOT WORKING WITH BLE.SH
# source <(kubectl completion bash | sed 's/kubectl/k/g')
source <(helm completion bash)
source <(stern --completion=bash)
source <(kind completion bash)
alias my='cd ~/myrepo'
alias re='cd ~/repo'
alias ki='cd ~/repo/plytix-kind'
export PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH"
alias generate_pass='date +%s | sha256sum | base64 | head -c 24 ; echo'
# alias gcurl='curl --header "Authorization: Bearer $(gcloud auth print-identity-token)"'
# alias ins='gcloud compute instances list'
# alias gssh='gcloud compute ssh '
alias running='kubectl get pods -A --field-selector=status.phase=Running --sort-by=".status.containerStatuses[0].restartCount"'
alias pending='kubectl get pods --field-selector=status.phase==Pending'
alias restarts='kubectl get pods -A --sort-by=".status.containerStatuses[0].restartCount"'
alias errors='kubectl get pods -A --field-selector=status.phase!=Running,status.phase!=Succeeded'
alias events='kubectl get events --sort-by=.metadata.creationTimestamp'
alias top_nodes='watch -n 5 kubectl top nodes --use-protocol-buffers'
# alias drain='kubectl drain --force --ignore-daemonsets --delete-emptydir-data'
# alias orders='kubectl get Issuers,ClusterIssuers,Certificates,CertificateRequests,Orders,Challenges --all-namespaces'
# alias multitool='kubectl exec -it multitool -- bash'
# alias sdk="kubectl exec -it sdk -- bash"
# alias disable-linkerd='kubectl -n linkerd scale deploy linkerd-proxy-injector --replicas=0'
# alias enable-linkerd='kubectl -n linkerd scale deploy linkerd-proxy-injector --replicas=1'
dry=(--dry-run=client -o yaml)
now=(--force --grace-period 0)
alias tf='terraform'
alias all-pods='kubectl get po -Aw'
# # alias cha='kubectl get challenges -Aw'
# # functions
# # function tfls {
# # echo -e "\nOutputs:"
# # grep -r "output \".*\"" $1 |awk '{print "\t",$2}' |tr -d '"'
# # echo -e "\nVariables:"
# # grep -r "variable \".*\"" $1 |awk '{print "\t",$2}' |tr -d '"'
# # }
declare -A accounts # dictionary variable
accounts[core]=754941691287
accounts[performance-tests]=754941691287
accounts[testing]=421248876283
accounts[dev]=931562339969
accounts[qa]=399388342772
accounts[stg]=615822578143
accounts[prd]=340942628571
function print-aws-accounts {
for account in "${!accounts[@]}"; do
echo "$account -> ${accounts[$account]}"
done
}
function eks-update-kubeconfig {
if [ "${accounts[$1]}" = "${accounts[core]}" ]; then
aws eks update-kubeconfig --name $1
else
aws eks update-kubeconfig --name $1 --profile $1
fi
kubectl config rename-context arn:aws:eks:eu-west-1:${accounts[$1]}:cluster/$1 $1
}
function eks-update-all-kubeconfigs {
for account in "${!accounts[@]}"; do
eks-update-kubeconfig $account
done
kubectx | grep :eks: | xargs -I{} kubectl config delete-context {}
kubectx dev
kubens default
}
function git-pull-all {
# Loop through each directory in the specified path
for dir in ./*; do
if [ -d "$dir" ]; then
echo "Updating $dir..."
if [ -d "$dir/.git" ]; then
(cd "$dir" && git pull)
else
echo "Skipping $dir - Not a git repository."
fi
fi
done
}
alias eks-delete-all-ctxs=' kubectx | xargs -I{} kubectl config delete-context {}'
export CARGO_TARGET_DIR=~/cargo
# starship
# eval "$(starship init bash)"
alias docker-login='aws ecr get-login-password --region eu-west-1 | docker login --username AWS --password-stdin 754941691287.dkr.ecr.eu-west-1.amazonaws.com'
source ~/auxrepos/kube-ps1/kube-ps1.sh
export KUBE_PS1_SYMBOL_ENABLE=false
export KUBE_PS1_CTX_COLOR=cyan
export KUBE_PS1_NS_COLOR=yellow
PS1='$(kube_ps1) \W \$ '
source ~/.tokens
# ble.sh - yay -S 0.3.4
# source /usr/share/blesh/ble.sh
# source ~/.local/share/blesh/ble.sh
alias 'clean-completed-jobs=kubectl delete jobs --field-selector status.successful=1 -A'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment