Virtual Machine Installation

Follow this guide to deploy Istio and connect a virtual machine to it.

This guide is tested and validated but note that VM support is still an alpha feature not recommended for production.

Prerequisites

  1. Download the Istio release
  2. Perform any necessary platform-specific setup
  3. Check the requirements for Pods and Services
  4. Virtual machines must have IP connectivity to the ingress gateway in the connecting mesh, and optionally every pod in the mesh via L3 networking if enhanced performance is desired.

Prepare the guide environment

  1. Create a virtual machine
  2. Set the environment variables VM_APP, WORK_DIR , VM_NAMESPACE, and SERVICE_ACCOUNT (e.g., WORK_DIR="${HOME}/vmintegration"):

    1. $ VM_APP="<the name of the application this VM will run>"
    2. $ VM_NAMESPACE="<the name of your service namespace>"
    3. $ WORK_DIR="<a certificate working directory>"
    4. $ SERVICE_ACCOUNT="<name of the Kubernetes service account you want to use for your VM>"
  3. Create the working directory:

    1. $ mkdir -p "${WORK_DIR}"

Install the Istio control plane

Install Istio and expose the control plane so that your virtual machine can access it.

  1. Install Istio.

    1. $ istioctl install

    This feature is actively in development and is considered pre-alpha.

    1. $ istioctl install --set values.pilot.env.PILOT_ENABLE_WORKLOAD_ENTRY_AUTOREGISTRATION=true
  2. Deploy the east-west gateway:

    Zip

    1. $ @samples/multicluster/gen-eastwest-gateway.sh@ --single-cluster | istioctl install -y -f -
  3. Expose the control plane using the provided sample configuration:

    Zip

    1. $ kubectl apply -f @samples/multicluster/expose-istiod.yaml@

Configure the VM namespace

  1. Create the namespace that will host the virtual machine:

    1. $ kubectl create namespace "${VM_NAMESPACE}"
  2. Create a serviceaccount for the virtual machine:

    1. $ kubectl create serviceaccount "${SERVICE_ACCOUNT}" -n "${VM_NAMESPACE}"

Create files to transfer to the virtual machine

  1. Create a template WorkloadGroup for the VM(s)

    1. $ istioctl x workload group create --name "${VM_APP}" --namespace "${VM_NAMESPACE}" --labels app="${VM_APP}" --serviceAccount "${SERVICE_ACCOUNT}" > workloadgroup.yaml

    This feature is actively in development and is considered pre-alpha.

    1. Generate the WorkloadGroup:
    1. $ istioctl x workload group create --name "${VM_APP}" --namespace "${VM_NAMESPACE}" --labels app="${VM_APP}" --serviceAccount "${SERVICE_ACCOUNT}" > workloadgroup.yaml
    1. Push the WorkloadGroup to the cluster:
    1. $ kubectl --namespace ${VM_NAMESPACE} apply -f workloadgroup.yaml
  2. Use the istioctl x workload entry command to generate:

    • cluster.env: Contains metadata that identifies what namespace, service account, network CIDR and (optionally) what inbound ports to capture.
    • istio-token: A Kubernetes token used to get certs from the CA.
    • mesh.yaml: Provides additional Istio metadata including, network name, trust domain and other values.
    • root-cert.pem: The root certificate used to authenticate.
    • hosts: An addendum to /etc/hosts that the proxy will use to reach istiod for xDS.*

    A sophisticated option involves configuring DNS within the virtual machine to reference an external DNS server. This option is beyond the scope of this guide.

    1. $ istioctl x workload entry configure -f workloadgroup.yaml -o "${WORK_DIR}"

    This feature is actively in development and is considered pre-alpha.

    1. $ istioctl x workload entry configure -f workloadgroup.yaml -o "${WORK_DIR}" --autoregister

Configure the virtual machine

Run the following commands on the virtual machine you want to add to the Istio mesh:

  1. Securely transfer the files from "${WORK_DIR}" to the virtual machine. How you choose to securely transfer those files should be done with consideration for your information security policies. For convenience in this guide, transfer all of the required files to "${HOME}" in the virtual machine.

  2. Install the root certificate at /etc/certs:

    1. $ sudo mkdir -p /etc/certs
    2. $ sudo cp "${HOME}"/root-cert.pem /etc/certs/root-cert.pem
  3. Install the token at /var/run/secrets/tokens:

    1. $ sudo mkdir -p /var/run/secrets/tokens
    2. $ sudo cp "${HOME}"/istio-token /var/run/secrets/tokens/istio-token
  4. Install the package containing the Istio virtual machine integration runtime:

    1. $ curl -LO https://storage.googleapis.com/istio-release/releases/1.8.0/deb/istio-sidecar.deb
    2. $ sudo dpkg -i istio-sidecar.deb
    1. $ curl -LO https://storage.googleapis.com/istio-release/releases/1.8.0/rpm/istio-sidecar.rpm
    2. $ sudo rpm -i istio-sidecar.deb
  5. Install cluster.env within the directory /var/lib/istio/envoy/:

    1. $ sudo cp "${HOME}"/cluster.env /var/lib/istio/envoy/cluster.env
  6. Install the Mesh Config to /etc/istio/config/mesh:

    1. $ sudo cp "${HOME}"/mesh.yaml /etc/istio/config/mesh
  7. Add the istiod host to /etc/hosts:

    1. $ sudo sh -c 'cat $(eval echo ~$SUDO_USER)/hosts >> /etc/hosts'
  8. Transfer ownership of the files in /etc/certs/ and /var/lib/istio/envoy/ to the Istio proxy:

    1. $ sudo mkdir -p /etc/istio/proxy
    2. $ sudo chown -R istio-proxy /var/lib/istio /etc/certs /etc/istio/proxy /etc/istio/config /var/run/secrets /etc/certs/root-cert.pem

Start Istio within the virtual machine

  1. Start the Istio agent:

    1. $ sudo systemctl start istio

Verify Istio Works Successfully

  1. Check the log in /var/log/istio/istio.log. You should see entries similar to the following:

    1. $ 2020-08-21T01:32:17.748413Z info sds resource:default pushed key/cert pair to proxy
    2. $ 2020-08-21T01:32:20.270073Z info sds resource:ROOTCA new connection
    3. $ 2020-08-21T01:32:20.270142Z info sds Skipping waiting for gateway secret
    4. $ 2020-08-21T01:32:20.270279Z info cache adding watcher for file ./etc/certs/root-cert.pem
    5. $ 2020-08-21T01:32:20.270347Z info cache GenerateSecret from file ROOTCA
    6. $ 2020-08-21T01:32:20.270494Z info sds resource:ROOTCA pushed root cert to proxy
    7. $ 2020-08-21T01:32:20.270734Z info sds resource:default new connection
    8. $ 2020-08-21T01:32:20.270763Z info sds Skipping waiting for gateway secret
    9. $ 2020-08-21T01:32:20.695478Z info cache GenerateSecret default
    10. $ 2020-08-21T01:32:20.695595Z info sds resource:default pushed key/cert pair to proxy
  2. Create a Namespace to deploy a Pod-based Service:

    1. $ kubectl create namespace sample
    2. $ kubectl label namespace sample istio-injection=enabled
  3. Deploy the HelloWorld Service:

    Zip

    1. $ kubectl apply -f @samples/helloworld/helloworld.yaml@
  4. Send requests from your Virtual Machine to the Service:

    1. $ curl helloworld.sample.svc:5000/hello
    2. Hello version: v1, instance: helloworld-v1-578dd69f69-fxwwk

Uninstall

Stop Istio on the virtual machine:

  1. $ sudo systemctl stop istio

Then, remove the Istio-sidecar package:

  1. $ sudo dpkg -r istio-sidecar
  2. $ dpkg -s istio-sidecar
  1. $ sudo rpm -e istio-sidecar

To uninstall Istio, run the following command:

Zip

  1. $ kubectl delete -f @samples/multicluster/expose-istiod.yaml@
  2. $ istioctl manifest generate | kubectl delete -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:

  1. $ kubectl delete namespace istio-system

See also

Virtual Machines in Multi-Network Meshes

Learn how to add a service running on a virtual machine to your multi-network Istio mesh.

Bookinfo with a Virtual Machine

Run the Bookinfo application with a MySQL service running on a virtual machine within your mesh.

Example Application using Virtual Machines in a Single Network Mesh

Learn how to add a service running on a virtual machine to your single-network Istio mesh.

DNS Certificate Management

Provision and manage DNS certificates in Istio.

Secure Webhook Management

A more secure way to manage Istio webhooks.

Demystifying Istio’s Sidecar Injection Model

De-mystify how Istio manages to plugin its data-plane components into an existing deployment.