Advertisement
Guest User

Untitled

a guest
Aug 26th, 2015
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. [DEFAULT]
  2.  
  3. # LOGS/STATE
  4. debug=True
  5. #verbose=True
  6. logdir=/var/log/nova
  7. state_path=/var/lib/nova
  8.  
  9. # COMPUTE
  10. compute_driver = libvirt.LibvirtDriver
  11.  
  12. # NETWORK
  13. network_api_class=nova.network.neutronv2.api.API
  14. security_group_api=neutron
  15. firewall_driver=nova.virt.firewall.NoopFirewallDriver
  16. my_ip = 10.10.10.10
  17. metadata_host = 10.10.10.10
  18.  
  19. # MEMCACHE
  20. memcached_servers = localhost
  21.  
  22. # NOVNC CONSOLE
  23. vnc_enabled=true
  24. novncproxy_base_url=http://stack.mynetwork.lan:6080/vnc_auto.html
  25. vncserver_proxyclient_address=stack.mynetwork.lan
  26. #vncserver_listen=0.0.0.0
  27.  
  28. # GLANCE/IMAGES
  29. glance_host=stack.mynetwork.lan
  30.  
  31. # CINDER/VOLUMES
  32. cinder_catalog_info=volumev2:cinderv2:publicURL
  33.  
  34. # OTHER...
  35. node_availability_zone=shed
  36. #rpc_response_timeout=180
  37. multi_host=true
  38. enabled_apis=ec2,osapi_compute,metadata
  39. resume_guests_state_on_host_boot = True
  40. allow_migrate_to_same_host = True
  41. allow_resize_to_same_host = True
  42. force_dhcp_release=True
  43. ec2_private_dns_show_ip=True
  44. api_paste_config=/etc/nova/api-paste.ini
  45. control_exchange=messagingv2
  46.  
  47.  
  48. [database]
  49. connection = mysql://nova:novadbpass@stack.mynetwork.lan/nova
  50.  
  51. [keystone_authtoken]
  52. auth_uri = http://keystone.mynetwork.lan:35357
  53. auth_url = http://keystone.mynetwork.lan:35357
  54. auth_plugin = password
  55. project_domain_id = default
  56. user_domain_id = default
  57. project_name = service
  58. username = nova
  59. password = novapass
  60. identity_uri = http://keystone.mynetwork.lan:35357
  61. admin_user = nova
  62. admin_password = novapass
  63. admin_tenant_name = service
  64.  
  65. [cinder]
  66. os_region_name = TheShed
  67.  
  68. [neutron]
  69. url = http://compute1.mynetwork.lan:9696
  70. auth_strategy = keystone
  71. #admin_auth_url = http://keystone.mynetwork.lan:35357/v2.0
  72. admin_tenant_name = service
  73. admin_username = neutron
  74. admin_password = neutronpass
  75.  
  76.  
  77. [oslo_messaging_rabbit]
  78. rabbit_userid = stack
  79. rabbit_password = rabbitpass
  80.  
  81.  
  82. [oslo_concurrency]
  83. lock_path=/var/lock/nova
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement