istio.io/content/en/docs/setup/_index.md

4.3 KiB

title description weight icon aliases keywords content_above
Setup Instructions for installing the Istio control plane on Kubernetes and adding virtual machines into the mesh. 15 setup
/docs/tasks/installing-istio.html
/docs/setup/install-kubernetes.html
/docs/setup/kubernetes/quick-start.html
/docs/setup/kubernetes/download-release/
/docs/setup/kubernetes/download/
/docs/setup/kubernetes/
kubernetes
install
quick-start
setup
installation
true

{{< tip >}} Istio {{< istio_version >}} has been tested with these Kubernetes releases: {{< supported_kubernetes_versions >}}. {{< /tip >}}

Visit our getting started guide to learn how to evaluate and try Istio's basic features quickly.

Istio offers multiple installation flows depending on your platform and whether or not you intend to use Istio in production. At a high level, the basic flow is the same regardless of platform:

  1. Review the pod requirements
  2. Prepare your platform for Istio
  3. Download the Istio release
  4. Install Istio on your platform

Installing Istio

Choose one of the following installation options, depending on your intended use:

After choosing an option and installing Istio on your cluster, you can deploy your own applications or experiment with some of our tasks and examples.

{{< tip >}} If you're running your own applications, make sure to check the requirements for pods and services. {{< /tip >}}

When you're ready to consider more advanced Istio use cases, check out the following resources:

Downloading the release

Istio is installed in its own istio-system namespace and can manage services from all other namespaces.

  1. Go to the Istio release page to download the installation file corresponding to your OS. On a macOS or Linux system, you can run the following command to download and extract the latest release automatically:

    {{< text bash >}} $ curl -L https://git.io/getLatestIstio | ISTIO_VERSION={{< istio_full_version >}} sh - {{< /text >}}

  2. Move to the Istio package directory. For example, if the package is istio-{{< istio_full_version >}}:

    {{< text bash >}} $ cd istio-{{< istio_full_version >}} {{< /text >}}

    The installation directory contains:

    • Installation YAML files for Kubernetes in install/kubernetes
    • Sample applications in samples/
    • The istioctl client binary in the bin/ directory. istioctl is used when manually injecting Envoy as a sidecar proxy.
  3. Add the istioctl client to your PATH environment variable, on a macOS or Linux system:

    {{< text bash >}} $ export PATH=$PWD/bin:$PATH {{< /text >}}

  4. You can enable the auto-completion option when working with a bash or ZSH console.