From 77f515073d29970dbbfb52817c5764c85e2baa3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charles-Edouard=20Br=C3=A9t=C3=A9ch=C3=A9?= Date: Sun, 10 Mar 2024 21:53:20 +0100 Subject: [PATCH] fix: istio demo kind cluster MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Charles-Edouard Brétéché --- demo/istio/bootstrap.sh | 29 +++++++++++++++++++++----- demo/istio/manifests/echo-service.yaml | 6 +----- 2 files changed, 25 insertions(+), 10 deletions(-) diff --git a/demo/istio/bootstrap.sh b/demo/istio/bootstrap.sh index d00494f9..bef33b2a 100755 --- a/demo/istio/bootstrap.sh +++ b/demo/istio/bootstrap.sh @@ -3,12 +3,31 @@ KIND_IMAGE=kindest/node:v1.29.2 ISTIO_REPO=https://istio-release.storage.googleapis.com/charts ISTIO_NS=istio-system +ISTIO_INGRESS_NS=istio-ingress # Create Kind cluster -kind create cluster --image $KIND_IMAGE +kind create cluster --image $KIND_IMAGE --wait 1m --config - <