Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install a specific kustomize version

I am trying to install kustomize v3.2.1 in Mac, but I am getting the following error when I do these steps.

wget "https://github.com/kubernetes-sigs/kustomize/archive/refs/tags/kustomize/v3.2.1.tar.gz" Untar the source

tar xzf xxxxx.tar.gz cd xxxxxx make install

Output:

go install /cmd/kustomize
make: go: No such file or directory
make: *** [install] Error 1

How can I install this version without any issues? Thanks!

like image 541
cosmos1905-12 Avatar asked Sep 19 '25 10:09

cosmos1905-12


1 Answers

Just download this script and then run:

./install_kustomize.sh [WANTED_VERSION]
like image 112
Jules Avatar answered Sep 22 '25 12:09

Jules