Skip to content

Instantly share code, notes, and snippets.

@niiku-y
Created December 8, 2018 12:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niiku-y/769a911cd0fe654ca0e823398adf0228 to your computer and use it in GitHub Desktop.
Save niiku-y/769a911cd0fe654ca0e823398adf0228 to your computer and use it in GitHub Desktop.
#!/bin/bash
# install_rke.sh
echo "install rke : "
wget https://github.com/rancher/rke/releases/download/v0.1.11/rke_linux-amd64
chmod +x rke_linux-amd64
sudo mv rke_linux-amd64 /usr/local/bin/rke
echo "rke : "
which rke
echo "version : "
rke --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment