Merge "Fix cyborg api doesn't listen on api interface"

This commit is contained in:
Zuul 2021-04-07 09:54:15 +00:00 committed by Gerrit Code Review
commit 0d153af87f
2 changed files with 7 additions and 2 deletions

View File

@ -2,13 +2,12 @@
auth_strategy = keystone
log_dir = /var/log/kolla/cyborg
debug = {{ cyborg_logging_debug }}
notification_topics = notifications
transport_url = {{ rpc_transport_url }}
[api]
port = {{ cyborg_api_port }}
host = {{ api_interface_address }}
host_ip = {{ api_interface_address }}
[database]
connection = mysql+pymysql://{{ cyborg_database_user }}:{{ cyborg_database_password }}@{{ cyborg_database_address }}/{{ cyborg_database_name }}

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fix cyborg api doesn't listen on api interface. change host to
host_ip in cyborg.conf. See the `cyborg documentation
<https://docs.openstack.org/cyborg/latest/configuration/sample-config.html>`__