Created
December 10, 2018 14:19
-
-
Save yogeek/7296f046a764f00f353ad8e0595fb2ef to your computer and use it in GitHub Desktop.
OneLiner
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
function kubespy_install() { | |
KUBESPY_VERSION=${1:-v0.4.0} | |
curl -sSL https://github.com/pulumi/kubespy/releases/download/${KUBESPY_VERSION}/kubespy-linux-amd64.tar.gz | sudo tar -xzf - -C /usr/local/bin/ --strip-components=2 releases/kubespy-linux-amd64/kubespy && sudo chmod +x /usr/local/bin/kubespy && kubespy version | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment