Install with Helm
We encourage the use of Helm to install Istio for production use in ambient mode. To allow controlled upgrades, the control plane and data plane components are packaged and installed separately. (Because the ambient data plane is split across two components6, the ztunnel and waypoints, upgrades involve separate steps for these components.)
Prerequisites
Check the Platform-Specific Prerequisites7.
Install the Helm client8, version 3.6 or above.
Configure the Helm repository:
Install the control plane
Default configuration values can be changed using one or more --set <parameter>=<value>
arguments. Alternatively, you can specify several parameters in a custom values file using the --values <file>
argument.
Full details on how to use and customize Helm installations are available in the sidecar installation documentation14.
Unlike istioctl15 profiles, which group together components to be installed or removed, Helm profiles simply set groups of configuration values.
Base components
The base
chart contains the basic CRDs and cluster roles required to set up Istio.
This should be installed prior to any other Istio component.
Install or upgrade the Kubernetes Gateway API CRDs
Note that the Kubernetes Gateway API CRDs do not come installed by default on most Kubernetes clusters, so make sure they are installed before using the Gateway API:
istiod control plane
The istiod
chart installs a revision of Istiod. Istiod is the control plane component that manages and
configures the proxies to route traffic within the mesh.
CNI node agent
The cni
chart installs the Istio CNI node agent. It is responsible for detecting the pods that belong to the ambient mesh, and configuring the traffic redirection between pods and the ztunnel node proxy (which will be installed later).
Install the data plane
ztunnel DaemonSet
The ztunnel
chart installs the ztunnel DaemonSet, which is the node proxy component of Istio’s ambient mode.
Ingress gateway (optional)
To install an ingress gateway, run the command below:
If your Kubernetes cluster doesn’t support the LoadBalancer
service type (type: LoadBalancer
) with a proper external IP assigned, run the above command without the --wait
parameter to avoid the infinite wait. See Installing Gateways17 for in-depth documentation on gateway installation.
Configuration
To view supported configuration options and documentation, run:
Verify the installation
Verify the workload status
After installing all the components, you can check the Helm deployment status with:
You can check the status of the deployed pods with:
Verify with the sample application
After installing ambient mode with Helm, you can follow the Deploy the sample application18 guide to deploy the sample application and ingress gateways, and then you can add your application to the ambient mesh.
Uninstall
You can uninstall Istio and its components by uninstalling the charts installed above.
List all the Istio charts installed in
istio-system
namespace:(Optional) Delete any Istio gateway chart installations:
Delete the ztunnel chart:
Delete the Istio CNI chart:
Delete the istiod control plane chart:
Delete the Istio base chart:
Delete CRDs installed by Istio (optional)
Delete the
istio-system
namespace:
Generate a manifest before installation
You can generate the manifests for each component before installing Istio using the helm template
sub-command.
For example, to generate a manifest that can be installed with kubectl
for the istiod
component:
The generated manifest can be used to inspect what exactly is installed as well as to track changes to the manifest over time.
To install the manifest generated above, which will create the istiod
component in the target cluster: