You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rwxrob-dot/install/ubuntu/install-istioctl

14 lines
264 B
Bash

#!/bin/sh
set -e
cleanup () {
rm -rf ./istio-*
}
trap cleanup EXIT
curl -L https://istio.io/downloadIstio | sh -
mkdir -p ~/.local/bin
mv istio-*/bin/istioctl ~/.local/bin
#curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.19.0 TARGET_ARCH=x86_64 sh -