Install with Istioctl
Follow this guide to install and configure an Istio mesh for in-depth evaluation or production use. If you are new to Istio, and just want to try it out, follow the quick start instructions instead.
This installation guide uses the istioctl command line tool to provide rich customization of the Istio control plane and of the sidecars for the Istio data plane. It has user input validation to help prevent installation errors and customization options to override any aspect of the configuration.
Using these instructions, you can select any one of Istio’s built-in configuration profiles and then further customize the configuration for your specific needs.
The istioctl
command supports the full IstioOperator
API
via command-line options for individual settings or for passing a yaml file containing an IstioOperator
custom resource (CR).
Prerequisites
Before you begin, check the following prerequisites:
- Download the Istio release.
- Perform any necessary platform-specific setup.
- Check the Requirements for Pods and Services.
Install Istio using the default profile
The simplest option is to install the default
Istio
configuration profile
using the following command:
$ istioctl install
This command installs the default
profile on the cluster defined by your
Kubernetes configuration. The default
profile is a good starting point
for establishing a production environment, unlike the larger demo
profile that
is intended for evaluating a broad set of Istio features.
Various settings can be configured to modify the installations. For example, to enable access logs:
$ istioctl install --set meshConfig.accessLogFile=/dev/stdout
Install from external charts
By default, istioctl
uses compiled-in charts to generate the install manifest. These charts are released together with
istioctl
for auditing and customization purposes and can be found in the release tar in the
manifests
directory.
istioctl
can also use external charts rather than the compiled-in ones. To select external charts, set
the manifests
flag to a local file system path:
$ istioctl install --manifests=manifests/
If using the istioctl
1.25.0 binary, this command will result in the same installation as istioctl install
alone, because it points to the
same charts as the compiled-in ones.
Other than for experimenting with or testing new features, we recommend using the compiled-in charts rather than external ones to ensure compatibility of the
istioctl
binary with the charts.
Install a different profile
Other Istio configuration profiles can be installed in a cluster by passing the
profile name on the command line. For example, the following command can be used
to install the demo
profile:
$ istioctl install --set profile=demo
Generate a manifest before installation
You can generate the manifest before installing Istio using the manifest generate
sub-command.
For example, use the following command to generate a manifest for the default
profile that can be installed with kubectl
:
$ istioctl manifest generate > $HOME/generated-manifest.yaml
The generated manifest can be used to inspect what exactly is installed as well as to track changes to the manifest over time. While the IstioOperator
CR represents the full user configuration and is sufficient for tracking it, the output from manifest generate
also captures possible changes in the underlying charts and therefore can be used to track the actual installed resources.
See Customizing the installation configuration for additional information on customizing the install.
Uninstall Istio
To completely uninstall Istio from a cluster, run the following command:
$ istioctl uninstall --purge
Alternatively, to remove only a specific Istio control plane, run the following command:
$ istioctl uninstall <your original installation options>
or
$ istioctl manifest generate <your original installation options> | kubectl delete --ignore-not-found=true -f -
The control plane namespace (e.g., istio-system
) is not removed by default.
If no longer needed, use the following command to remove it:
$ kubectl delete namespace istio-system