Keptn — Multi-stage delivery with Quality Gates (Demo) — Part 2
Oct 16, 2021
This is the continuation of “Get started with Keptn — Multi-stage delivery with Quality Gates(Demo)”. This is Configuration Step 1/3.
Install Istio with Istioctl into your Cluster
- Windows
curl -L https://istio.io/downloadIstio | sh -
- The
istioctl
client binary in thebin/
directory. - Add the
istioctl
client to your path
istioctl install
2. Linux
curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.11.2 sh -
./istio-1.11.2/bin/istioctl install
Refer to the Installation document on the official website for more details.
click here
Install Istio using external charts
istioctl install --manifests=manifests/
You would see the following checklist after successful Installation.
You cloud also check what is Installed using the below command.
kubectl -n istio-system get deploy
This step is completed return to the main article Click Here and configure step 2/3 which is “Download Keptn CLI and Install Keptn into your cluster”.