Created
September 3, 2020 08:08
-
-
Save ssimk0/7e78c48e6fd8e73f69bce948fbc714e2 to your computer and use it in GitHub Desktop.
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
| #!/bin/bash | |
| # Downloads the most recently released kustomize binary | |
| # to your current working directory. | |
| # | |
| # Fails if the file already exists. | |
| where=$PWD | |
| if [ -f $where/kustomize ]; then | |
| echo "A file named kustomize already exists (remove it first)." | |
| exit 1 | |
| fi | |
| tmpDir=`mktemp -d` | |
| if [[ ! "$tmpDir" || ! -d "$tmpDir" ]]; then | |
| echo "Could not create temp dir." | |
| exit 1 | |
| fi | |
| function cleanup { | |
| rm -rf "$tmpDir" | |
| } | |
| trap cleanup EXIT | |
| pushd $tmpDir >& /dev/null | |
| opsys=windows | |
| if [[ "$OSTYPE" == linux* ]]; then | |
| opsys=linux | |
| elif [[ "$OSTYPE" == darwin* ]]; then | |
| opsys=darwin | |
| fi | |
| curl -s https://api.github.com/repos/kubernetes-sigs/kustomize/releases |\ | |
| grep browser_download |\ | |
| grep $opsys |\ | |
| cut -d '"' -f 4 |\ | |
| grep /kustomize/v3.8.0 |\ | |
| sort | tail -n 1 |\ | |
| xargs curl -s -O -L | |
| tar xzf ./kustomize_v*_${opsys}_amd64.tar.gz | |
| cp ./kustomize $where | |
| popd >& /dev/null | |
| ./kustomize version | |
| echo kustomize installed to current directory. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment