-
Notifications
You must be signed in to change notification settings - Fork 1.8k
[enterprise-4.19] Add release note for BGP routing #92974
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
jab-rh
wants to merge
1
commit into
openshift:enterprise-4.19
Choose a base branch
from
jab-rh:rn-OSDOCS-10810-bgp-419
base: enterprise-4.19
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
|
||
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]. | ||
|
||
[id="ocp-4-19-support-for-bgp-routing-protocol_{context}"] | ||
==== Support for the BGP routing protocol | ||
|
||
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). | ||
|
||
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: | ||
|
||
. To create the `openshift-frr-k8s` namespace, enter the following command: | ||
+ | ||
[source,terminal] | ||
---- | ||
$ oc create namespace openshift-frr-k8s | ||
---- | ||
|
||
. To automate the migration, create a `migrate.sh` file with the following content: | ||
+ | ||
[source,bash] | ||
---- | ||
#!/bin/bash | ||
OLD_NAMESPACE="metallb-system" | ||
NEW_NAMESPACE="openshift-frr-k8s" | ||
FILTER_OUT="metallb-" | ||
oc get frrconfigurations.frrk8s.metallb.io -n "${OLD_NAMESPACE}" -o json |\ | ||
jq -r '.items[] | select(.metadata.name | test("'"${FILTER_OUT}"'") | not)' |\ | ||
jq -r '.metadata.namespace = "'"${NEW_NAMESPACE}"'"' |\ | ||
oc create -f - | ||
---- | ||
|
||
. To run the migration script, enter the following command: | ||
+ | ||
[source,terminal] | ||
---- | ||
$ bash migrate.sh | ||
---- | ||
|
||
. To verify that the migration succeeded, enter the following command: | ||
+ | ||
[source,terminal] | ||
---- | ||
$ oc get frrconfigurations.frrk8s.metallb.io -n openshift-frr-k8s | ||
---- | ||
Comment on lines
+502
to
+503
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there a possible Example output to show? |
||
|
||
After the migration is complete, you can remove the `FRR-K8s` custom resources from the `metallb-system` namespace. | ||
|
||
For more information, see x!ref:../networking/bgp_routing/about-bgp-routing.adoc#about-bgp-routing[About BGP routing]. | ||
|
||
[id="ocp-4-19-networking-gateway-api-controller_{context}"] | ||
==== Support for using the Gateway API to configure cluster Ingress traffic | ||
We will have details here when {product-title} {product-version} is released. | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A note about the usage of
jq
: https://github.com/openshift/openshift-docs/blob/main/contributing_to_docs/doc_guidelines.adoc#commands-with-jqhere it looks like it is truly required, but I am checking just in case.