Skip to content

Instantly share code, notes, and snippets.

@gvych
Created June 12, 2020 10:01
Show Gist options
  • Save gvych/cd1c8a5975904021d674104e73376cba to your computer and use it in GitHub Desktop.
Save gvych/cd1c8a5975904021d674104e73376cba to your computer and use it in GitHub Desktop.
GitHub Actions + Amazon Managed Kubernetes (AWS EKS) cli tools installation on Linux
curl -fsSL https://github.com/derailed/k9s/releases/download/0.8.2/k9s_0.8.2_Linux_x86_64.tar.gz | tar -xvz -f - -C /usr/local/bin/ k9s
curl -fsSL https://storage.googleapis.com/kubernetes-helm/helm-v2.8.1-linux-amd64.tar.gz | \
sudo tar -xvz --strip=1 -f - -C /usr/local/bin/ linux-amd64/helm
curl -L "https://github.com/docker/compose/releases/download/1.25.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
wget -O - https://get.docker.com/ | sh
mkdir -p ~/bin; cd ~/bin; curl -L https://raw.githubusercontent.com/flant/multiwerf/master/get.sh | bash
type multiwerf && . $(multiwerf use 1.1 stable --as-file)
curl https://raw.githubusercontent.com/nektos/act/master/install.sh | sudo bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment