Skip to content

Instantly share code, notes, and snippets.

@NorikDavtian
Created June 1, 2018 23:21
Show Gist options
  • Save NorikDavtian/f67bd67bacd64be14ea992675abdd2c9 to your computer and use it in GitHub Desktop.
Save NorikDavtian/f67bd67bacd64be14ea992675abdd2c9 to your computer and use it in GitHub Desktop.

Udacity K8s course notes

https://classroom.udacity.com/courses/ud615/lessons/7826112332/concepts/81473137730923

Download Go:

Note: Cloud Shell comes with an installed Go, but it's not the most recent version, so you should perform the steps below to install the latest Go and set GOPATH.

wget https://storage.googleapis.com/golang/go1.6.2.linux-amd64.tar.gz
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf go1.6.2.linux-amd64.tar.gz
echo "export GOPATH=~/go" >> ~/.bashrc
source ~/.bashrc

Get the code:

mkdir -p $GOPATH/src/github.com/udacity
cd $GOPATH/src/github.com/udacity
git clone https://github.com/udacity/ud615

Get ready for the next lesson

cd ud615/app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment