Looking for ability to create "bridge-like" OVN network

I’m looking the way to have fully managed OVN network connected to the physical/vlan/bridge network without intermediate OVN router.

Problem statement

I use incus cluster with unmanaged, vlan based bridges. There are several containers running as failover clusters for specific services inside the incus cluster.
Everything works fine, but this solution is not flexible enough. Any network configuration changes requires network config modification on every cluster node.
I’m looking for ability to switch networking configuration to the OVN managed networks and having benefits like ACLs, IP Assignments from the instance config, etc. However, I’m facing several challenges:

  1. I need at least one IP subnet to be routed or directly connected to my root router (without NAT and forwarders). Looking to the current OVN network implementation I see the incus always creates intermediate router between the parent network (physical/vlan/bridge) and incus network. So I’m not able to create ovn type network which utilize full address space defined in the ipv4.gateway option in the parent network
  2. As my root router does not support a BGP protocol and the OVN does not support ospf or RIP protocols I’m unable to utilize dynamic routes updates for the root router.
  3. It would be possible to configure a static route for group if subnets, but the incus creates separate IP in the parent network for every new OVN network. So, I will need to create new route on the root router every time when I create/delete/modify ovn network in the incus cluster.

One of the possible solutions for my case is ability to create OVN network where logical switch is connected to the parent bridge without intermediate router. In this case the only network can be configured for the 'parent` physical uplink network.

Below is a an ovn network topology prepared by the incus per each ovn network:

Whether it possible to create topology below in additional to common one?