Skip to content

Commit ff20157

Browse files
committed
Update kustomizer to 3.8.6
Update kustomizer to 3.8.6 due to issue to download 3.8.0
1 parent f95d9ee commit ff20157

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

deploy/kubernetes/install-kustomize.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pushd $tmpDir >& /dev/null
4141

4242
opsys=windows
4343
if [[ "$OSTYPE" == linux* ]]; then
44-
opsys=linux
44+
opsys=linux_amd64
4545
elif [[ "$OSTYPE" == darwin* ]]; then
4646
opsys=darwin
4747
fi
@@ -50,11 +50,11 @@ curl -s https://api.github.com/repos/kubernetes-sigs/kustomize/releases |\
5050
grep browser_download |\
5151
grep $opsys |\
5252
cut -d '"' -f 4 |\
53-
grep /kustomize/v3.8.0 |\
53+
grep /kustomize/v3.8.6 |\
5454
sort | tail -n 1 |\
5555
xargs curl -s -O -L
5656

57-
tar xzf ./kustomize_v*_${opsys}_amd64.tar.gz
57+
tar xzf ./kustomize_v*_${opsys}.tar.gz
5858

5959
cp ./kustomize $where
6060

0 commit comments

Comments
 (0)