Advertisement
Guest User

Untitled

a guest
Apr 5th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. vagrant@devstack:~$ cat /etc/nova/nova.conf
  2.  
  3. [DEFAULT]
  4. vif_plugging_timeout = 300
  5. vif_plugging_is_fatal = True
  6. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  7. use_neutron = True
  8. dhcpbridge_flagfile = /etc/nova/nova-dhcpbridge.conf
  9. graceful_shutdown_timeout = 5
  10. metadata_workers = 2
  11. osapi_compute_workers = 2
  12. rpc_backend = rabbit
  13. logging_exception_prefix = %(color)s%(asctime)s.%(msecs)03d TRACE %(name)s %(instance)s
  14. logging_debug_format_suffix = from (pid=%(process)d) %(funcName)s %(pathname)s:%(lineno)d
  15. logging_default_format_string = %(asctime)s.%(msecs)03d %(color)s%(levelname)s %(name)s [-%(color)s] %(i
  16. nstance)s%(color)s%(message)s
  17. logging_context_format_string = %(asctime)s.%(msecs)03d %(color)s%(levelname)s %(name)s [%(request_id)s
  18. %(user_name)s %(project_name)s%(color)s] %(instance)s%(color)s%(message)s
  19. force_config_drive = True
  20. instances_path = /opt/stack/data/nova/instances
  21. state_path = /opt/stack/data/nova
  22. enabled_apis = osapi_compute,metadata
  23. s3_listen = 0.0.0.0
  24. metadata_listen = 0.0.0.0
  25. osapi_compute_listen = 0.0.0.0
  26. instance_name_template = instance-%08x
  27. my_ip = 10.0.2.15
  28. s3_port = 3333
  29. s3_host = 10.0.2.15
  30. default_floating_pool = public
  31. force_dhcp_release = True
  32. scheduler_default_filters = AllHostsFilter
  33. scheduler_driver = nova.scheduler.filter_scheduler.FilterScheduler
  34. rootwrap_config = /etc/nova/rootwrap.conf
  35. api_paste_config = /etc/nova/api-paste.ini
  36. allow_resize_to_same_host = True
  37. debug = True
  38.  
  39. [database]
  40. connection = mysql+pymysql://root:solum@127.0.0.1/nova?charset=utf8
  41.  
  42. [api_database]
  43. connection = mysql+pymysql://root:solum@127.0.0.1/nova_api?charset=utf8
  44.  
  45. [privsep_osbrick]
  46. helper_command = sudo nova-rootwrap $rootwrap_config privsep-helper --config-file /etc/nova/nova.conf
  47.  
  48. [keystone_authtoken]
  49. memcached_servers = 10.0.2.15:11211
  50. signing_dir = /var/cache/nova
  51. cafile = /opt/stack/data/ca-bundle.pem
  52. auth_uri = http://10.0.2.15:5000
  53. project_domain_id = default
  54. project_name = service
  55. user_domain_id = default
  56. password = solum
  57. username = nova
  58. auth_url = http://10.0.2.15:35357
  59. auth_type = password
  60.  
  61. [oslo_concurrency]
  62. lock_path = /opt/stack/data/nova
  63.  
  64. [vnc]
  65. xvpvncproxy_host = 0.0.0.0
  66. novncproxy_host = 0.0.0.0
  67. vncserver_proxyclient_address = 127.0.0.1
  68. vncserver_listen = 127.0.0.1
  69. enabled = true
  70. xvpvncproxy_base_url = http://10.0.2.15:6081/console
  71. novncproxy_base_url = http://10.0.2.15:6080/vnc_auto.html
  72.  
  73. [spice]
  74. enabled = false
  75. html5proxy_base_url = http://10.0.2.15:6082/spice_auto.html
  76.  
  77. [oslo_messaging_rabbit]
  78. rabbit_userid = stackrabbit
  79. rabbit_password = solum
  80. rabbit_hosts = 10.0.2.15
  81.  
  82. [glance]
  83. api_servers = http://10.0.2.15:9292
  84.  
  85. [conductor]
  86. workers = 2
  87.  
  88. [cinder]
  89. os_region_name = RegionOne
  90.  
  91. [neutron]
  92. service_metadata_proxy = True
  93. url = http://10.0.2.15:9696
  94. region_name = RegionOne
  95. auth_strategy = keystone
  96. project_domain_name = Default
  97. project_name = service
  98. user_domain_name = Default
  99. password = solum
  100. username = neutron
  101. auth_url = http://10.0.2.15:35357/v3
  102. auth_type = password
  103.  
  104. [keymgr]
  105. fixed_key = c53c41ca82f21f87bde2d0107463547ee6da4a361a7a108939601ee5f4e7bcc4
  106.  
  107.  
  108. compute_driver = novadocker.virt.docker.driver.DockerDriver
  109.  
  110. vagrant@devstack:~$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement