You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
288 B
7 lines
288 B
#!/bin/bash
|
|
set -e
|
|
|
|
curl --silent --location --remote-name "https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv5.4.3/kustomize_v5.4.3_linux_amd64.tar.gz"
|
|
tar -xzvf kustomize_v5.4.3_linux_amd64.tar.gz
|
|
chmod a+x kustomize
|
|
sudo mv kustomize /usr/local/bin/kustomize
|
|
|