Chapter 2. Updating OpenShift Service Mesh
Compare the available strategies for updating the Istio control plane in Red Hat OpenShift Service Mesh. Identify when to use the InPlace or RevisionBased strategy and learn how to apply each during an upgrade.
2.1. About Istio control plane update strategies Copy linkLink copied to clipboard!
The update strategy affects how the update process is performed. The spec.updateStrategy field in the Istio resource configuration determines how the OpenShift Service Mesh Operator updates the Istio control plane. When the Operator detects a change in the spec.version field or identifies a new minor release with a configured vX.Y-latest alias, it initiates an upgrade procedure. For each mesh, you select one of two strategies:
-
InPlace -
RevisionBased
InPlace is the default strategy for updating OpenShift Service Mesh. Both the update strategies apply to sidecar and ambient modes.
If you use ambient mode, you must update the Istio Container Network Interface (CNI) and ZTunnel components in addition to the standard control plane update procedures.
The InPlace update strategy is recommended for ambient mode. Using RevisionBased updates with ambient mode has limitations and requires manual intervention.
2.2. About InPlace strategy Copy linkLink copied to clipboard!
The InPlace update strategy runs only one revision of the control plane at a time. During an update, all the workloads immediately connect to the new control plane version. To maintain compatibility between the sidecars and the control plane, you can upgrade only one minor version at a time.
The InPlace strategy updates and restarts the existing Istio control plane in place. During this process, only one instance of the control plane exists, eliminating the need to move workloads to a new control plane instance. To complete the update, restart the application workloads and gateways to refresh the Envoy proxies.
While the InPlace strategy offers simplicity and efficiency, there’s a slight possibility of application traffic interruption if a workload pod updates, restarts, or scales while the control plane is restarting. You can mitigate this risk by running multiple replicas of the Istio control plane (istiod).
2.2.1. Selecting InPlace strategy Copy linkLink copied to clipboard!
To select the InPlace strategy, set the spec.updateStrategy.type value in the Istio resource to InPlace.
Example specification to select InPlace update strategy
kind: Istio
spec:
updateStrategy:
type: InPlace
You can set this value while creating the resource or edit it later. If you edit the resource after creation, make the change before updating the Istio control plane.
Running the Istio resource in High Availability mode to minimize traffic disruptions requires additional property settings. For more information, see "About Istio High Availability".
2.2.2. Installing with InPlace update strategy Copy linkLink copied to clipboard!
You can install the Istio control plane, Istio CNI, and the Bookinfo demo application using the Inplace update strategy.
You can skip this installation procedure if the cluster already includes an Istio deployment.
When using the InPlace strategy, the IstioRevision resource created by the OpenShift Service Mesh Operator always uses the same name as the Istio resource.
Procedure
Create the
istio-systemnamespace by running the following command:$ oc create ns istio-systemAttach the workloads to a control plane deployed using the
InPlacestrategy:Label the namespace to automatically include all workloads by entering the following command:
$ oc label namespace <namespace_name> istio.io/rev=<revision_name>Apply the revision label to individual workloads by modifying the pod template in the
Deploymentresource. For example:apiVersion: apps/v1 kind: Deployment spec: template: metadata: labels: istio.io/rev: <revision_name>
If the revision name is
default, attach the workloads to the revision by running the following command. The following example labels the namespace withistio-injection: enabledlabel.$ oc label namespace <namespace_name> istio-injection=enabledDeploy the Istio control plane using the
InPlaceupdate strategy. The following example configuration creates anIstioresource nameddefaultin theistio-systemnamespace:apiVersion: sailoperator.io/v1 kind: Istio metadata: name: default spec: namespace: istio-system version: v1.24.3 updateStrategy: type: InPlaceInstall the Istio CNI plugin with the desired version. The following example configuration creates an
IstioCNIresource nameddefaultin theistio-cninamespace:apiVersion: sailoperator.io/v1 kind: IstioCNI metadata: name: default spec: version: v1.24.3 namespace: istio-cniConfigure application workloads to run in the cluster. The following example deploys the
bookinfoapplication in thebookinfonamespace.Create the
bookinfonamespace by running the following command:$ oc create ns bookinfoLabel the
bookinfonamespace to enable sidecar injection by running the following command:$ oc label namespace bookinfo istio-injection=enabledInstall the
bookinfopods in thebookinfonamespace by running the following command:$ oc apply -f https://raw.githubusercontent.com/openshift-service-mesh/istio/release-1.24/samples/bookinfo/platform/kube/bookinfo.yaml -n bookinfo
Review the
Istioresource by running the following command:$ oc get istio -n istio-systemExample output
NAME REVISIONS READY IN USE ACTIVE REVISION STATUS VERSION AGE default 1 1 1 default Healthy v1.24.3 115sThe
IN USEfield shows1because both the namespace label and the injected proxies reference theIstioRevisionresource.
2.2.3. Updating Istio control plane with InPlace strategy Copy linkLink copied to clipboard!
When updating Istio using the InPlace strategy, you can increment the version by only one minor release at a time. To update by more than one minor version, you must increment the version and restart the workloads after each update. Restarting workloads ensures compatibility between the sidecar and control plane versions. The update process is complete after restarting all workloads.
Prerequisites
-
You are logged in to OpenShift Container Platform as a user with the
cluster-adminrole. - You have installed the Red Hat OpenShift Service Mesh Operator, and deployed Istio.
-
You have installed
istioctlon your local machine. -
You have configured the Istio control plane to use the
InPlaceupdate strategy. In this example, theIstioresource nameddefaultis deployed in theistio-systemnamespace. -
You have installed the Istio CNI plugin with the desired version. In this example, the
IstioCNIresource nameddefaultis deployed in theistio-cninamespace. -
You have labeled the
bookinfonamespace to enable sidecar injection. -
You have application workloads running in the cluster. In this example, the
bookinfoapplication is deployed in thebookinfonamespace.
Procedure
Change the version in the
Istioresource. For example, to update to Istio1.24.4, set thespec.versionfield tov1.24.4by running the following command:$ oc patch istio default --type='merge' -p '{"spec":{"version":"v1.24.4"}}'Version update in Istio CR
kind: Istio spec: version: v1.24.4 updateStrategy: type: InPlaceThe Service Mesh Operator deploys a new version of the control plane that replaces the old version of the control plane. The sidecars automatically reconnect to the new control plane.
Confirm that the new version of the control plane is ready by running the following command:
$ oc get istioExample output
NAME REVISIONS READY IN USE ACTIVE REVISION STATUS VERSION AGE default 1 1 1 default Healthy v1.24.4 4m50sRestart the application workloads so that the new version of the sidecar gets injected by running the following command:
$ oc rollout restart deployment -n bookinfo
Verification
Verify that the new version of the sidecar is running by entering the following command:
$ istioctl proxy-statusExample output
NAME CLUSTER CDS LDS EDS RDS ECDS ISTIOD VERSION details-v1-7d775cb4f6-5t9zm.bookinfo Kubernetes SYNCED (2m25s) SYNCED (2m25s) SYNCED (2m17s) SYNCED (2m25s) IGNORED istiod-default-v1-24-4-c98fd9675-r7bfw 1.24.4 productpage-v1-7c4b6b857-mxrw6.bookinfo Kubernetes SYNCED (2m35s) SYNCED (2m35s) SYNCED (2m17s) SYNCED (2m35s) IGNORED istiod-default-v1-24-4-c98fd9675-r7bfw 1.24.4 ratings-v1-5b896f8544-r552l.bookinfo Kubernetes SYNCED (2m21s) SYNCED (2m21s) SYNCED (2m17s) SYNCED (2m21s) IGNORED istiod-default-v1-24-4-c98fd9675-r7bfw 1.24.4 reviews-v1-746f96c9d4-9pw8k.bookinfo Kubernetes SYNCED (2m17s) SYNCED (2m17s) SYNCED (2m17s) SYNCED (2m17s) IGNORED istiod-default-v1-24-4-c98fd9675-r7bfw 1.24.4 reviews-v2-97bdf5876-4mzx5.bookinfo Kubernetes SYNCED (2m35s) SYNCED (2m35s) SYNCED (2m17s) SYNCED (2m35s) IGNORED istiod-default-v1-24-4-c98fd9675-r7bfw 1.24.4 reviews-v3-77d9db6844-djgjk.bookinfo Kubernetes SYNCED (2m19s) SYNCED (2m19s) SYNCED (2m17s) SYNCED (2m19s) IGNORED istiod-default-v1-24-4-c98fd9675-r7bfw 1.24.4The column
VERSIONshould match with the new control plane version.
2.3. About RevisionBased strategy Copy linkLink copied to clipboard!
The RevisionBased strategy runs two revisions of the control plane during an upgrade. This approach supports gradual workload migration from the old control plane to the new one, enabling canary upgrades. It also supports upgrades across more than one minor version.
The RevisionBased strategy creates a new Istio control plane instance for each change to the spec.version field. The existing control plane remains active until all workloads transition to the new instance. You can move the workloads to the new control plane by updating the istio.io/rev labels or using the IstioRevisionTag resource, followed by a restart.
Although the RevisionBased strategy involves additional steps and requires multiple control plane instances to run concurrently during the upgrade, it allows for gradual migration of workloads. This approach enables validation of the updated control plane with a subset of workloads before migrating the rest, making it useful for large meshes with mission-critical workloads.
2.3.1. Selecting RevisionBased strategy Copy linkLink copied to clipboard!
To deploy Istio with the RevisionBased strategy, create the Istio resource with the following spec.updateStrategy value:
Example specification to select RevisionBased strategy
kind: Istio
spec:
version: v1.24.4
updateStrategy:
type: RevisionBased
After you select the strategy for the Istio resource, the Operator creates a new IstioRevision resource with the name <istio_resource_name>-<version>.
2.3.2. Installing Istio with RevisionBased strategy Copy linkLink copied to clipboard!
You can install the Istio control plane, Istio CNI, and the Bookinfo demo application using the RevisionBased update strategy.
You can use the following section to understand the update process. You can skip this installation if the cluster already includes an Istio deployment.
Procedure
Create the
istio-systemnamespace by running the following command:$ oc create ns istio-systemDeploy the Istio control plane using the
RevisionBasedupdate strategy. The following example configuration creates anIstioresource nameddefaultin theistio-systemnamespace:Example configuration
apiVersion: sailoperator.io/v1 kind: Istio metadata: name: default spec: namespace: istio-system version: v1.24.3 updateStrategy: type: RevisionBasedInstall the Istio CNI plugin with the desired version. The following example configuration creates an
IstioCNIresource nameddefaultin theistio-cninamespace:Example configuration
apiVersion: sailoperator.io/v1 kind: IstioCNI metadata: name: default spec: version: v1.24.3 namespace: istio-cniGet the
IstioRevisionname by running the following command:$ oc get istiorevision -n istio-systemExample output
NAME TYPE READY STATUS IN USE VERSION AGE default-v1-24-3 Local True Healthy False v1.24.3 3m4sThe
IstioRevisionname is in the format<istio_resource_name>-<version>.Configure application workloads to run in the cluster. The following example deploys the
bookinfoapplication in thebookinfonamespace:Create the
bookinfonamespace by running the following command:$ oc create ns bookinfoLabel the
bookinfonamespace to enable sidecar injection by running the following command:$ oc label namespace bookinfo istio.io/rev=<revision_name>Install the
bookinfopods in thebookinfonamespace by running the following command:$ oc apply -f https://raw.githubusercontent.com/openshift-service-mesh/istio/release-1.24/samples/bookinfo/platform/kube/bookinfo.yaml -n bookinfo
Review the
Istioresource by running the following command:$ oc get istio -n istio-systemExample output
NAME REVISIONS READY IN USE ACTIVE REVISION STATUS VERSION AGE default 1 1 1 default-v1-24-3 Healthy v1.24.3 5m13sThe
IN USEfield shows1after you deploy the application.Confirm that the proxy version matches the control plane version by running the following command:
$ istioctl proxy-statusThe
VERSIONcolumn should match the control plane version.Example output
NAME TYPE READY STATUS IN USE VERSION AGE default-v1-24-3 Local True Healthy True v1.24.3 5m31s
2.3.3. Updating Istio control plane with RevisionBased strategy Copy linkLink copied to clipboard!
When updating Istio using the RevisionBased strategy, you can upgrade by more than one minor version at a time. The Red Hat OpenShift Service Mesh Operator creates a new IstioRevision resource for each change to the .spec.version field and deploys a corresponding control plane instance. To migrate workloads to the new control plane, set the istio.io/rev label on the namespace to match the name of the IstioRevision resource, and then restart the workloads.
Prerequisites
-
You are logged in to OpenShift Container Platform as a user with the
cluster-adminrole. -
You have installed the Red Hat OpenShift Service Mesh Operator 3, and deployed Istio with the
RevisionBasedstrategy. In this example, theIstioresource nameddefaultis deployed in theistio-systemnamespace. -
You have installed the Istio CNI plugin with the desired version. In this example, the
IstioCNIresource nameddefaultis deployed in theistio-cninamespace. -
You have labeled the
bookinfonamespace to enable sidecar injection. -
You have application workloads running in the cluster. In this example, the
bookinfoapplication is deployed in thebookinfonamespace. -
You have installed
istioctlon your local machine.
Procedure
Change the version in the
Istioresource. For example, to update to Istio1.24.4, set thespec.versionfield tov1.24.4by running the following command:$ oc patch istio default --type='merge' -p '{"spec":{"version":"v1.24.4"}}'Version Update in Istio CR
kind: Istio spec: version: v1.24.4 updateStrategy: type: RevisionBasedThe Service Mesh Operator deploys a new version of the control plane alongside the old version of the control plane. The sidecars remain connected to the old control plane.
Confirm that both
IstioandIstioRevisionresources are ready with the new revision.Confirm that
Istioresource is ready by running the following command:$ oc get istioExample output
NAME REVISIONS READY IN USE ACTIVE REVISION STATUS VERSION AGE default 2 2 1 default-v1-2-4 Healthy v1.24.4 9m23sConfirm that
IstioRevisionresource is ready by running the following command:$ oc get istiorevisionExample output
NAME TYPE READY STATUS IN USE VERSION AGE default-v1-24-3 Local True Healthy True v1.24.3 10m default-v1-24-4 Local True Healthy False v1.24.4 66s
Confirm that there are two control plane pods running, one for each revision by running the following command:
$ oc get pods -n istio-systemExample output
NAME READY STATUS RESTARTS AGE istiod-default-v1-24-3-c98fd9675-r7bfw 1/1 Running 0 10m istiod-default-v1-24-4-7495cdc7bf-v8t4g 1/1 Running 0 113sConfirm that the workload sidecars are still connected to the previous control plane by running the following command:
$ istioctl proxy-statusExample output
NAME CLUSTER CDS LDS EDS RDS ECDS ISTIOD VERSION details-v1-7d775cb4f6-5t9zm.bookinfo Kubernetes SYNCED (2m25s) SYNCED (2m25s) SYNCED (2m17s) SYNCED (2m25s) IGNORED istiod-default-v1-24-3-c98fd9675-r7bfw 1.24.3 productpage-v1-7c4b6b857-mxrw6.bookinfo Kubernetes SYNCED (2m35s) SYNCED (2m35s) SYNCED (2m17s) SYNCED (2m35s) IGNORED istiod-default-v1-24-3-c98fd9675-r7bfw 1.24.3 ratings-v1-5b896f8544-r552l.bookinfo Kubernetes SYNCED (2m21s) SYNCED (2m21s) SYNCED (2m17s) SYNCED (2m21s) IGNORED istiod-default-v1-24-3-c98fd9675-r7bfw 1.24.3 reviews-v1-746f96c9d4-9pw8k.bookinfo Kubernetes SYNCED (2m17s) SYNCED (2m17s) SYNCED (2m17s) SYNCED (2m17s) IGNORED istiod-default-v1-24-3-c98fd9675-r7bfw 1.24.3 reviews-v2-97bdf5876-4mzx5.bookinfo Kubernetes SYNCED (2m35s) SYNCED (2m35s) SYNCED (2m17s) SYNCED (2m35s) IGNORED istiod-default-v1-24-3-c98fd9675-r7bfw 1.24.3 reviews-v3-77d9db6844-djgjk.bookinfo Kubernetes SYNCED (2m19s) SYNCED (2m19s) SYNCED (2m17s) SYNCED (2m19s) IGNORED istiod-default-v1-24-3-c98fd9675-r7bfw 1.24.3The
VERSIONcolumn should match the old control plane version.Move the workloads to the new control plane by updating the
istio.io/revlabel on the application namespace or pods to the revision name. For example, update the label for the entire namespace by running the following command:$ oc label namespace bookinfo istio.io/rev=<new_revision_name> --overwriteRestart the application workloads so that the new version of the sidecar gets injected by running the following command:
$ oc rollout restart deployment -n bookinfo
Verification
Verify that the new version of the sidecar is running by entering the following command:
$ istioctl proxy-statusThe
VERSIONcolumn should match the new control plane version.Verify that the old control plane,
Istio, andIstioRevisionresources has been deleted.Verify that the old control plane has beend deleted by running the following command:
$ oc get pods -n istio-systemVerify that the
Istioresource has been deleted by running the following command:$ oc get istioVerify that the
IstioRevisionresource has been deleted by running the following command:$ oc get istiorevision
The OpenShift Service Mesh Operator deletes the old IstioRevision resource and the associated control plane after the grace period defined in the spec.updateStrategy.inactiveRevisionDeletionGracePeriodSeconds field expires. The default grace period is 30 seconds.
You can increase the grace period to allow sufficient time to test the new control plane before removing the previous revision. Set a higher value during canary upgrades to ensure workload stability before fully transitioning.
2.3.4. Installing Istio with RevisionBased strategy and IstioRevisionTag Copy linkLink copied to clipboard!
You can install the Istio control plane, IstioRevisionTag resource, Istio CNI, and the Bookinfo demo application using the RevisionBased update strategy.
You can use the following section to understand the update process. You can skip this installation if the cluster already includes an Istio deployment.
Procedure
Create the
istio-systemnamespace by running the following command:$ oc create ns istio-systemDeploy the Istio control plane using the
RevisionBasedupdate strategy. The following example configuration creates anIstioresource nameddefaultin theistio-systemnamespace:Example configuration
apiVersion: sailoperator.io/v1 kind: Istio metadata: name: default spec: namespace: istio-system updateStrategy: type: RevisionBased version: v1.24.3Create an
IstioRevisionTagresource. The following example configuration creates anIstioRevisionTagresource nameddefault:Example configuration
apiVersion: sailoperator.io/v1 kind: IstioRevisionTag metadata: name: default spec: targetRef: kind: Istio name: defaultVerify that the
targetReffield points to the desiredIstioresource. In the example above, theIstioRevisionTagreferences theIstioresource nameddefault.Create the
istio-cninamespace by running the following command:$ oc create ns istion-cniInstall the Istio CNI plugin with the desired version. The following example configuration creates an
IstioCNIresource nameddefaultin theistio-cninamespace:Example configuration
apiVersion: sailoperator.io/v1 kind: IstioCNI metadata: name: default spec: version: v1.24.3 namespace: istio-cniConfigure application workloads to run in the cluster. The following example deploys the
bookinfoapplication in thebookinfonamespace.Create the
bookinfonamespace by running the following command:$ oc create ns bookinfoLabel the
bookinfonamespace to enable sidecar injection by running the following command:$ oc label namespace bookinfo istio-injection=enabledInstall the
bookinfopods in thebookinfonamespace by running the following command:$ oc apply -f https://raw.githubusercontent.com/openshift-service-mesh/istio/release-1.24/samples/bookinfo/platform/kube/bookinfo.yaml -n bookinfo
Review the
IstioRevisionTagresource by running the following command:$ oc get istiorevisiontagExample output
NAME STATUS IN USE REVISION AGE default Healthy True default-v1-24-3 2m46sThe
IN USEfield showsTruebecause both active workloads and thebookinfonamespace now reference the tag.Confirm that the proxy version matches the control plane version by running the following command:
$ istioctl proxy-statusThe
VERSIONcolumn should match the control plane version.Example output
NAME TYPE READY STATUS IN USE VERSION AGE default-v1-24-3 Local True Healthy True v1.24.3 5m31s
2.3.5. Updating Istio control plane with RevisionBased strategy and IstioRevisionTag Copy linkLink copied to clipboard!
When updating Istio using the RevisionBased strategy, you can create an IstioRevisionTag resource to tag a specific IstioRevision resource. You can use the IstioRevisionTag resource to attach workloads to a specific IstioRevision resource without modifying the istio.io/rev label on namespaces or pods.
Prerequisites
-
You are logged in to OpenShift Container Platform as a user with the
cluster-adminrole. -
You have installed the Red Hat OpenShift Service Mesh Operator 3, and deployed Istio with the
RevisionBasedstrategy. In this example, theIstioresource nameddefaultis deployed in theistio-systemnamespace. -
You have created an
IstioRevisionTagresource and thetargetReffield is referencing the desiredIstioresource. - You have installed the Istio CNI plugin with the desired version.
-
You have labeled the
bookinfonamespace to enable sidecar injection. -
You have application workloads running in the cluster. In this example, the
bookinfoapplication is deployed in thebookinfonamespace. -
You have installed
istioctlon your local machine. -
You have confirmed that the
InUsefield in theIstioRevisionTagresource is set totrue.
Procedure
Change the version in the
Istioresource. For example, to update to Istio1.24.4, set thespec.versionfield tov1.24.4by running the following command:$ oc patch istio default --type='merge' -p '{"spec":{"version":"v1.24.4"}}'Version Update in Istio CR
kind: Istio spec: version: v1.24.4 updateStrategy: type: RevisionBasedThe Service Mesh Operator deploys a new version of the control plane alongside the old version of the control plane. The sidecars remain connected to the old control plane.
Confirm that the
Istio,IstioRevisionandIstioRevisionTagresources are ready with the new revision.Confirm that
Istioresource is ready by running the following command:$ oc get istioExample output
NAME REVISIONS READY IN USE ACTIVE REVISION STATUS VERSION AGE default 2 2 1 default-v1-24-3 Healthy v1.24.3 9m23sConfirm that
IstioRevisionresource is ready by running the following command:$ oc get istiorevisionExample output
NAME TYPE READY STATUS IN USE VERSION AGE default-v1-24-3 Local True Healthy True v1.24.3 10m default-v1-24-4 Local True Healthy True v1.24.4 66sConfirm that
IstioRevisionTagresource is ready by running the following command:$ oc get istiorevisiontagExample output
NAME STATUS IN USE REVISION AGE default Healthy True default-v1-24-4 10m44s
Confirm that there are two control plane pods ready for each revision by running the following command:
$ oc get pods -n istio-systemExample output
NAME READY STATUS RESTARTS AGE istiod-default-v1-24-3-c98fd9675-r7bfw 1/1 Running 0 10m istiod-default-v1-24-4-7495cdc7bf-v8t4g 1/1 Running 0 113sConfirm that the proxy sidecar version is the same by running the following command:
$ istioctl proxy-statusExample output
NAME CLUSTER CDS LDS EDS RDS ECDS ISTIOD VERSION details-v1-7d775cb4f6-5t9zm.bookinfo Kubernetes SYNCED (2m25s) SYNCED (2m25s) SYNCED (2m17s) SYNCED (2m25s) IGNORED istiod-default-v1-24-3-c98fd9675-r7bfw 1.24.3 productpage-v1-7c4b6b857-mxrw6.bookinfo Kubernetes SYNCED (2m35s) SYNCED (2m35s) SYNCED (2m17s) SYNCED (2m35s) IGNORED istiod-default-v1-24-3-c98fd9675-r7bfw 1.24.3 ratings-v1-5b896f8544-r552l.bookinfo Kubernetes SYNCED (2m21s) SYNCED (2m21s) SYNCED (2m17s) SYNCED (2m21s) IGNORED istiod-default-v1-24-3-c98fd9675-r7bfw 1.24.3 reviews-v1-746f96c9d4-9pw8k.bookinfo Kubernetes SYNCED (2m17s) SYNCED (2m17s) SYNCED (2m17s) SYNCED (2m17s) IGNORED istiod-default-v1-24-3-c98fd9675-r7bfw 1.24.3 reviews-v2-97bdf5876-4mzx5.bookinfo Kubernetes SYNCED (2m35s) SYNCED (2m35s) SYNCED (2m17s) SYNCED (2m35s) IGNORED istiod-default-v1-24-3-c98fd9675-r7bfw 1.24.3 reviews-v3-77d9db6844-djgjk.bookinfo Kubernetes SYNCED (2m19s) SYNCED (2m19s) SYNCED (2m17s) SYNCED (2m19s) IGNORED istiod-default-v1-24-3-c98fd9675-r7bfw 1.24.3The
VERSIONcolumn should match the old control plane version.Restart the application workloads so that the new version of the sidecar gets injected by running the following command:
$ oc rollout restart deployment -n bookinfo
Verification
Verify that the new version of the sidecar is running by entering the following command:
$ istioctl proxy-statusThe
VERSIONcolumn should match the new control plane version.Verify that the old control plane,
Istio, andIstioRevisionresources has been deleted.Verify that the old control plane has been deleted by running the following command:
$ oc get pods -n istio-systemVerify that the
Istioresource has been deleted by running the following command:$ oc get istioVerify that the
IstioRevisionresource has beend deleted by running the following command:$ oc get istiorevision
The OpenShift Service Mesh Operator deletes the old IstioRevision resource and the associated control plane after the grace period defined in the spec.updateStrategy.inactiveRevisionDeletionGracePeriodSeconds field expires. The default grace period is 30 seconds.
You can increase the grace period to allow sufficient time to test the new control plane before removing the previous revision. Set a higher value during canary upgrades to ensure workload stability before fully transitioning.