config/shell/server: remove extraneous settings

This commit is contained in:
xeruf 2022-05-10 14:25:00 +01:00
parent 30fa212e43
commit 6f7be7cdef
1 changed files with 2 additions and 3 deletions

View File

@ -15,7 +15,8 @@ stack() {
export _cluster_ip="$(ssh -G "$_cluster_name" | grep --max-count 1 "^hostname " | cut -d " " -f2-)" export _cluster_ip="$(ssh -G "$_cluster_name" | grep --max-count 1 "^hostname " | cut -d " " -f2-)"
export CLUSTER_DIR="$STACKSPIN/clusters/$_cluster_name" export CLUSTER_DIR="$STACKSPIN/clusters/$_cluster_name"
export KUBECONFIG="$CLUSTER_DIR/kube_config_cluster.yml" export KUBECONFIG="$CLUSTER_DIR/kube_config_cluster.yml"
export GITLAB_CI="true" # Uncomment the line below to always use the main stackspin repo, even when running in a fork.
#export GITLAB_CI="true"
echo Selected "$_cluster_name" with IP "$_cluster_ip" echo Selected "$_cluster_name" with IP "$_cluster_ip"
echo "$_cluster_name" >"$_stackspin_cluster_cache" echo "$_cluster_name" >"$_stackspin_cluster_cache"
;; ;;
@ -47,5 +48,3 @@ stack() {
} }
cat "$_stackspin_cluster_cache" 2>/dev/null | cat "$_stackspin_cluster_cache" 2>/dev/null |
while read cluster; do stack select "$cluster"; done while read cluster; do stack select "$cluster"; done
cd "$HOME/stackspout"