Skip to content

Commit

Permalink
e2e: fix kumactl download link
Browse files Browse the repository at this point in the history
Signed-off-by: Sanskar Jaiswal <jaiswalsanskar078@gmail.com>
  • Loading branch information
aryan9600 committed Jun 12, 2024
1 parent 133fdec commit 15c0195
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/kuma/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@

set -o errexit

KUMA_VER="2.1.0"
KUMA_VER="2.7.3"
REPO_ROOT=$(git rev-parse --show-toplevel)
mkdir -p ${REPO_ROOT}/bin

echo ">>> Downloading Kuma ${KUMA_VER}"
curl -SsL https://download.konghq.com/mesh-alpine/kuma-${KUMA_VER}-ubuntu-amd64.tar.gz -o kuma-${KUMA_VER}.tar.gz
curl -SsL \
https://packages.konghq.com/public/kuma-binaries-release/raw/names/kuma-linux-amd64/versions/${KUMA_VER}/kuma-${KUMA_VER}-linux-amd64.tar.gz \
-o kuma-${KUMA_VER}.tar.gz
tar xvzf kuma-${KUMA_VER}.tar.gz
cp kuma-${KUMA_VER}/bin/kumactl ${REPO_ROOT}/bin/kumactl
chmod +x ${REPO_ROOT}/bin/kumactl
Expand Down

0 comments on commit 15c0195

Please sign in to comment.