Overview

Review the following information about the Istio control plane setup in this guide:

Prepare the cluster environment

Set up the following tools and environment variables.

  1. If you do not already have a license, decide the level of licensed features that you want, and contact an account representative to obtain the license.

  2. Choose the version of Istio that you want to install or upgrade to by reviewing the supported versions table. In Gloo Mesh version 2.6 and later, ambient mode requires the Solo distribution of Istio version 1.22.3 or later (1.22.3-solo).

  3. Decide on the specific tag of Solo distribution of Istio image, such as -solo, -solo-fips, -solo-distroless, or -solo-fips-distroless, that you want for your environment.

  4. Save the details for the version of the Solo distribution of Istio that you want to install.

  5. Install or upgrade istioctl with the same version of Istio that you saved.

      curl -L https://istio.io/downloadIstio | ISTIO_VERSION=${ISTIO_VERSION} sh -
    cd istio-${ISTIO_VERSION}
    export PATH=$PWD/bin:$PATH
      

Install CRDs

Deploy the Istio CRDs and a sidecar control plane to your cluster.

  1. Save the name of a workload cluster in the following environment variable.

      export CLUSTER_NAME=<cluster-name>
      
  2. Install the Istio CRDs.

      helm upgrade --install istio-base oci://${HELM_REPO}/base \
      -n istio-system \
      --create-namespace \
      --version ${ISTIO_IMAGE} \
      --set defaultRevision=main
      
  3. Create the istio-config namespace. This namespace serves as the administrative root namespace for Istio configuration.

      kubectl create namespace istio-config
      
  4. OpenShift only: Install the CNI plug-in, which is required for using Istio in OpenShift.

      helm install istio-cni oci://${HELM_REPO}/cni \
    --namespace kube-system \
    --version ${ISTIO_IMAGE} \
    --set cni.cniBinDir=/var/lib/cni/bin \
    --set cni.cniConfDir=/etc/cni/multus/net.d \
    --set cni.cniConfFileName="istio-cni.conf" \
    --set cni.chained=false \
    --set cni.privileged=true \
    --set global.platform=openshift
      

Install the Istio control plane

  1. Prepare a Helm values file for the istiod control plane. You can further edit the file to provide your own details for production-level settings.

    1. Download an example file, istiod.yaml, and update the environment variables with the values that you previously set. The provided Helm values files are configured with production-level settings; however, depending on your environment, you might need to edit settings to achieve specific Istio functionality.
        curl -0L https://raw.githubusercontent.com/solo-io/gloo-mesh-use-cases/main/gloo-mesh-enterprise/istio-install/manual-helm/istiod-1.24+.yaml > istiod.yaml
      envsubst < istiod.yaml > istiod-values.yaml
      open istiod-values.yaml
        
  2. Create the istiod control plane in your cluster.

  3. After the installation is complete, verify that the Istio control plane pods are running.

      kubectl get pods -n istio-system
      

    Example output:

      NAME                          READY   STATUS    RESTARTS   AGE
    istiod-main-bb86b959f-msrg7   1/1     Running   0          2m45s
    istiod-main-bb86b959f-w29cm   1/1     Running   0          3m
      

Next