neutron/neutron/conf/agent/ovn/ovn_neutron_agent/config.py

63 lines
2.0 KiB
Python

# Copyright (c) 2023 Red Hat, Inc.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import itertools
import shlex
from neutron.conf.agent.metadata import config as meta_conf
from neutron.conf.agent import ovsdb_api
from neutron.conf.plugins.ml2.drivers.ovn import ovn_conf
from oslo_config import cfg
from oslo_privsep import priv_context
from neutron._i18n import _
OVS_OPTS = [
cfg.IntOpt(
'ovsdb_connection_timeout',
default=180,
help=_('Timeout in seconds for the OVSDB connection transaction'))
]
def list_ovn_neutron_agent_opts():
return [
('DEFAULT', itertools.chain(meta_conf.SHARED_OPTS,
meta_conf.UNIX_DOMAIN_METADATA_PROXY_OPTS,
meta_conf.METADATA_PROXY_HANDLER_OPTS
)),
('ovn', ovn_conf.ovn_opts),
('ovs', itertools.chain(OVS_OPTS,
ovsdb_api.API_OPTS,
)
),
(meta_conf.RATE_LIMITING_GROUP, meta_conf.METADATA_RATE_LIMITING_OPTS)
]
def register_opts():
cfg.CONF.register_opts(ovn_conf.ovn_opts, group='ovn')
cfg.CONF.register_opts(OVS_OPTS, group='ovs')
cfg.CONF.register_opts(ovsdb_api.API_OPTS, group='ovs')
def get_root_helper(conf):
return conf.AGENT.root_helper
def setup_privsep():
priv_context.init(root_helper=shlex.split(get_root_helper(cfg.CONF)))