Update the murano.conf

Change-Id: I0a7acd64e8361bce3b318a6c5046a575925deb4a
This commit is contained in:
zhurong 2022-01-17 03:00:37 +00:00
parent bad8e8ae0e
commit aeef10945d
2 changed files with 19 additions and 28 deletions

View File

@ -58,33 +58,28 @@ Install the API service and Engine
[DEFAULT] [DEFAULT]
debug = true debug = true
verbose = true verbose = true
rabbit_host = %RABBITMQ_SERVER_IP% transport_url = rabbit://%RABBITMQ_USER%:%RABBITMQ_PASSWORD%@%RABBITMQ_SERVER_IP%:5672/
rabbit_userid = %RABBITMQ_USER%
rabbit_password = %RABBITMQ_PASSWORD%
rabbit_virtual_host = %RABBITMQ_SERVER_VIRTUAL_HOST%
driver = messagingv2
... ...
[database] [database]
backend = sqlalchemy connection = mysql+pymysql://murano:MURANO_DBPASS@controller/murano
connection = sqlite:///murano.sqlite
... ...
[keystone] [keystone]
auth_url = 'http://%OPENSTACK_HOST_IP%:5000/v2.0' auth_url = http://%OPENSTACK_KEYSTONE_ENDPOINT%
... ...
[keystone_authtoken] [keystone_authtoken]
www_authenticate_uri = 'http://%OPENSTACK_HOST_IP%:5000/v2.0' project_domain_name = Default
auth_host = '%OPENSTACK_HOST_IP%' project_name = %OPENSTACK_ADMIN_PROJECT%
auth_port = 5000 user_domain_name = Default
auth_protocol = http password = %OPENSTACK_ADMIN_PASSWORD%
admin_tenant_name = %OPENSTACK_ADMIN_TENANT% username = %OPENSTACK_ADMIN_USER%
admin_user = %OPENSTACK_ADMIN_USER% auth_url = http://%OPENSTACK_KEYSTONE_ENDPOINT%
admin_password = %OPENSTACK_ADMIN_PASSWORD% auth_type = password
... ...

View File

@ -46,11 +46,7 @@ Install and configure components
[DEFAULT] [DEFAULT]
debug = true debug = true
verbose = true verbose = true
rabbit_host = %RABBITMQ_SERVER_IP% transport_url = rabbit://%RABBITMQ_USER%:%RABBITMQ_PASSWORD%@%RABBITMQ_SERVER_IP%:5672/
rabbit_userid = %RABBITMQ_USER%
rabbit_password = %RABBITMQ_PASSWORD%
rabbit_virtual_host = %RABBITMQ_SERVER_VIRTUAL_HOST%
driver = messagingv2
... ...
@ -60,18 +56,18 @@ Install and configure components
... ...
[keystone] [keystone]
auth_url = 'http://%OPENSTACK_HOST_IP%:5000/v2.0' auth_url = http://%OPENSTACK_KEYSTONE_ENDPOINT%
... ...
[keystone_authtoken] [keystone_authtoken]
www_authenticate_uri = 'http://%OPENSTACK_HOST_IP%:5000/v2.0' project_domain_name = Default
auth_host = '%OPENSTACK_HOST_IP%' project_name = %OPENSTACK_ADMIN_PROJECT%
auth_port = 5000 user_domain_name = Default
auth_protocol = http password = %OPENSTACK_ADMIN_PASSWORD%
admin_tenant_name = %OPENSTACK_ADMIN_TENANT% username = %OPENSTACK_ADMIN_USER%
admin_user = %OPENSTACK_ADMIN_USER% auth_url = http://%OPENSTACK_KEYSTONE_ENDPOINT%
admin_password = %OPENSTACK_ADMIN_PASSWORD% auth_type = password
... ...