Migrate from Istio 1.11 or later to Cloud Service Mesh
This tutorial shows you how to migrate an application from a Google Kubernetes Engine (GKE) cluster using Istio to a new cluster using managed Cloud Service Mesh — Google's fully managed, Istio-compliant service mesh.
In this tutorial, you:
- Create a new Google Kubernetes Engine cluster, and install Istio and the Istio ingress gateway on the cluster. This cluster will act as your existing cluster that you want to migrate away from.
- Deploy the Online Boutique sample application onto the cluster with Istio.
- Create another Google Kubernetes Engine cluster, in the same Google Cloud project.
- Enable managed Cloud Service Mesh on the second cluster and deploy the Cloud Service Mesh ingress gateway.
- Deploy Online Boutique onto the cluster with Cloud Service Mesh to replicate the deployment from the cluster with Istio.
- Shift 50% of user traffic from the cluster with Istio to the cluster with Cloud Service Mesh, by using Istio's traffic splitting capabilities on the cluster with Istio.
- Complete the migration from Istio to Cloud Service Mesh by pointing the domain name system (DNS) entry of the cluster with Istio to the cluster with Cloud Service Mesh.
Canary deployment
"Canary deployment" is a technique used in software development to test a new version of some software before releasing that new version to all users. It involves incrementally increasing the percentage of traffic sent to the new version. In this tutorial, you will set up a new cluster with managed Cloud Service Mesh and incrementally shift user traffic to it. You will start by directing 0% of user traffic to the new cluster, then 50%, and, finally, 100%. In production, you should use smaller and more increments. If at any point you notice that the new cluster is incapable of handling a percentage of traffic, you can rollback by reducing the percentage to 0%.
Canary control plane versus canary cluster
There are two commonly used strategies for migrations from Istio to managed Cloud Service Mesh:
- Canary control plane migration: In this strategy, you provision managed Cloud Service Mesh on the same cluster in which Istio is installed.
- Canary cluster migration: In this strategy, you create a new cluster and then provision managed Cloud Service Mesh on it.
In this tutorial, you will walk through the canary cluster migration strategy.
Costs
This tutorial uses the following billable components of Google Cloud:
When you finish this tutorial, you can avoid ongoing costs by deleting the resources you created. For more information, see Clean up.
Before you begin
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
-
Enable the required APIs.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
-
Enable the required APIs.
Launch Cloud Shell
In this tutorial you will use Cloud Shell, which is a shell environment hosted on Google Cloud that lets you manage your Google Cloud resources.
Cloud Shell comes preinstalled with the Google Cloud CLI, kubectl, and istioctl command-line tools. The gcloud CLI provides the primary CLI for Google Cloud.
Open a Cloud Shell session from the upper-right corner of this page, click terminal and then click Acknowledge. A Cloud Shell session opens inside a frame lower on the page. Complete the following commands in that Cloud Shell session.
Download sample code
Clone the git repositories containing the Kubernetes and Istio resources you will use:
git clone https://github.com/GoogleCloudPlatform/anthos-service-mesh-samples.git
git clone https://github.com/GoogleCloudPlatform/microservices-demo.git
Set up the cluster with Istio
Create the cluster and install Istio
In the section, you create your cluster that uses Istio. In practice, this would be the cluster(s) that you are already using.
Replace
PROJECT_ID
with your project ID and create a new cluster:gcloud container clusters create cluster-with-istio \ --project=PROJECT_ID \ --zone=us-central1-a \ --machine-type=e2-standard-2 --num-nodes=3
Rename the cluster context so that the cluster is easier to work with:
kubectl config rename-context \ gke_PROJECT_ID_us-central1-a_cluster-with-istio \ cluster-with-istio
Check that the cluster context has been renamed:
kubectl config get-contexts --output="name"
Install Istio on the cluster. For simplicity, you will install the default profile of Istio and the version that matches your
istioctl
installation.istioctl install
You will be asked to type "y" and then press Enter.
The output is similar to:
This will install the Istio X.Y.Z default profile with ["Istio core" "Istiod" "Ingress gateways"] components into the cluster. Proceed? (y/N) ✔ Istio core installed ✔ Istiod installed ✔ Ingress gateways installed ✔ Installation complete Making this installation the default for injection and validation.
Deploy Online Boutique
You will deploy Online Boutique into a separate namespace called
onlineboutique
. Create the namespace:kubectl \ --context cluster-with-istio \ create namespace onlineboutique
Deploy Online Boutique's 12 services, which includes a load generator that imitates user traffic:
kubectl \ --namespace=onlineboutique \ --context=cluster-with-istio \ apply -f microservices-demo/release/kubernetes-manifests.yaml
The previous step also deployed a service called
frontend-external
(of typeLoadBalancer
) which gets assigned an external IP address. However, you only want to allow public ingress through the Istio ingress gateway deployment. Delete thefrontend-external
service resource:kubectl \ --namespace=onlineboutique \ --context=cluster-with-istio \ delete service frontend-external
Deploy an Istio
Gateway
resource and an IstioVirtualService
resource for public traffic to access Online Boutique:kubectl \ --namespace=onlineboutique \ --context=cluster-with-istio \ apply -f microservices-demo/istio-manifests/frontend-gateway.yaml
Get the external IP address of the Istio ingress gateway:
kubectl \ --namespace istio-system \ --context=cluster-with-istio \ get service --output jsonpath='{.items[0].status.loadBalancer.ingress[0].ip}'
Copy the external IP address of the
istio-ingressgateway
service, and then access it through your web browser. You will see the Online Boutique sample app.
Set up the new cluster with managed Cloud Service Mesh
Create the cluster and provision managed Cloud Service Mesh
In this section, you create the cluster that you will migrate to. You will provision managed Cloud Service Mesh, and deploy Online Boutique in order to replicate the deployments from the cluster that uses Istio.
Create a new cluster:
gcloud container clusters create cluster-with-csm \ --project=PROJECT_ID --zone=us-central1-a \ --machine-type=e2-standard-4 --num-nodes=2 \ --workload-pool PROJECT_ID.svc.id.goog
Rename the cluster context so that the cluster is easier to work with:
kubectl config rename-context \ gke_PROJECT_ID_us-central1-a_cluster-with-csm \ cluster-with-csm
Check that the cluster context has been renamed:
kubectl config get-contexts --output="name"
Enable Cloud Service Mesh on your project's fleet. A fleet is a logical grouping of Kubernetes clusters and other resources that can be managed together.
gcloud container fleet mesh enable --project PROJECT_ID
The output is similar to:
Waiting for Feature Service Mesh to be created...done.
Register the cluster to the project's fleet:
gcloud container fleet memberships register cluster-with-csm-membership \ --gke-cluster=us-central1-a/cluster-with-csm \ --enable-workload-identity \ --project PROJECT_ID
The output is similar to:
Waiting for membership to be created...done. Finished registering to the Fleet.
Enable managed Cloud Service Mesh on the cluster:
gcloud container fleet mesh update \ --management automatic \ --memberships cluster-with-csm-membership \ --project PROJECT_ID
The output is similar to:
Waiting for Feature Service Mesh to be updated...done.
Verify that managed Cloud Service Mesh has been provisioned for the cluster and is ready to be used:
gcloud container fleet mesh describe --project PROJECT_ID
It can take about 10 minutes for Cloud Service Mesh to provision and be ready to use on the cluster. If you see
controlPlaneManagement.state: DISABLED
orcontrolPlaneManagement.state: PROVISIONING
, you will need to re-run the previous command every few minutes until you seecontrolPlaneManagement.state: ACTIVE
.The output is similar to:
createTime: '2022-07-06T01:05:39.110120474Z' membershipSpecs: projects/123456789123/locations/global/memberships/cluster-with-csm-membership: mesh: management: MANAGEMENT_AUTOMATIC membershipStates: projects/123456789123/locations/global/memberships/cluster-with-csm-membership: servicemesh: controlPlaneManagement: details: - code: REVISION_READY details: 'Ready: asm-managed' state: ACTIVE dataPlaneManagement: details: - code: OK details: Service is running. state: ACTIVE state: code: OK description: 'Revision(s) ready for use: asm-managed.' updateTime: '2022-07-06T01:19:24.243993678Z' name: projects/your-project-id/locations/global/features/servicemesh resourceState: state: ACTIVE spec: {} state: state: {} updateTime: '2022-07-06T01:19:27.475885687Z'
Deploy Cloud Service Mesh's ingress gateway
You will deploy the Cloud Service Mesh's ingress gateway into a separate namespace called
asm-ingress
. Create the namespace:kubectl \ --context cluster-with-csm \ create namespace asm-ingress
Use the
istio.io/rev=asm-managed
label to add theasm-ingress
namespace to the service mesh and enable automatic sidecar proxy injection.kubectl \ --context cluster-with-csm \ label namespace asm-ingress 'istio.io/rev=asm-managed'
Deploy the Cloud Service Mesh ingress gateway:
kubectl \ --context cluster-with-csm \ --namespace=asm-ingress \ apply -f anthos-service-mesh-samples/docs/shared/asm-ingress-gateway/asm-gateway-deployment-svc.yaml kubectl \ --context cluster-with-csm \ --namespace=asm-ingress \ apply -f anthos-service-mesh-samples/docs/shared/asm-ingress-gateway/gateway.yaml
The output is similar to:
namespace/asm-ingress configured serviceaccount/asm-ingressgateway configured service/asm-ingressgateway configured deployment.apps/asm-ingressgateway configured gateway.networking.istio.io/asm-ingressgateway configured
Deploy Online Boutique
You will deploy Online Boutique into a separate namespace called
onlineboutique
. Create the namespace:kubectl \ --context cluster-with-csm \ create namespace onlineboutique
Use the
istio.io/rev=asm-managed
label to add theonlineboutique
namespace to the service mesh and enable automatic sidecar proxy injection.kubectl \ --context cluster-with-csm \ label namespace onlineboutique 'istio.io/rev=asm-managed'
Deploy Online Boutique's 12 services, including the load generator that imitates user traffic:
kubectl \ --context cluster-with-csm \ --namespace=onlineboutique \ apply -f anthos-service-mesh-samples/docs/shared/online-boutique/kubernetes-manifests.yaml kubectl \ --context cluster-with-csm \ --namespace=onlineboutique \ apply -f anthos-service-mesh-samples/docs/shared/online-boutique/virtual-service.yaml
Get the external IP address of the Cloud Service Mesh ingress gateway:
kubectl \ --context cluster-with-csm \ --namespace asm-ingress \ get service --output jsonpath='{.items[0].status.loadBalancer.ingress[0].ip}'
Copy the external IP address of the
asm-ingressgateway
Service, and access it through your web browser. You will see the Online Boutique sample app. You will use the external IP address in the next section, so copy it into an environment variable:export INGRESS_IP_OF_CLUSTER_WITH_MANAGED_ASM=$( \ kubectl \ --context cluster-with-csm \ --namespace asm-ingress \ get service --output jsonpath='{.items[0].status.loadBalancer.ingress[0].ip}' \ )
Test the cluster with Cloud Service Mesh using a canary deployment
In this section, you configure the cluster with Istio such that 50% of the user traffic to Online Boutique is shifted to the instance of Online Boutique on the cluster with managed Cloud Service Mesh. To achieve this, you deploy two Istio resources to the cluster with Istio:
- a ServiceEntry to tell Istio about the managed Cloud Service Mesh cluster's Online Boutique endpoint
- a VirtualService to tell the Istio ingress gateway to split the traffic 50-50.
Set the IP address of the managed Cloud Service Mesh cluster's ingress gateway inside the
ServiceEntry
resource:sed -i "s/1.2.3.4/${INGRESS_IP_OF_CLUSTER_WITH_MANAGED_ASM}/" anthos-service-mesh-samples/docs/migrate-to-managed-asm/service-entry.yaml
Deploy the
ServiceEntry
to the cluster with Istio:kubectl \ --context cluster-with-istio \ --namespace onlineboutique \ apply -f anthos-service-mesh-samples/docs/migrate-to-managed-asm/service-entry.yaml
Deploy the
VirtualService
to the cluster with Istio:kubectl \ --context cluster-with-istio \ --namespace onlineboutique \ apply -f anthos-service-mesh-samples/docs/migrate-to-managed-asm/virtual-service.yaml
Visit the IP address of the ingress gateway of the cluster with Istio, in your web browser:
kubectl \ --context cluster-with-istio \ --namespace istio-system \ get service
Refresh the Online Boutique homepage multiple times, and check the footer of the page each time. Notice that 50% of the requests are handled by a Pod on the cluster with managed Cloud Service Mesh.
Migrate to the cluster with managed Cloud Service Mesh
This section assumes that you own a domain name and have access to its DNS (Domain Name Server) settings.
Add an A record to the DNS settings to point the domain name (such as example.com) to the IP address of the ingress gateway running on the cluster with Istio.
Access Online Boutique by visiting the domain name in your web browser.
Minimize DNS record time to live (TTL) to ensure you can quickly revert the DNS entry if you need to rollback.
Set the A record of your domain name to the external IP address of the ingress gateway of the cluster with managed Cloud Service Mesh.
When the migration is successful, delete the cluster with Istio:
gcloud container clusters delete cluster-with-istio \ --zone=us-central1-a \ --project=PROJECT_ID
Clean up
To avoid incurring charges to your Google Cloud account for the resources used in this tutorial, either delete the project that contains the resources, or keep the project and delete the individual resources.
Delete project
- In the Google Cloud console, go to the Manage resources page.
- In the project list, select the project that you want to delete, and then click Delete.
- In the dialog, type the project ID, and then click Shut down to delete the project.
Delete the resources
Delete the cluster with managed Cloud Service Mesh:
gcloud container clusters delete cluster-with-managed-asm \
--zone=us-central1-a \
--project=PROJECT_ID
What's next
- Learn about Managed Cloud Service Mesh.
- Learn about Cloud Service Mesh security best practices.