Skip to content
This repository was archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
Use v0.5.0 in quickstart install script
Browse files Browse the repository at this point in the history
  • Loading branch information
recharte committed Nov 21, 2023
1 parent 777b31c commit 1a22bf6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ then
exit
fi

latest_release=$(curl -s https://api.github.com/repos/percona/percona-everest-cli/releases/latest | grep '"tag_name"' | sed -E 's/.*"([^"]+)".*/\1/')
os=$(uname -s | tr '[:upper:]' '[:lower:]')
arch=$(uname -m | tr '[:upper:]' '[:lower:]')

Expand All @@ -22,8 +21,8 @@ fi


echo "Downloading the latest release of Percona Everest CLI"
echo "https://github.com/percona/percona-everest-cli/releases/download/${latest_release}/everestctl-$os-$arch"
curl -sL https://github.com/percona/percona-everest-cli/releases/download/${latest_release}/everestctl-$os-$arch -o everestctl
echo "https://github.com/percona/percona-everest-cli/releases/download/v0.5.0/everestctl-$os-$arch"
curl -sL https://github.com/percona/percona-everest-cli/releases/download/v0.5.0/everestctl-$os-$arch -o everestctl
chmod +x everestctl

# If KUBECONFIG is set let the user know we are using it
Expand Down

0 comments on commit 1a22bf6

Please sign in to comment.