Skip to content

Commit 2357c97

Browse files
committed
Fix cyborg api doesn't listen on api interface
host -> host_ip[0] Remove deprecated configuration notification_topics. WARNING oslo_config.cfg [-] Deprecated: Option "notification_topics" from group "DEFAULT" is deprecated. Use option "topics" from group "oslo_messaging_notifications". [0]https://docs.openstack.org/cyborg/latest/configuration/sample-config.html Change-Id: Ia5d53fb60d34c1509c6cdb905cbd0a93dd1c8b3d (cherry picked from commit 76579b8)
1 parent 98c46b4 commit 2357c97

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

ansible/roles/cyborg/templates/cyborg.conf.j2

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22
auth_strategy = keystone
33
log_dir = /var/log/kolla/cyborg
44
debug = {{ cyborg_logging_debug }}
5-
notification_topics = notifications
65

76
transport_url = {{ rpc_transport_url }}
87

98
[api]
109
port = {{ cyborg_api_port }}
11-
host = {{ api_interface_address }}
10+
host_ip = {{ api_interface_address }}
1211

1312
[database]
1413
connection = mysql+pymysql://{{ cyborg_database_user }}:{{ cyborg_database_password }}@{{ cyborg_database_address }}/{{ cyborg_database_name }}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
fixes:
3+
- |
4+
Fix cyborg api doesn't listen on api interface. change host to
5+
host_ip in cyborg.conf. See the `cyborg documentation
6+
<https://docs.openstack.org/cyborg/latest/configuration/sample-config.html>`__

0 commit comments

Comments
 (0)