From: Lucas Alvares Gomes <[email protected]> The external_ids column is missing from the NAT and Logical_Router_Static_Route tables.
As discussed at [0] the change to the schema for this backport should leave the version number unmodified. [0] https://mail.openvswitch.org/pipermail/ovs-dev/2017-December/341630.html Signed-off-by: Lucas Alvares Gomes <[email protected]> --- ovn/ovn-nb.ovsschema | 12 +++++++++--- ovn/ovn-nb.xml | 14 ++++++++++++++ 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/ovn/ovn-nb.ovsschema b/ovn/ovn-nb.ovsschema index a077bfb81..30fe610ff 100644 --- a/ovn/ovn-nb.ovsschema +++ b/ovn/ovn-nb.ovsschema @@ -1,7 +1,7 @@ { "name": "OVN_Northbound", "version": "5.8.0", - "cksum": "2812300190 16766", + "cksum": "3279121944 17086", "tables": { "NB_Global": { "columns": { @@ -235,7 +235,10 @@ "dst-ip"]]}, "min": 0, "max": 1}}, "nexthop": {"type": "string"}, - "output_port": {"type": {"key": "string", "min": 0, "max": 1}}}, + "output_port": {"type": {"key": "string", "min": 0, "max": 1}}, + "external_ids": { + "type": {"key": "string", "value": "string", + "min": 0, "max": "unlimited"}}}, "isRoot": false}, "NAT": { "columns": { @@ -249,7 +252,10 @@ "enum": ["set", ["dnat", "snat", "dnat_and_snat" - ]]}}}}, + ]]}}}, + "external_ids": { + "type": {"key": "string", "value": "string", + "min": 0, "max": "unlimited"}}}, "isRoot": false}, "DHCP_Options": { "columns": { diff --git a/ovn/ovn-nb.xml b/ovn/ovn-nb.xml index 5b022697e..763846a43 100644 --- a/ovn/ovn-nb.xml +++ b/ovn/ovn-nb.xml @@ -1497,6 +1497,13 @@ address as the one via which the <ref column="nexthop"/> is reachable. </p> </column> + + <group title="Common Columns"> + <column name="external_ids"> + See <em>External IDs</em> at the beginning of this document. + </column> + </group> + </table> <table name="NAT" title="NAT rules"> @@ -1575,6 +1582,13 @@ port instance on the <code>redirect-chassis</code>. </p> </column> + + <group title="Common Columns"> + <column name="external_ids"> + See <em>External IDs</em> at the beginning of this document. + </column> + </group> + </table> <table name="DHCP_Options" title="DHCP options"> -- 2.15.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
