Skip to content

Commit 7b46122

Browse files
authored
Merge pull request #82768 from dfitzmau/OSDOCS-11874-fix
OSDOCS-11874-fix: Updated Migrating from the OpenShift SDN network pl…
2 parents 2cbb066 + 3a96a75 commit 7b46122

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

modules/nw-ovn-kubernetes-migration.adoc

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,19 @@ While performing the migration, your cluster is unavailable and workloads might
2323
* You can manually reboot each node.
2424
* You checked that your cluster is in a known good state without any errors.
2525
* You created a security group rule that allows User Datagram Protocol (UDP) packets on port `6081` for all nodes on all cloud platforms.
26-
* You set all timeouts for webhooks to `3` seconds or removed the webhooks.
26+
* You removed webhooks. Alternatively, you can set a timeout value for each webhook, which is detailed in the procedure. If you did not complete one of these tasks, your cluster might fail to schedule pods.
2727
2828
.Procedure
2929

30+
. If you did not remove webhooks, set the timeout value for each webhook to `3` seconds by creating a `ValidatingWebhookConfiguration` custom resource and then specify the timeout value for the `timeoutSeconds` parameter:
31+
+
32+
[source,terminal]
33+
----
34+
oc patch ValidatingWebhookConfiguration <webhook_name> --type='json' \ <1>
35+
-p '[{"op": "replace", "path": "/webhooks/0/timeoutSeconds", "value": 3}]'
36+
----
37+
<1> Where `<webhook_name>` is the name of your webhook.
38+
3039
. To backup the configuration for the cluster network, enter the following command:
3140
+
3241
[source,terminal]

networking/openshift_sdn/rollback-to-ovn-kubernetes.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ include::snippets/sdn-deprecation-statement.adoc[]
1313
To learn more about OVN-Kubernetes, read xref:../../networking/ovn_kubernetes_network_provider/about-ovn-kubernetes.adoc#about-ovn-kubernetes[About the OVN-Kubernetes network plugin].
1414

1515
include::modules/nw-ovn-kubernetes-migration.adoc[leveloffset=+1]
16+

0 commit comments

Comments
 (0)