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
#! /bin/bash | |
export REGION=europe-west1 | |
export ZONE=europe-west1-b | |
export JUMP=nucleus-jumphost-296 | |
export FWR=grant-tcp-rule-188 | |
# Assessment 1 | |
gcloud compute instances create $JUMP --machine-type e2-micro --zone=$ZONE |
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
#! /bin/bash | |
go_dir="/usr/local/go" | |
version=${1} | |
version_dir="#unset#" | |
dl_url="#unset#" | |
gos_dir="/usr/local/gos" | |
tar_file=".temp-go.tar.gz" | |
temp_dir=".temp" | |
arch=linux-amd64 |