99 lines
3.1 KiB
Bash
99 lines
3.1 KiB
Bash
# If you come from bash you might have to change your $PATH.
|
|
export PATH=$HOME/.bin:/usr/local/bin:$PATH
|
|
|
|
export ZSH="$HOME/.oh-my-zsh"
|
|
|
|
ZSH_THEME="robbyrussell"
|
|
|
|
plugins=(git z fzf asdf direnv emacs yarn)
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
|
|
# Example aliases
|
|
alias dj="poetry run python manage.py $argv"
|
|
alias sysu="systemctl --user $argv"
|
|
alias fsync="find . -type f -name '*.sync-conflict*'"
|
|
alias atlas="ssh atlas.local"
|
|
alias pandora="ssh pandora.unbl.ink"
|
|
alias bastion="ssh bastion.unbl.ink"
|
|
alias pull="git pull --rebase --autostash"
|
|
alias push="git push"
|
|
alias asso="aws sso login --profile $argv"
|
|
|
|
yayup () {
|
|
mv ~/.asdf ~/.asdf.bak
|
|
yay -S --noconfirm archlinux-keyring endeavouros-keyring
|
|
yay -Syu --noconfirm
|
|
mv ~/.asdf.bak ~/.asdf
|
|
}
|
|
|
|
repo_go() {
|
|
asso registries-read
|
|
export PRIVATE_REPO_TOKEN="$(aws codeartifact get-authorization-token --domain sure --query authorizationToken --output text --profile registries-read)"
|
|
export CODEARTIFACT_AUTH_TOKEN="$PRIVATE_REPO_TOKEN"
|
|
poetry config http-basic.codeartifact aws $PRIVATE_REPO_TOKEN
|
|
aws codeartifact login --namespace sureapp --tool npm --repository npm --domain sure --domain-owner 348777858795 --profile registries-read
|
|
}
|
|
|
|
sush() {
|
|
if [[ $1 == "sbx" ]]
|
|
then
|
|
asso sure-inc
|
|
aws eks update-kubeconfig --name surepreme-sandbox-main-cluster --profile sure-inc
|
|
fi
|
|
|
|
if [[ $1 == "qa" ]]
|
|
then
|
|
asso np-farmers
|
|
aws eks update-kubeconfig --name farmers-qa-main-cluster --profile np-farmers
|
|
fi
|
|
|
|
if [[ $1 == "prod" ]]
|
|
then
|
|
asso sure-inc
|
|
echo "from platform_core.apps.core_protections.models import *" | pbcopy
|
|
aws eks update-kubeconfig --name surepreme-production-main-cluster --profile sure-inc
|
|
kubectl exec -it -n bastion $(kubectl get po -n bastion | grep "surepreme.*bastion" | head -n 1 | awk '{print $1}') -- python manage.py shell
|
|
fi
|
|
|
|
if (( $2 ));
|
|
then
|
|
if [[ $2 = "-p" ]]
|
|
then
|
|
echo "Import command is on your clipboard"
|
|
echo "from platform_core.apps.core_protections.models import *" | pbcopy
|
|
kubectl exec -it $(kubectl get pods | fzf | awk '{print $1}'|head -n 1) -- bash -c "python manage.py shell"
|
|
else
|
|
kubectl exec -it $(kubectl get pods | fzf | awk '{print $1}'|head -n 1) -- bash
|
|
fi
|
|
else
|
|
kubectl exec -it $(kubectl get pods | fzf | awk '{print $1}'|head -n 1) -- bash
|
|
fi
|
|
}
|
|
|
|
alias qa="sush qa"
|
|
alias sbx="sush sbx"
|
|
alias prod="sush prod"
|
|
|
|
prep_pg_for_sure() {
|
|
psql -U sure postgres -c "CREATE USER sure SUPERUSER"
|
|
psql -U sure postgres -c "CREATE USER surepremeroot SUPERUSER"
|
|
psql -U sure postgres -c "CREATE USER rdsadmin SUPERUSER"
|
|
}
|
|
refresh_sure_db() {
|
|
echo "This will likely take about 10 minutes"
|
|
asso np-farmers
|
|
aws s3 cp --profile np-farmers s3://farmers-qa-rds-exports/pg_dumps/farmers_latest.pgdump /tmp/qa_farmers_latest.pgdump
|
|
dropdb -U sure surepreme
|
|
createdb -U sure surepreme
|
|
psql -U sure surepreme -c "CREATE EXTENSION postgis"
|
|
pg_restore -d surepreme /tmp/qa_farmers_latest.pgdump
|
|
rm /tmp/qa_farmers_latest.pgdump
|
|
echo "Database `surepreme` successfully restores from QA data"
|
|
}
|
|
|
|
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
|
|
|
|
eval "$(atuin init zsh)"
|