Advertisement
Guest User

Untitled

a guest
Sep 27th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. [DEFAULT]
  2. dhcpbridge_flagfile=/etc/nova/nova.conf
  3. dhcpbridge=/usr/bin/nova-dhcpbridge
  4.  
  5. logdir=/var/log/nova
  6. state_path=/var/lib/nova
  7.  
  8. force_dhcp_release=True
  9. libvirt_use_virtio_for_bridges=True
  10.  
  11. verbose=True
  12.  
  13. ec2_private_dns_show_ip=True
  14. api_paste_config=/etc/nova/api-paste.ini
  15. #enabled_apis=ec2,osapi_compute,metadata
  16. enabled_apis=osapi_compute,metadata
  17.  
  18. rpc_backend = nova.openstack.common.rpc.impl_kombu
  19.  
  20. auth_strategy = keystone
  21.  
  22. my_ip = 10.10.1.15
  23.  
  24. network_api_class = nova.network.neutronv2.api.API
  25. security_group_api = neutron
  26. linuxnet_interface_driver = nova.network.linux_net.NeutronLinuxBridgeInterfaceDriver
  27. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  28.  
  29. [database]
  30. connection = mysql+pymysql://nova:123456@controller-liberty/nova
  31.  
  32. [oslo_messaging_rabbit]
  33. rabbit_use_ssl = True
  34. rabbit_port = 5671
  35. kombu_ssl_keyfile = /opt/server/key.pem
  36. kombu_ssl_certfile = /opt/server/cert.pem
  37. kombu_ssl_ca_certs = /opt/testca/cacert.pem
  38.  
  39. rabbit_host = controller-liberty
  40. rabbit_userid = openstack
  41. rabbit_password = 123456
  42.  
  43.  
  44.  
  45. [keystone_authtoken]
  46. auth_uri = http://controller-liberty:5000
  47. auth_url = http://controller-liberty:35357
  48. auth_plugin = password
  49. project_domain_id = default
  50. user_domain_id = default
  51. project_name = service
  52. username = nova
  53. password = 123456
  54.  
  55. [vnc]
  56. vncserver_listen = $my_ip
  57. vncserver_proxyclient_address = $my_ip
  58.  
  59. [glance]
  60. host = controller-liberty
  61.  
  62. [oslo_concurrency]
  63. lock_path = /var/lib/nova/tmp
  64.  
  65. [neutron]
  66. url = http://controller-liberty:9696
  67. auth_url = http://controller-liberty:35357
  68. auth_plugin = password
  69. project_domain_id = default
  70. user_domain_id = default
  71. region_name = RegionOne
  72. project_name = service
  73. username = neutron
  74. password = 123456
  75.  
  76. service_metadata_proxy = True
  77. metadata_proxy_shared_secret = 0123456789
  78.  
  79.  
  80. #[cinder]
  81. #os_region_name = RegionOne
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement