The series supports interconnecting multiple OVN deployments (e.g.  located at
multiple data centers) through logical routers connected with tansit logical
switches with overlay tunnels, managed through OVN control plane.  See the
ovn-architecture.rst document updates for more details, and find the
instructions in Documentation/tutorials/ovn-interconnection.rst.

Han Zhou (13):
  ovn-architecture: Add documentation for OVN interconnection feature.
  ovn-inb: Interconnection northbound DB schema and CLI.
  ovn-isb: Interconnection southbound DB schema and CLI.
  ovn-ic: Interconnection controller with AZ registeration.
  ovn-northd.c: Refactor allocate_tnlid.
  ovn-ic: Transit switch controller.
  ovn-sb: Add columns is_interconn and is_remote to Chassis.
  ovn-ic: Interconnection gateway controller.
  ovn-ic: Interconnection port controller.
  ovn.at: e2e test for OVN interconnection.
  ovn-ctl: Refactor to reduce redundant code.
  ovn-ctl: Support commands for interconnection.
  tutorial: Add tutorial for OVN Interconnection.

 .gitignore                                      |    6 +
 Documentation/automake.mk                       |    1 +
 Documentation/tutorials/index.rst               |    1 +
 Documentation/tutorials/ovn-interconnection.rst |  188 ++++
 Makefile.am                                     |    1 +
 NEWS                                            |    5 +
 TODO.rst                                        |   10 +
 automake.mk                                     |   75 ++
 controller/binding.c                            |    6 +-
 controller/chassis.c                            |   14 +
 debian/ovn-common.install                       |    2 +
 debian/ovn-common.manpages                      |    4 +
 ic/.gitignore                                   |    2 +
 ic/automake.mk                                  |   10 +
 ic/ovn-ic.8.xml                                 |  111 +++
 ic/ovn-ic.c                                     | 1050 +++++++++++++++++++++++
 lib/.gitignore                                  |    6 +
 lib/automake.mk                                 |   32 +-
 lib/ovn-inb-idl.ann                             |    9 +
 lib/ovn-isb-idl.ann                             |    9 +
 lib/ovn-util.c                                  |   92 ++
 lib/ovn-util.h                                  |   15 +
 northd/ovn-northd.c                             |  108 +--
 ovn-architecture.7.xml                          |  107 ++-
 ovn-inb.ovsschema                               |   75 ++
 ovn-inb.xml                                     |  371 ++++++++
 ovn-isb.ovsschema                               |  129 +++
 ovn-isb.xml                                     |  582 +++++++++++++
 ovn-nb.ovsschema                                |    5 +-
 ovn-nb.xml                                      |   28 +-
 ovn-sb.ovsschema                                |    8 +-
 ovn-sb.xml                                      |   24 +
 tests/automake.mk                               |    8 +-
 tests/ovn-ic.at                                 |  192 +++++
 tests/ovn-inbctl.at                             |   65 ++
 tests/ovn-isbctl.at                             |  112 +++
 tests/ovn-macros.at                             |  161 +++-
 tests/ovn.at                                    |  149 ++++
 tests/testsuite.at                              |    3 +
 tutorial/ovs-sandbox                            |   78 +-
 utilities/.gitignore                            |    4 +
 utilities/automake.mk                           |   16 +
 utilities/ovn-ctl                               |  423 ++++++++-
 utilities/ovn-ctl.8.xml                         |   91 ++
 utilities/ovn-inbctl.8.xml                      |  174 ++++
 utilities/ovn-inbctl.c                          |  948 ++++++++++++++++++++
 utilities/ovn-isbctl.8.xml                      |  148 ++++
 utilities/ovn-isbctl.c                          | 1015 ++++++++++++++++++++++
 48 files changed, 6528 insertions(+), 145 deletions(-)
 create mode 100644 Documentation/tutorials/ovn-interconnection.rst
 create mode 100644 ic/.gitignore
 create mode 100644 ic/automake.mk
 create mode 100644 ic/ovn-ic.8.xml
 create mode 100644 ic/ovn-ic.c
 create mode 100644 lib/ovn-inb-idl.ann
 create mode 100644 lib/ovn-isb-idl.ann
 create mode 100644 ovn-inb.ovsschema
 create mode 100644 ovn-inb.xml
 create mode 100644 ovn-isb.ovsschema
 create mode 100644 ovn-isb.xml
 create mode 100644 tests/ovn-ic.at
 create mode 100644 tests/ovn-inbctl.at
 create mode 100644 tests/ovn-isbctl.at
 create mode 100644 utilities/ovn-inbctl.8.xml
 create mode 100644 utilities/ovn-inbctl.c
 create mode 100644 utilities/ovn-isbctl.8.xml
 create mode 100644 utilities/ovn-isbctl.c

-- 
2.1.0

_______________________________________________
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Reply via email to