charm-neutron-dynamic-routing/src
Hervé Beraud 1428a3a7dd Stop to use the __future__ module.
The __future__ module [1] was used in this context to ensure compatibility
between python 2 and python 3.

We previously dropped the support of python 2.7 [2] and now we only support
python 3 so we don't need to continue to use this module and the imports
listed below.

Imports commonly used and their related PEPs:
- `division` is related to PEP 238 [3]
- `print_function` is related to PEP 3105 [4]
- `unicode_literals` is related to PEP 3112 [5]
- `with_statement` is related to PEP 343 [6]
- `absolute_import` is related to PEP 328 [7]

[1] https://docs.python.org/3/library/__future__.html
[2] https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html
[3] https://www.python.org/dev/peps/pep-0238
[4] https://www.python.org/dev/peps/pep-3105
[5] https://www.python.org/dev/peps/pep-3112
[6] https://www.python.org/dev/peps/pep-0343
[7] https://www.python.org/dev/peps/pep-0328

Change-Id: Ib361c211cb5537953f5d62f256d1def4796531ab
2020-06-02 19:59:21 +02:00
..
files Sync charm/ceph helpers, tox, and requirements 2019-10-18 13:31:21 -07:00
lib Stop to use the __future__ module. 2020-06-02 19:59:21 +02:00
reactive Stop to use the __future__ module. 2020-06-02 19:59:21 +02:00
templates Use "rabbit_use_ssl" for ocata 2019-08-05 10:19:23 -04:00
tests Enable focal and ussuri in the charm functional tests 2020-04-30 17:50:28 +01:00
HACKING.md Upgrade OpenStack 2018-04-24 12:02:47 -07:00
README.md Enable bgp dynamic routing for Ocata 2018-07-10 10:52:37 -05:00
config.yaml Remove asn configuration option 2018-05-21 07:39:04 +02:00
layer.yaml Distribute direct charm dependencies 2019-08-14 16:51:51 +02:00
metadata.yaml Enable focal and ussuri in the charm functional tests 2020-04-30 17:50:28 +01:00
test-requirements.txt Sync charm/ceph helpers, tox, and requirements 2019-10-18 13:31:21 -07:00
tox.ini Sync charm/ceph helpers, tox, and requirements 2019-10-18 13:31:21 -07:00
wheelhouse.txt Distribute direct charm dependencies 2019-08-14 16:51:51 +02:00

README.md

Overview

This charm provides the BGP speaker, dynamic routing agent, feature for OpenStack

Charm Usage

Neutron dynamic routing relies on services from the rabbitmq-server charm and assumes a functioning neutron stack:

# The neutron-dynamic-routing charm only requires a relationship to rabbitmq-server
juju deploy neutron-dynamic-routing
juju deploy rabbitmq-server
juju add-relation neutron-dynamic-routing rabbitmq-server

# For minimum functionality a full neutron stack is required:
juju deploy keystone
juju deploy neutron-api
juju deploy percona-cluster
juju add-relation keystone percona-cluster
juju add-relation keystone neutron-api
juju add-relation neutron-api percona-cluster
juju add-relation neutron-api rabbitmq-server

NOTE: This charm supports OpenStack versions Ocata or newer. Specify version to install using the openstack-origin and source configuration options.

Feature Usage

For utilizing the dynamic routing feature of OpenStack see upstream documentation for neutron dynamic routing.

Bugs

Please report bugs on Launchpad.

For general questions please refer to the OpenStack Charm Guide.