mirror of https://github.com/portainer/portainer
* fix missing kubectl download (#4802)
parent
84827b8782
commit
81de55fedd
|
@ -4,8 +4,6 @@ PLATFORM=$1
|
|||
ARCH=$2
|
||||
KUBECTL_VERSION=$3
|
||||
|
||||
exit 0
|
||||
|
||||
if [ "${PLATFORM}" == 'linux' ]; then
|
||||
wget -O "dist/kubectl" "https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/${PLATFORM}/${ARCH}/kubectl"
|
||||
chmod +x "dist/kubectl"
|
||||
|
@ -13,3 +11,5 @@ elif [ "${PLATFORM}" == 'windows' ]; then
|
|||
wget -O "dist/kubectl.exe" "https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/windows/amd64/kubectl.exe"
|
||||
chmod +x "dist/kubectl.exe"
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
|
Loading…
Reference in New Issue