Juju Charm - Neutron API - plugin for Open Virtual Network
Go to file
Alex Kavanagh 977b6079eb 21.04 libraries freeze for charms on master branch
* charm-helpers sync for classic charms
* build.lock file for reactive charms
* ensure tox.ini is from release-tools
* ensure requirements.txt files are from release-tools
* On reactive charms:
  - ensure stable/21.04 branch for charms.openstack
  - ensure stable/21.04 branch for charm-helpers

Change-Id: Ie9ddc1992ba988f1b75ea92f686ed485effd610f
2021-04-08 14:49:05 +00:00
src 21.04 libraries freeze for charms on master branch 2021-04-08 14:49:05 +00:00
unit_tests Add OVS to OVN migration actions 2020-09-07 14:53:35 +02:00
.gitignore Initial commit 2019-09-27 15:44:32 +02:00
.gitreview Expose useful configuration options 2019-10-18 13:03:13 +02:00
.stestr.conf Initial commit 2019-09-27 15:44:32 +02:00
.travis.yml Configure Neutron 2019-10-10 16:17:22 +02:00
.zuul.yaml [ussuri][goal] Updates for python 2.7 drop 2020-03-24 17:13:47 +00:00
LICENSE Initial commit 2019-09-27 15:44:32 +02:00
README.md Update documentation 2019-10-25 10:36:09 +02:00
osci.yaml Add new osci.yaml 2021-03-18 16:38:42 +01:00
rebuild Rebuild with udpated charm-tools 2.8.2 2021-02-01 14:10:40 -08:00
requirements.txt Updates to pin charm-tools to 2.8.3 2021-02-17 12:15:02 +00:00
test-requirements.txt 21.04 libraries freeze for charms on master branch 2021-04-08 14:49:05 +00:00
tox.ini 21.04 libraries freeze for charms on master branch 2021-04-08 14:49:05 +00:00

README.md

Overview

OVN provides open source network virtualization for Open vSwitch (OVS).

The neutron-api-plugin-ovn charm is a subordinate charm that augments Neutron's configuration for use with the OVN ML2 driver. On OpenStack Ussuri and onwards the OVN ML2 driver is maintained as an in-tree driver in Neutron. On OpenStack Train it is maintained separately as the networking-ovn plugin.

Usage

OVN makes use of Public Key Infrastructure (PKI) to authenticate and authorize control plane communication. The charm requires a Certificate Authority to be present in the model as represented by the certificates relation.

The OpenStack Base bundle gives an example of how you can deploy OpenStack and OVN with Vault to automate certificate lifecycle management.

Please refer to the OVN Appendix in the OpenStack Charms Deployment Guide for details.

To deploy (partial deployment of linked charms only):

juju config neutron-api manage-neutron-plugin-legacy-mode=false

juju deploy neutron-api-plugin-ovn
juju deploy ovn-central -n 3 --config source=cloud:bionic-train
juju deploy ovn-chassis

juju add-relation neutron-api-plugin-ovn:certificates vault:certificates
juju add-relation neutron-api-plugin-ovn:neutron-plugin \
    neutron-api:neutron-plugin-api-subordinate
juju add-relation ovn-central:certificates vault:certificates
juju add-relation ovn-chassis:ovsdb ovn-central:ovsdb
juju add-relation ovn-chassis:certificates vault:certificates
juju add-relation ovn-chassis:nova-compute nova-compute:neutron-plugin

Bugs

Please report bugs on Launchpad.

For general questions please refer to the OpenStack Charm Guide.