
cache_url was marked deprecated in Newton for removal in Ocata, we're past that now so remove it. Change-Id: I3c403ed1b703a7e1efce0931e917f98c1dda91c6
41 lines
1.4 KiB
Python
41 lines
1.4 KiB
Python
# Copyright 2015 OpenStack Foundation.
|
|
#
|
|
# 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 sys
|
|
|
|
from oslo_config import cfg
|
|
from oslo_log import log as logging
|
|
|
|
from neutron.agent.metadata import agent
|
|
from neutron.common import cache_utils as cache
|
|
from neutron.common import config
|
|
from neutron.common import utils
|
|
from neutron.conf.agent import common as agent_conf
|
|
from neutron.conf.agent.metadata import config as meta
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
def main():
|
|
meta.register_meta_conf_opts(meta.SHARED_OPTS)
|
|
meta.register_meta_conf_opts(meta.UNIX_DOMAIN_METADATA_PROXY_OPTS)
|
|
meta.register_meta_conf_opts(meta.METADATA_PROXY_HANDLER_OPTS)
|
|
cache.register_oslo_configs(cfg.CONF)
|
|
agent_conf.register_agent_state_opts_helper(cfg.CONF)
|
|
config.init(sys.argv[1:])
|
|
config.setup_logging()
|
|
utils.log_opt_values(LOG)
|
|
proxy = agent.UnixDomainMetadataProxy(cfg.CONF)
|
|
proxy.run()
|