Advertisement
Guest User

compute-nova.conf

a guest
Mar 16th, 2015
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. [DEFAULT]
  2. dhcpbridge_flagfile=/etc/nova/nova.conf
  3. dhcpbridge=/usr/bin/nova-dhcpbridge
  4. logdir=/var/log/nova
  5. state_path=/var/lib/nova
  6. lock_path=/var/lock/nova
  7. force_dhcp_release=True
  8. iscsi_helper=tgtadm
  9. libvirt_use_virtio_for_bridges=True
  10. connection_type=libvirt
  11. root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf
  12. verbose=True
  13. ec2_private_dns_show_ip=True
  14. api_paste_config=/etc/nova/api-paste.ini
  15. volumes_path=/var/lib/nova/volumes
  16. enabled_apis=ec2,osapi_compute,metadata
  17.  
  18. debug = TRUE
  19. logdir = /var/log/nova
  20. state_path = /var/lib/nova
  21. lock_path = /run/lock/nova
  22. api_paste_config = /etc/nova/api-paste.ini
  23. root_helper = sudo nova-rootwrap /etc/nova/rootwrap.conf
  24. my_ip = compute1.pod1.com
  25.  
  26. # nova-vnc
  27. vnc_enabled = TRUE
  28. novncproxy_base_url = http://1.2.3.4:6080/vnc_auto.html
  29. vncserver_listen = 0.0.0.0
  30. vncserver_proxyclient_address = compute1.pod1.com
  31.  
  32. # glance
  33. glance_api_servers = glance.pod1.com:9292
  34.  
  35. # neutron
  36. network_api_class = nova.network.neutronv2.api.API
  37. neutron_url = http://neutron.pod1.com:9696
  38. neutron_admin_auth_url = http://keystone.pod1.com:35357/v2.0
  39. neutron_auth_strategy = keystone
  40. neutron_admin_tenant_name = service
  41. neutron_admin_username = neutron
  42. neutron_admin_password = neutron
  43. linuxnet_interface_driver = nova.network.linux_net.LinuxOVSInterfaceDriver
  44.  
  45. # rabbit-mq
  46. rabbit_host = amqp.pod1.com
  47. rabbit_port = 5672
  48. rabbit_userid = rabbit
  49. rabbit_password = rabbit
  50.  
  51. # auth
  52. auth_strategy = keystone
  53.  
  54. # security_group
  55. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  56. security_group_api = neutron
  57.  
  58. [keystone_authtoken]
  59. auth_host = keystone.pod1.com
  60. auth_port = 35357
  61. auth_protocol = http
  62. admin_tenant_name = service
  63. admin_user = nova
  64. admin_password = nova
  65. signing_dir = $state_path/keystone-signing
  66.  
  67. [database]
  68. connection = mysql://nova:nova@db.pod1.com/nova
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement