You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: release_notes/ocp-4-18-release-notes.adoc
+48
Original file line number
Diff line number
Diff line change
@@ -852,6 +852,54 @@ With this release, you can configure a multi-network policy for the following ne
852
852
853
853
For more information, see xref:../networking/multiple_networks/secondary_networks/configuring-multi-network-policy.adoc[Configuring multi-network policy]
The Cluster Network Operator (CNO) now supports enabling Border Gateway Protocol (BGP) routing. With BGP, you can import and export routes to the underlying provider network and utilize multi-homing, link redundancy, and fast convergence. BGP configuration is managed with the `FRRConfiguration` custom resource (CR).
859
+
860
+
When upgrading from an earlier version of {product-title} with the Metal LB Operator deployed, you must manually migrate your custom frr-k8s configurations from the `metallb-system` namespace to the `openshift-frr-k8s` namespace. To move these CRs, enter the following commands:
861
+
862
+
. To create the `openshift-frr-k8s` namespace, enter the following command:
863
+
+
864
+
[source,terminal]
865
+
----
866
+
$ oc create namespace openshift-frr-k8s
867
+
----
868
+
869
+
. To automate the migration, create a `migrate.sh` with the following content:
870
+
+
871
+
[source,bash]
872
+
----
873
+
#!/bin/bash
874
+
875
+
OLD_NAMESPACE="metallb-system"
876
+
NEW_NAMESPACE="openshift-frr-k8s"
877
+
FILTER_OUT="metallb-"
878
+
879
+
oc get frrconfigurations.frrk8s.metallb.io -n "${OLD_NAMESPACE}" -o json |\
==== Updated terminology for whitelist and blacklist annotations
857
905
The terminology for the `ip_whitelist` and `ip_blacklist` annotations have been updated to `ip_allowlist` and `ip_denylist`, respectively. Currently, {product-title} still supports the `ip_whitelist` and `ip_blacklist` annotations. However, these annotations are planned for removal in a future release.
0 commit comments