Keptn — Multi-stage delivery with Quality Gates(Demo)-Part 3
This is the continuation of “Get started with Keptn — Multi-stage delivery with Quality Gates(Demo)”. This is Configuration Step 2/3.

In this article, we will see how we can install Keptn CLI into our machine.
Use the below command to install Keptn.
Note:- This will work on Linux (and WSL2), as well as MacOS. Windows users need bash
, curl
, and awk
installed (e.g., using Git Bash).
curl -sL https://get.keptn.sh | bash
Verify the installation by running the below command
keptn version
Alternately, you can also try this:-
Download the latest stable version for Keptn from Github. This will download a compressed file that will have a Keptn client. Extract and add Keptn file to your environment path.


Install Keptn into your cluster
Now that we have installed Keptn CLI, we can Install Keptn into our Kubernetes cluster.
keptn install --endpoint-service-type=ClusterIP --use-case=continuous-delivery
It is very important to define--use-case=continuous-delivery.
This will define the Execution Plane for Continuous Delivery.

After Installing Keptn, you can verify your deployment once.
kubectl get deployments -n keptn

Once you have confirmed the above services are up and running you can move to the next step of configuration. Go to Configuration Step 3/3 (Configure Istio)
Return to the main article Click Here