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
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 `BGPConfiguration` custom resource (CR).
596
+
597
+
When upgrading from an earlier version of {product-title}, you must manually migrate your frr-k8s configurations from the `metallb-system` namespace to the `openshift-frr-k8s` namespace. To move these CRs, enter the following commands:
598
+
599
+
. To create the `openshift-frr-k8s` namespace, enter the following command:
600
+
+
601
+
[source,terminal]
602
+
----
603
+
$ oc create namespace openshift-frr-k8s
604
+
----
605
+
606
+
. To automate the migration, create a `migrate.sh` with the following content:
607
+
+
608
+
[source,bash]
609
+
----
610
+
#!/bin/bash
611
+
612
+
OLD_NAMESPACE="metallb-system"
613
+
NEW_NAMESPACE="openshift-frr-k8s"
614
+
FILTER_OUT="metallb-"
615
+
616
+
oc get frrconfigurations.frrk8s.metallb.io -n "${OLD_NAMESPACE}" -o json |\
==== Updated terminology for whitelist and blacklist annotations
594
640
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