Compare commits

..

No commits in common. "37497ee10ae44b0500dbd7aaaa2b35fb30ead6b5" and "495da19e85e946d93e9f8eef1cc415fa27ef58af" have entirely different histories.

2 changed files with 6 additions and 64 deletions

View File

@ -1,64 +0,0 @@
#!/usr/bin/env bash
DEBUG=""
SUPPORTED_APPS="alertmanager argocd grafana happa kibana kyverno prometheus"
print_usage() {
echo "gs-open - open apps on Giant Swarm clusters"
echo " "
echo "gs-open [APP] [INSTALLATION] [WORKLOAD CLUSTER] "
echo " "
echo "Examples:"
echo "> gs-open prometheus gauss"
echo "> gs-open alertmanager gauss mywc1"
echo " "
echo "Options:"
echo "-h, --help show this help text"
echo "--debug show debug log output"
}
POS_ARGS=()
while test $# -gt 0; do
case "$1" in
-h|--help)
print_usage
exit 0
;;
--debug)
DEBUG="--level=debug"
shift
;;
/)
# We want to ignore slash seperators between MC and WC
shift
;;
*)
POS_ARGS+=(`echo $1 | tr '/' ' '`)
shift
;;
esac
done
if [ ${#POS_ARGS[@]} -eq 0 ]; then
POS_ARGS+=(`echo ${SUPPORTED_APPS} | tr ' ' '\n' | fzf`)
fi
if [ ${#POS_ARGS[@]} -eq 1 ]; then
POS_ARGS+=(`opsctl list installations --short | tr ' ' '\n' | fzf`)
fi
case ${#POS_ARGS[@]} in
0)
print_usage
exit 1
;;
2)
echo "✨ Opening ${POS_ARGS[0]} on ${POS_ARGS[1]}"
opsctl open ${DEBUG} --app ${POS_ARGS[0]} --installation ${POS_ARGS[1]}
;;
3)
echo "✨ Opening ${POS_ARGS[0]} on ${POS_ARGS[1]}/${POS_ARGS[2]}"
opsctl open ${DEBUG} --app ${POS_ARGS[0]} --installation ${POS_ARGS[1]} --workload-cluster ${POS_ARGS[2]}
;;
esac

View File

@ -54,3 +54,9 @@ preexec() {
if overridden; then return; fi
printf "\033]0;%s\a" "${1%% *} | $cwd" # Omit construct from $1 to show args
}
# Giant Swarm specific
which opsctl &>/dev/null && opsctl completion zsh > /usr/local/share/zsh/site-functions/_opsctl
which gsctl &>/dev/null && gsctl completion zsh --stdout > /usr/local/share/zsh/site-functions/_gsctl
which devctl &>/dev/null && devctl completion zsh > /usr/local/share/zsh/site-functions/_devctl