Files
kustomize/INSTALL.md
Jeffrey Regan 5a54c96203 update readmes
2018-05-24 14:13:10 -07:00

638 B

Installation

Download a binary from the release page.

Or try this to grab the latest official release using the command line:

opsys=linux  # or darwin, or windows
curl -s https://api.github.com/repos/kubernetes-sigs/kustomize/releases/latest |\
  grep browser_download |\
  grep $opsys |\
  cut -d '"' -f 4 |\
  xargs curl -O -L
mv kustomize_*_${opsys}_amd64 kustomize
chmod u+x kustomize

To install from head with Go v1.10.1 or higher:

go get github.com/kubernetes-sigs/kustomize