27 lines
904 B
Bash
Executable File
27 lines
904 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
export ISTIO_VERSION=1.7.4
|
|
|
|
if [ ! -d istio-$ISTIO_VERSION ]; then
|
|
NAME="istio-$ISTIO_VERSION"
|
|
URL="https://github.com/istio/istio/releases/download/${ISTIO_VERSION}/istio-${ISTIO_VERSION}-linux-amd64.tar.gz"
|
|
|
|
curl -sL "$URL" | tar xz
|
|
fi
|
|
|
|
# Get matching istioctl
|
|
[ -x istioctl ] && [ "$(./istioctl version --remote=false)" == $ISTIO_VERSION ] || { curl -sL https://github.com/istio/istio/releases/download/${ISTIO_VERSION}/istioctl-${ISTIO_VERSION}-linux-amd64.tar.gz | tar xz; chmod +x istioctl; }
|
|
|
|
# Extract base / CRDs from istioctl into plain manifest to workaround chicken egg problem with CRDs
|
|
# Now lets extract istio-operator chart
|
|
rm -rf charts/istio-operator
|
|
cp -r istio-${ISTIO_VERSION}/manifests/charts/istio-operator charts
|
|
|
|
# Apply our patch
|
|
patch -i istio-operator.patch -p0
|
|
|
|
# Extract crds
|
|
rm -rf crds
|
|
cp -r istio-${ISTIO_VERSION}/manifests/charts/base/crds .
|