Advertisement
ropecual

nova.conf

Mar 8th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.97 KB | None | 0 0
  1.  /etc/nova/nova.conf
  2. [DEFAULT]
  3. dhcpbridge_flagfile=/etc/nova/nova.conf
  4. dhcpbridge=/usr/bin/nova-dhcpbridge
  5. logdir=/var/log/nova
  6. state_path=/var/lib/nova
  7. lock_path=/var/lock/nova
  8. force_dhcp_release=True
  9. libvirt_use_virtio_for_bridges=True
  10. ec2_private_dns_show_ip=True
  11. api_paste_config=/etc/nova/api-paste.ini
  12. enabled_apis=ec2,osapi_compute,metadata
  13.  
  14. rpc_backend = rabbit
  15. auth_strategy = keystone
  16. my_ip = 172.16.211.90
  17. verbose = True
  18.  
  19. network_api_class = nova.network.neutronv2.api.API
  20. security_group_api = neutron
  21. linuxnet_interface_driver = nova.network.linux_net.NeutronLinuxBridgeInterfaceDriver
  22. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  23.  
  24. [libvirt]
  25. libvirt_images_type = rbd
  26. libvirt_images_rbd_pool = vms
  27. libvirt_images_rbd_ceph_conf = /etc/ceph/ceph.conf
  28. rbd_user = openstack
  29. rbd_secret_uuid = 2211cd12-7729-408d-a63d-fb0ba46c45ba
  30. libvirt_inject_password = false
  31. libvirt_inject_key = false
  32. libvirt_inject_partition = -2
  33. live_migration_flag=VIR_MIGRATE_UNDEFINE_SOURCE,VIR_MIGRATE_PEER2PEER,VIR_MIGRATE_LIVE,VIR_MIGRATE_PERSIST_DEST
  34. disk_cachemodes="network=writeback"
  35.  
  36. [keystone_authtoken]
  37. auth_uri = http://controller:5000
  38. auth_url = http://controller:35357
  39. auth_plugin = password
  40. project_domain_id = default
  41. user_domain_id = default
  42. project_name = service
  43. username = nova
  44. password = A123456b
  45.  
  46. [oslo_messaging_rabbit]
  47. rabbit_host = controller
  48. rabbit_userid = openstack
  49. rabbit_password = A123456b
  50.  
  51. [vnc]
  52. enabled = True
  53. vncserver_listen = 0.0.0.0
  54. vncserver_proxyclient_address = $my_ip
  55. novncproxy_base_url = http://controller:6080/vnc_auto.html
  56.  
  57. [glance]
  58. host = controller
  59.  
  60. [oslo_concurrency]
  61. lock_path = /var/lib/nova/tmp
  62.  
  63. [neutron]
  64. url = http://controller:9696
  65. auth_url = http://controller:35357
  66. auth_plugin = password
  67. project_domain_id = default
  68. user_domain_id = default
  69. region_name = RegionOne
  70. project_name = service
  71. username = neutron
  72. password = A123456b
  73.  
  74. service_metadata_proxy = True
  75. metadata_proxy_shared_secret = A123456b
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement