How to Install Istio Using Helm Chart?

Istio service mesh helps DevOps engineers and architects manage the network and security of distributed applications, without touching the application code.

In a previous blog, we explained How to get started with Istio in Kubernetes in 5 steps, where Istio’s command line tool, Istioctl, is used to install Istio. Here, let us see the steps to install Istio using Helm chats.

Prerequisites

  1. Kubectl – Kubernetes command-line tool.
  2. Helm – Package manager for Kubernetes.

Steps to install Istio using Helm charts

There are three steps involved in the process, which should be done in the following order:

  1. Add Istio repository to Helm
  2. Install Istio base chart
  3. Install Istio control plane

After completing the above steps, we will see how to verify if they are installed properly.

Enroll in the Istio Academy course

Step #1: Add Istio repository to Helm

Istio repository contains the necessary configurations and Istio charts for installing Istio. The first step is to add it to Helm by running the command below.

helm repo add istio https://istio-release.storage.googleapis.com/charts

Now, update Helm repository to get the latest charts:

helm repo update
adding istio repository to helm and updating helm charts

Step #2: Install Istio base chart

Enter the following command to install the Istio base chart, which contains cluster-wide Custom Resource Definitions (CRDs). (Note that this is a requirement for installing the Istio control plane.)

helm install istio-base istio/base -n istio-system --create-namespace --set defaultRevision=default
  • In the above command, `istio-base` and `istio/base` represent the chart name and the chart path, respectively.
  • The chart will be installed in `istio-system` namespace. Since the namespace does not exist already, we passed the argument `–create-namespace` to create it. The namespace will set up the validator required for Istio.
  • defaultRevision: As the Istio base chart sets up a `ValidatingWebhookConfiguration` to perform resource validation, it is necessary to select a default revision that will be used for validation. We will use the `default` revision here.

You will see the below output if the installation is successful.

installing istio base chart


Step #3: Install Istio control plane

The below command will install the Istio control plane component, Istiod, into the `istio-system` namespace.

helm install istiod istio/istiod -n istio-system --wait

Upon successful installation, it will return the following output:

installing istio control plane component istiod

Verify Istio base and Istiod deployment status

By running the following command, we can see the deployment status of istio-base and istiod.

helm ls -n istio-system

We can see that the status is `deployed` for both of them in the output.

verifying  the deployment status of istio base and istiod

Also, run the following command to verify if it is actually running:

kubectl get deployments -n istio-system -o wide

We can see that the `istiod` service’s pod is running.

verifying if Istio is running

Video: Install Istio using Helm charts

Watch the following video to see all the above steps in action. There is an additional step in the video where istioctl command is used to do a pre-check while installing istio-base. However, note that this step is completely optional.

If you are deploying Istio in a production environment, it is highly recommended to talk to an Istio expert beforehand. Because Istio is complex, like Kubernetes. Many subtle errors can creep in while configuring service definitions or setting up Istio, particularly when you have applications deployed across multiple namespaces, written by developers with varying levels of experience.

Pulak Das

Pulak Das

Pulak is the Istio and Envoy expert in IMESH. He is a front-end developer passionate about open-source software, design, and typography. His scientific interests as a computer science graduate are at the systems level: operating systems and programming languages.

Leave a Reply