Browse Source
It appears to be that the Neutron Segment plugin needs to instantiate a placement service client which requires credentials and other connection details: https://opendev.org/openstack/neutron/src/branch/stable/ussuri/neutron/services/segments/plugin.py#L188 Otherwise, the following exception can be seen periodically in the Neutron log: keystoneauth1.exceptions.auth_plugins.MissingAuthPlugin: An auth plugin is required to determine endpoint URL Change-Id: I480292a1c74c376db5c9797b1fcc8469e0e5507achanges/03/758403/1
2 changed files with 10 additions and 0 deletions
@ -0,0 +1,9 @@
|
||||
[placement] |
||||
auth_url = http://{{ control_ip }}:5000 |
||||
auth_type = password |
||||
project_domain_name = default |
||||
user_domain_name = default |
||||
region_name = {{ region_name }} |
||||
project_name = service |
||||
username = placement |
||||
password = {{ placement_password }} |
Loading…
Reference in new issue