Juju Charm - Neutron Gateway
Go to file
Alex Kavanagh 6647baa5e6 Updates for caracal tox.ini
Update the tox.ini file(s) to use the constraints file from
zaza-openstack-tests.

Change-Id: Ifac3b28fd2773e802a83135e7ff32ca4e8befeaf
2024-02-24 20:12:12 +00:00
actions Actions that expose various neutron resources 2021-09-12 17:47:38 +02:00
files Merge "fix the spelling mistakes" 2019-12-19 12:56:31 +00:00
hooks Updates for caracal testing support 2024-02-12 18:21:03 +00:00
lib Update tox.ini files from release-tools gold copy 2016-09-09 19:43:18 +00:00
templates Add AppArmor Rule for keepalived 2021-09-22 11:30:52 +00:00
tests Updates for caracal testing support 2024-02-12 18:21:03 +00:00
unit_tests Improve platform mocking 2023-10-24 18:36:33 +01:00
.gitignore Add *.charm to gitignore 2022-04-18 21:08:58 +01:00
.gitreview OpenDev Migration Patch 2019-04-19 19:39:50 +00:00
.project Rename project 2015-09-15 09:30:01 +01:00
.pydevproject Rename project 2015-09-15 09:30:01 +01:00
.stestr.conf Replace ostestr with stestr in testing framework. 2019-03-07 17:12:21 -05:00
.zuul.yaml Add Antelope support 2023-03-07 20:30:33 +00:00
LICENSE Update to classic charms to build using charmcraft in CI 2022-02-22 05:13:41 +00:00
Makefile Sync helpers for 20.05 2020-05-18 14:46:36 +02:00
README.md Fix link formatting in README 2021-09-10 13:20:27 -04:00
actions.yaml Fix typo in actions.yaml 2023-08-08 20:37:46 -04:00
bindep.txt Add Kinetic and Zed support 2022-08-26 18:40:40 +00:00
charm-helpers-hooks.yaml Updates to enable jammy and finalise charmcraft builds 2022-04-11 20:28:05 -07:00
charmcraft.yaml Updates for caracal testing support 2024-02-12 18:21:03 +00:00
config.yaml Add 2023.2 Bobcat support 2023-08-02 14:23:14 -04:00
copyright Add missing copyright file 2012-12-07 08:39:53 +00:00
hardening.yaml Add hardening support 2016-03-31 15:01:54 +01:00
icon.svg Update charm icon 2017-08-02 18:03:36 +01:00
metadata.yaml Updates for caracal testing support 2024-02-12 18:21:03 +00:00
osci.yaml Add 2023.2 Bobcat support 2023-08-02 14:23:14 -04:00
rename.sh Update to classic charms to build using charmcraft in CI 2022-02-22 05:13:41 +00:00
requirements.txt Add Kinetic and Zed support 2022-08-26 18:40:40 +00:00
revision added postgresql 2014-03-28 12:02:09 +01:00
setup.cfg setup.cfg: Replace dashes with underscores 2021-05-04 15:45:24 +08:00
test-requirements.txt Add Antelope support 2023-03-07 20:30:33 +00:00
tox.ini Updates for caracal tox.ini 2024-02-24 20:12:12 +00:00

README.md

Overview

The neutron-gateway charm deploys the data plane of Neutron, the core OpenStack service that provides software defined networking (SDN) for Nova instances. This provides the Neutron Gateway service, which in turn supplies two key services: L3 network routing and DHCP. The charm works alongside other Juju-deployed OpenStack applications; in particular: neutron-openvswitch, nova-compute, and nova-cloud-controller.

Note: Starting with OpenStack Train, the neutron-gateway and neutron-openvswitch charm combination can be replaced by the OVN charms (e.g. ovn-central, ovn-chassis, and neutron-api-plugin-ovn).

Usage

Configuration

This section covers common and/or important configuration options. See file config.yaml for the full list of options, along with their descriptions and default values. See the Juju documentation for details on configuring applications.

data-port

A bridge that Neutron Gateway will bind to, given in the form of a space-delimited bridge:port mapping (e.g. 'br-ex:ens8'). The port will be added to its corresponding bridge.

Note: If network device names are not consistent between hosts (e.g. 'eth1' and 'ens8') a list of values can be provided where a MAC address is used in the place of a device name. The charm will iterate through the list and configure the first matching interface.

The specified bridge(s) should match the one(s) defined in the bridge-mappings option.

Flat or VLAN network types are supported.

The device itself must not have any L3 configuration. In MAAS, it must have an IP mode of 'Unconfigured'.

bridge-mappings

A space-delimited list of ML2 data provider:bridge mappings (e.g. 'physnet1:br-ex'). The specified bridge(s) should match the one(s) defined in the data-port option.

openstack-origin

The openstack-origin option states the software sources. A common value is an OpenStack UCA release (e.g. 'cloud:bionic-ussuri' or 'cloud:focal-victoria'). See Ubuntu Cloud Archive. The underlying host's existing apt sources will be used if this option is not specified (this behaviour can be explicitly chosen by using the value of 'distro').

Deployment

These deployment instructions assume the following pre-existing applications: neutron-api, nova-cloud-controller, and rabbitmq-server.

Important: For Neutron Gateway to function properly, the nova-cloud-controller charm must have its network-manager option set to 'Neutron'.

Deploy Neutron Gateway:

juju deploy neutron-gateway
juju add-relation neutron-gateway:quantum-network-service nova-cloud-controller:quantum-network-service
juju add-relation neutron-gateway:neutron-plugin-api neutron-api:neutron-plugin-api
juju add-relation neutron-gateway:amqp rabbitmq-server:amqp

Port configuration

Network ports are configured with the bridge-mappings and data-port options but the neutron-api charm also has several relevant options (e.g. flat-network-providers, vlan-ranges, etc.). Additionally, the network topology can be further defined with supplementary openstack client commands.

Example 1
This configuration has a single external network and is typically used when floating IP addresses are combined with a GRE private network.

Charm option values (YAML):

neutron-gateway:
    bridge-mappings: physnet1:br-ex
    data-port: br-ex:eth1
neutron-api:
    flat-network-providers: physnet1

Supplementary commands:

openstack network create --provider-network-type flat \
   --provider-physical-network physnet1 --external \
   external
openstack router set router1 --external-gateway external

Example 2
This configuration is for two networks, where an internal private network is directly connected to the gateway with public IP addresses but a floating IP address range is also offered.

Charm option values (YAML):

neutron-gateway:
    bridge-mappings: physnet1:br-data external:br-ex
    data-port: br-data:eth1 br-ex:eth2
neutron-api:
    flat-network-providers: physnet1 external

Example 3
This configuration has two external networks, where one is for public instance addresses and one is for floating IP addresses. Both networks are on the same physical network connection (but they might be on different VLANs).

Charm option values (YAML):

neutron-gateway:
    bridge-mappings: physnet1:br-data
    data-port: br-data:eth1
neutron-api:
    flat-network-providers: physnet1

Supplementary commands:

openstack network create --provider-network-type vlan \
   --provider-segment 400 \
   --provider-physical-network physnet1 --share \
   external
openstack network create --provider-network-type vlan \
   --provider-segment 401 \
   --provider-physical-network physnet1 --share --external \
   floating
openstack router set router1 --external-gateway floating

legacy ext-port option

The ext-port option is deprecated and is superseded by the data-port option. The ext-port option always created a bridge called 'br-ex' for external networks that was used implicitly by external router interfaces.

The following will occur if both the data-port and ext-port options are set:

  • the neutron-gateway unit will be marked as 'blocked' to indicate that the charm is misconfigured
  • the ext-port option will be ignored
  • a warning will be logged

Instance MTU

When using Open vSwitch plugin with GRE tunnels the default MTU of 1500 can cause packet fragmentation due to GRE overhead. One solution to this problem is to increase the MTU on physical hosts and network equipment. When this is not feasible the charm's instance-mtu option can be used to reduce instance MTU via DHCP:

juju config neutron-gateway instance-mtu=1400

Note: The instance-mtu option is supported starting with OpenStack Havana.

Actions

This section covers Juju actions supported by the charm. Actions allow specific operations to be performed on a per-unit basis. To display action descriptions run juju actions --schema neutron-gateway. If the charm is not deployed then see file actions.yaml.

  • cleanup
  • get-status-dhcp
  • get-status-lb
  • get-status-routers
  • openstack-upgrade
  • pause
  • restart-services
  • resume
  • restart-services
  • run-deferred-hooks
  • security-checklist
  • show-deferred-events

Deferred service events

Operational or maintenance procedures applied to a cloud often lead to the restarting of various OpenStack services and/or the calling of certain charm hooks. Although normal, such events can be undesirable due to the service interruptions they can cause.

The deferred service events feature provides the operator the choice of preventing these service restarts and hook calls from occurring, which can then be resolved at a more opportune time.

See the Deferred service events page in the OpenStack Charms Deployment Guide for an in-depth treatment of this feature.

Documentation

The OpenStack Charms project maintains two documentation guides:

Bugs

Please report bugs on Launchpad.