From 5bdf1a254f66a72fc3b80ac56836671152cc7006 Mon Sep 17 00:00:00 2001 From: Skalador Date: Fri, 21 Mar 2025 20:20:47 +0100 Subject: [PATCH] Fix the oc patch command for the global ip forwarding in cno docs The oc patch command for global ipForwarding was missing a single quote at the end and a --type=merge to be applied to any cluster. --- modules/nw-cno-enable-ip-forwarding.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nw-cno-enable-ip-forwarding.adoc b/modules/nw-cno-enable-ip-forwarding.adoc index eefcc4c55f3e..be2a1432e036 100644 --- a/modules/nw-cno-enable-ip-forwarding.adoc +++ b/modules/nw-cno-enable-ip-forwarding.adoc @@ -60,7 +60,7 @@ The status should eventually report as `Available`, `Progressing=False`, and `De + [source,terminal] ---- -$ oc patch network.operator cluster -p '{"spec":{"defaultNetwork":{"ovnKubernetesConfig":{"gatewayConfig":{"ipForwarding": "Global"}}}}} +$ oc patch network.operator cluster -p '{"spec":{"defaultNetwork":{"ovnKubernetesConfig":{"gatewayConfig":{"ipForwarding": "Global"}}}}}' --type=merge ---- + [NOTE]