From 8eaca0de336b8bf0f408914c5371fda543ee302c Mon Sep 17 00:00:00 2001 From: Mark Bolton Date: Thu, 17 Oct 2024 17:38:21 -0700 Subject: [PATCH] api: Add network_ovn_uplink_vlan API extension This API extension introduces support for using bridge networks with a specified VLAN ID as the uplink for OVN networks. Signed-off-by: Mark Bolton --- doc/api-extensions.md | 4 ++++ shared/version/api.go | 1 + 2 files changed, 5 insertions(+) diff --git a/doc/api-extensions.md b/doc/api-extensions.md index 1fdc2932ae68..aa37e001218e 100644 --- a/doc/api-extensions.md +++ b/doc/api-extensions.md @@ -2507,3 +2507,7 @@ Expands APIs under `/1.0/auth` to include: Includes OVN virtual routers external IPs to `/1.0/network-allocations` responses with the type `uplink`. Introduces the `network` field on each allocation, indicating to which network each allocated address belongs. And lastly, adds a `project` field on leases, leases can be retrieved via `/1.0/networks//leases`. + +## `network_ovn_uplink_vlan` + +Adds support for using a bridge network with a specified VLAN ID as an OVN uplink. diff --git a/shared/version/api.go b/shared/version/api.go index a4edaaf8f306..564330a302db 100644 --- a/shared/version/api.go +++ b/shared/version/api.go @@ -420,6 +420,7 @@ var APIExtensions = []string{ "metadata_configuration_entity_types", "access_management_tls", "network_allocations_ovn_uplink", + "network_ovn_uplink_vlan", } // APIExtensionsCount returns the number of available API extensions.