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-19-release-notes.adoc
+46Lines changed: 46 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -460,6 +460,52 @@ For more information, see xref:../updating/preparing_for_updates/updating-cluste
460
460
461
461
With this release, {product-title} routes can be configured with third-party certificate management solutions, utilising the `.spec.tls.externalCertificate` field in the route API. This allows you to reference externally managed TLS certificates through secrets, streamlining the process by eliminating manual certificate management. By using externally managed certificates, you reduce errors, ensure a smoother certificate update process, and enable the OpenShift router to promptly serve renewed certificates. For more information, see xref:../networking/routes/secured-routes.adoc#nw-ingress-route-secret-load-external-cert_secured-routes[Creating a route with externally managed certificate].
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).
467
+
468
+
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:
469
+
470
+
. To create the `openshift-frr-k8s` namespace, enter the following command:
471
+
+
472
+
[source,terminal]
473
+
----
474
+
$ oc create namespace openshift-frr-k8s
475
+
----
476
+
477
+
. To automate the migration, create a `migrate.sh` file with the following content:
478
+
+
479
+
[source,bash]
480
+
----
481
+
#!/bin/bash
482
+
OLD_NAMESPACE="metallb-system"
483
+
NEW_NAMESPACE="openshift-frr-k8s"
484
+
FILTER_OUT="metallb-"
485
+
oc get frrconfigurations.frrk8s.metallb.io -n "${OLD_NAMESPACE}" -o json |\
0 commit comments