Advertisement
Guest User

nova.conf

a guest
Jun 11th, 2013
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. [DEFAULT]
  2. logdir=/var/log/nova
  3. state_path=/var/lib/nova
  4. lock_path=/run/lock/nova
  5. verbose=True
  6. api_paste_config=/etc/nova/api-paste.ini
  7.  
  8. compute_scheduler_driver=nova.scheduler.simple.SimpleScheduler
  9. rabbit_host=10.0.0.1
  10. nova_url=http://10.0.0.1:8774/v1.1/
  11. sql_connection=mysql://novaUser:novaPass@10.0.0.1/nova
  12. root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf
  13.  
  14. # Auth
  15. use_deprecated_auth=false
  16. auth_strategy=keystone
  17.  
  18. # Imaging service
  19. glance_api_servers=10.0.0.3:9292
  20. image_service=nova.image.glance.GlanceImageService
  21.  
  22. # Vnc configuration
  23. novnc_enabled=true
  24. novncproxy_base_url=http://192.168.200.50:6080/vnc_auto.html
  25. novncproxy_port=6080
  26. vncserver_proxyclient_address=10.0.0.4
  27. vncserver_listen=0.0.0.0
  28. vnc_require_instance_uuid_as_password=true
  29.  
  30. # Network settings
  31. network_api_class=nova.network.quantumv2.api.API
  32. quantum_url=http://10.0.0.1:9696
  33. quantum_auth_strategy=keystone
  34. quantum_admin_tenant_name=service
  35. quantum_admin_username=quantum
  36. quantum_admin_password=servicepass
  37. quantum_admin_auth_url=http://10.0.0.1:35357/v2.0
  38. libvirt_vif_driver=nova.virt.libvirt.vif.LibvirtHybridOVSBridgeDriver
  39. linuxnet_interface_driver=nova.network.linux_net.LinuxOVSInterfaceDriver
  40. #If you want Quantum + Nova Security groups
  41. firewall_driver=nova.virt.firewall.NoopFirewallDriver
  42. security_group_api=quantum
  43. #If you want Nova Security groups only, comment the two lines above and uncomment line -1-.
  44. #-1-firewall_driver=nova.virt.libvirt.firewall.IptablesFirewallDriver
  45.  
  46. #Metadata
  47. service_quantum_metadata_proxy = True
  48. quantum_metadata_proxy_shared_secret = MetaProxySecretHelloOpenStack
  49. metadata_host = 10.0.0.1
  50.  
  51. # Compute #
  52. compute_driver=libvirt.LibvirtDriver
  53.  
  54. # Cinder #
  55. volume_api_class=nova.volume.cinder.API
  56. osapi_volume_listen_port=5900
  57. cinder_catalog_info=volume:cinder:internalURL
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement