Advertisement
Guest User

Untitled

a guest
Mar 11th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 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. libvirt_use_virtio_for_bridges=True
  9. verbose=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. resume_guests_state_on_host_boot=True
  14. ram_allocation_ratio=1
  15. cpu_allocation_ratio=1
  16.  
  17. #Pedido por henrique para medir metricas de cpu
  18. compute_monitors = ComputeDriverCPUMonitor
  19.  
  20. # Rabbit
  21. rpc_backend = rabbit
  22.  
  23. # Keystone
  24. auth_strategy = keystone
  25.  
  26. my_ip = 192.168.2.9
  27.  
  28. vnc_enabled = True
  29. vncserver_listen = 0.0.0.0
  30. vncserver_proxyclient_address = 192.168.2.9
  31. novncproxy_base_url = http://kilocloud2.lsd.ufcg.edu.br:6080/vnc_auto.html
  32.  
  33. # Neutron
  34. network_api_class = nova.network.neutronv2.api.API
  35. security_group_api = neutron
  36. linuxnet_interface_driver = nova.network.linux_net.LinuxOVSInterfaceDriver
  37. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  38.  
  39. # Ceilometer
  40. instance_usage_audit = True
  41. instance_usage_audit_period = hour
  42. notify_on_state_change = vm_and_task_state
  43. notification_driver = messagingv2
  44.  
  45. # Enable block live-migration
  46. live_migration_flag=VIR_MIGRATE_UNDEFINE_SOURCE,VIR_MIGRATE_PEER2PEER,VIR_MIGRATE_LIVE,VIR_MIGRATE_PERSIST_DEST,VIR_MIGRATE_TUNNELLED
  47.  
  48. [oslo_messaging_rabbit]
  49. rabbit_host = kilocloud2
  50. rabbit_userid = openstack
  51. rabbit_password = b0140c0c2407518b228a
  52. #rabbit_durable_queues = true
  53.  
  54. [oslo_concurrency]
  55. lock_path = /var/lib/nova/tmp
  56.  
  57. [keystone_authtoken]
  58. auth_uri = http://kilocloud2:5000
  59. auth_url = http://kilocloud2:35357
  60. auth_plugin = password
  61. project_domain_id = default
  62. user_domain_id = default
  63. project_name = service
  64. username = nova
  65. password = 0e3d42474ffd2de32eb1
  66.  
  67. [glance]
  68. host = kilocloud2
  69.  
  70. [neutron]
  71. url = http://kilocloud2:9696
  72. auth_strategy = keystone
  73. admin_auth_url = http://kilocloud2:35357/v2.0
  74. admin_tenant_name = service
  75. admin_username = neutron
  76. admin_password = 4eb05babcaf9a3488c2b
  77.  
  78. #[libvirt]
  79. #cpu_mode=custom
  80. #cpu_model=kvm64
  81.  
  82.  
  83. [libvirt]
  84. images_type = rbd
  85. images_rbd_pool = nova
  86. images_rbd_ceph_conf = /etc/ceph/ceph.conf
  87. rbd_user = nova
  88. rbd_secret_uuid = 71a59c1f-f88a-4c92-b923-a8d3fb44c373
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement