Installation and Configuration of Istio

Introduction
Istio is a powerful service mesh that provides traffic management, security, and observability for microservices running on Kubernetes. This guide covers the installation of Istio on a Kubernetes cluster and its basic configuration to get started.
Prerequisites
Before installing Istio, ensure that you have the following:
A running Kubernetes cluster (v1.21 or later)
kubectl command-line tool configured for the cluster
Helm (optional but recommended for managing Istio components)
Step 1: Download and Install Istio CLI
Download the latest Istio release:
curl -L https://istio.io/downloadIstio | sh -
Move into the Istio directory:
cd istio-*/
Add the Istio CLI (
istioctl
) to your system's PATH:export PATH=$PWD/bin:$PATH
Step 2: Install Istio in Kubernetes
Istio provides multiple installation profiles. The default profile is a good starting point.
Install Istio using the default profile:
istioctl install --set profile=default -y
Verify that Istio components are running:
kubectl get pods -n istio-system
Step 3: Enable Istio Sidecar Injection
Istio uses sidecar proxies to manage service communication. To enable automatic sidecar injection, label your namespace:
kubectl label namespace default istio-injection=enabled
This ensures that all new pods in the default
namespace will have an Envoy sidecar proxy automatically injected.
Step 4: Deploy a Sample Application
Deploy the Istio sample application (
bookinfo
):kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml
Expose the application using the Istio ingress gateway:
kubectl apply -f samples/bookinfo/networking/bookinfo-gateway.yaml
Retrieve the external IP of the Istio ingress gateway:
kubectl get svc istio-ingressgateway -n istio-system
Access the application using
http://<EXTERNAL-IP>/productpage
.
Step 5: Verify Istio Configuration
Check if services are managed by Istio:
kubectl get svc,deploy,pods -n default
Inspect the Istio-proxy logs for a deployed pod:
kubectl logs <pod-name> -c istio-proxy
Conclusion
Istio is now successfully installed and configured on your Kubernetes cluster. You can start leveraging its features for traffic management, security policies, and observability. For advanced configurations, explore Istio VirtualServices, DestinationRules, and mTLS settings.
Subscribe to my newsletter
Read articles from Saurabh Adhau directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by

Saurabh Adhau
Saurabh Adhau
As a DevOps Engineer, I thrive in the cloud and command a vast arsenal of tools and technologies: โ๏ธ AWS and Azure Cloud: Where the sky is the limit, I ensure applications soar. ๐จ DevOps Toolbelt: Git, GitHub, GitLab โ I master them all for smooth development workflows. ๐งฑ Infrastructure as Code: Terraform and Ansible sculpt infrastructure like a masterpiece. ๐ณ Containerization: With Docker, I package applications for effortless deployment. ๐ Orchestration: Kubernetes conducts my application symphonies. ๐ Web Servers: Nginx and Apache, my trusted gatekeepers of the web.