Skip to content

Commit c00dae9

Browse files
authored
Merge pull request #95014 from dfitzmau/OSDOCS-14901-15
[enterprise-4.15] OSDOCS-14901: Added network-type-migration- annotation step to nw-ov…
2 parents d4b3c96 + 1a3f670 commit c00dae9

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

modules/initiating-limited-live-migration.adoc

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,11 @@ $ oc get network.config.openshift.io cluster -o jsonpath='{.status.networkType}'
5858
$ oc get network.config cluster -o=jsonpath='{.status.conditions}' | jq .
5959
----
6060
+
61-
You can check limited live migration metrics for troubleshooting issues. For more information, see "Checking limited live migration metrics".
61+
You can check limited live migration metrics for troubleshooting issues. For more information, see "Checking limited live migration metrics".
62+
63+
. After a successful migration operation, remove the `network.openshift.io/network-type-migration-` annotation from the `network.config` custom resource by entering the following command:
64+
+
65+
[source,terminal]
66+
----
67+
$ oc annotate network.config cluster network.openshift.io/network-type-migration-
68+
----

modules/nw-ovn-kubernetes-migration.adoc

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -438,29 +438,36 @@ $ oc get co
438438
The status of every cluster Operator must be the following: `AVAILABLE="True"`, `PROGRESSING="False"`, `DEGRADED="False"`. If a cluster Operator is not available or degraded, check the logs for the cluster Operator for more information.
439439

440440
. Complete the following steps only if the migration succeeds and your cluster is in a good state:
441-
441+
+
442442
.. To remove the migration configuration from the CNO configuration object, enter the following command:
443443
+
444444
[source,terminal]
445445
----
446446
$ oc patch Network.operator.openshift.io cluster --type='merge' \
447447
--patch '{ "spec": { "migration": null } }'
448448
----
449-
449+
+
450450
.. To remove custom configuration for the OpenShift SDN network provider, enter the following command:
451451
+
452452
[source,terminal]
453453
----
454454
$ oc patch Network.operator.openshift.io cluster --type='merge' \
455455
--patch '{ "spec": { "defaultNetwork": { "openshiftSDNConfig": null } } }'
456456
----
457-
457+
+
458458
.. To remove the OpenShift SDN network provider namespace, enter the following command:
459459
+
460460
[source,terminal]
461461
----
462462
$ oc delete namespace openshift-sdn
463463
----
464+
+
465+
.. After a successful migration operation, remove the `network.openshift.io/network-type-migration-` annotation from the `network.config` custom resource by entering the following command:
466+
+
467+
[source,terminal]
468+
----
469+
$ oc annotate network.config cluster network.openshift.io/network-type-migration-
470+
----
464471

465472
.Next steps
466473

0 commit comments

Comments
 (0)