mirror of
https://github.com/kelseyhightower/kubernetes-the-hard-way.git
synced 2025-12-15 01:08:58 +03:00
Get latest Go
This commit is contained in:
@@ -1,11 +1,12 @@
|
||||
# Run End-to-End Tests
|
||||
|
||||
## Install Go
|
||||
## Install latest Go
|
||||
|
||||
```bash
|
||||
wget https://dl.google.com/go/go1.18.linux-amd64.tar.gz
|
||||
GO_VERSION=$(curl -s https://go.dev/VERSION?m=text | head -1)
|
||||
wget https://dl.google.com/go/${GO_VERSION}.linux-amd64.tar.gz
|
||||
|
||||
sudo tar -C /usr/local -xzf go1.18.linux-amd64.tar.gz
|
||||
sudo tar -C /usr/local -xzf ${GO_VERSION}.linux-amd64.tar.gz
|
||||
```
|
||||
|
||||
## Install kubetest
|
||||
|
||||
Reference in New Issue
Block a user