-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
- Loading branch information
1 parent
a8a355f
commit eac5167
Showing
3 changed files
with
16 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
|
||
KIND_IMAGE=kindest/node:v1.29.2 | ||
ISTIO_REPO=https://istio-release.storage.googleapis.com/charts | ||
ISTIO_NS=istio-system | ||
|
||
# Create Kind cluster | ||
kind create cluster --image $KIND_IMAGE | ||
|
||
# Install Istio components | ||
helm upgrade --install istio-base --namespace $ISTIO_NS --create-namespace --wait --repo $ISTIO_REPO base | ||
helm upgrade --install istiod --namespace $ISTIO_NS --create-namespace --wait --repo $ISTIO_REPO istiod | ||
helm upgrade --install istio-ingress --namespace $ISTIO_NS --create-namespace --wait --repo $ISTIO_REPO gateway | ||
|
||
# Label default namespace to inject sidecar automatically | ||
kubectl label namespace default istio-injection=enabled |
This file was deleted.
Oops, something went wrong.
File renamed without changes.