Skip to content

Commit

Permalink
Update Istio to v1.22.3 (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebrandon1 authored Aug 6, 2024
1 parent fb8fd7a commit 6789a15
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions scripts/delete-istio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ SCRIPT_DIR=$(dirname "$0")

# shellcheck disable=SC1091 # Not following.
source "$SCRIPT_DIR"/init-env.sh
ISTIO_DIR=istio-1.21.2
ISTIO_DIR=istio-1.22.3
if [ ! -d "$ISTIO_DIR" ]; then
curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.21.2 sh -
curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.22.3 sh -
fi
./$ISTIO_DIR/bin/istioctl uninstall -y --purge
oc label namespace "$CERTSUITE_EXAMPLE_NAMESPACE" istio-injection-
Expand Down
4 changes: 2 additions & 2 deletions scripts/install-istio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ SCRIPT_DIR=$(dirname "$0")
# shellcheck disable=SC1091 # File not following.
source "$SCRIPT_DIR"/init-env.sh

ISTIO_DIR=istio-1.21.2
ISTIO_DIR=istio-1.22.3
ISTIO_PROFILE=demo

if [ ! -d "$ISTIO_DIR" ]; then
curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.21.2 sh -
curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.22.3 sh -
fi
oc create namespace istio-system
if ! $CERTSUITE_NON_OCP_CLUSTER; then
Expand Down

0 comments on commit 6789a15

Please sign in to comment.