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 use multi-homing, link redundancy, and fast convergence. BGP configuration is managed with the `FRRConfiguration` custom resource (CR).
446
+
447
+
When upgrading from an earlier version of {product-title} in which you installed the MetalLB Operator, 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:
448
+
449
+
. To create the `openshift-frr-k8s` namespace, enter the following command:
450
+
+
451
+
[source,terminal]
452
+
----
453
+
$ oc create namespace openshift-frr-k8s
454
+
----
455
+
456
+
. To automate the migration, create a `migrate.sh` file with the following content:
457
+
+
458
+
[source,bash]
459
+
----
460
+
#!/bin/bash
461
+
OLD_NAMESPACE="metallb-system"
462
+
NEW_NAMESPACE="openshift-frr-k8s"
463
+
FILTER_OUT="metallb-"
464
+
oc get frrconfigurations.frrk8s.metallb.io -n "${OLD_NAMESPACE}" -o json |\
0 commit comments