Guest User

Untitled

a guest
May 10th, 2016
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. [DEFAULT]
  2. verbose = True
  3. network_api_class = nova.network.neutronv2.api.API
  4. security_group_api = neutron
  5. linuxnet_interface_driver = nova.network.linux_net.NeutronLinuxBridgeInterfaceDriver
  6. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  7. my_ip = 172.168.1.101
  8. auth_strategy = keystone
  9. rpc_backend = rabbit
  10. dhcpbridge_flagfile=/etc/nova/nova.conf
  11. dhcpbridge=/usr/bin/nova-dhcpbridge
  12. logdir=/var/log/nova
  13. state_path=/var/lib/nova
  14. lock_path=/var/lock/nova
  15. force_dhcp_release=True
  16. libvirt_use_virtio_for_bridges=True
  17. verbose=True
  18. ec2_private_dns_show_ip=True
  19. api_paste_config=/etc/nova/api-paste.ini
  20. enabled_apis=osapi_compute,metadata
  21. firewall_driver=nova.virt.firewall.NoopFirewallDriver
  22. ram_allocation_ratio=1.0
  23. reserved_host_memory_mb=0
  24. scheduler_use_baremetal_filters=True
  25. scheduler_tracks_instance_changes=False
  26. #compute_driver=nova.virt.ironic.IronicDriver
  27. compute_driver=libvirt.LibvirtDriver
  28. firewall_driver=nova.virt.firewall.NoopFirewallDriver
  29. scheduler_host_manager=nova.scheduler.ironic_host_manager.IronicHostManager
  30. ram_allocation_ratio=2
  31. reserved_host_memory_mb=0
  32. compute_manager=ironic.nova.compute.manager.ClusteredComputeManager
  33. scheduler_use_baremetal_filters=True
  34. scheduler_tracks_instance_changes=False
  35. cpu_allocation_ratio=20
  36.  
  37. [ironic]
  38.  
  39. # Ironic keystone admin name
  40. admin_username=ironic
  41.  
  42. #Ironic keystone admin password.
  43. admin_password=ironic123
  44.  
  45. # keystone API endpoint
  46. admin_url=http://controller:35357/v2.0
  47.  
  48. # Ironic keystone tenant name.
  49. admin_tenant_name=service
  50.  
  51. # URL for Ironic API endpoint.
  52. api_endpoint=http://controller:6385/v1
  53.  
  54.  
  55. [database]
  56. connection = mysql+pymysql://nova:nova123@controller/nova
  57.  
  58. [oslo_messaging_rabbit]
  59. rabbit_host = controller
  60. rabbit_userid = openstack
  61. rabbit_password = rabbit123
  62.  
  63. [keystone_authtoken]
  64. auth_uri = http://controller:5000
  65. auth_url = http://controller:35357
  66. auth_plugin = password
  67. project_domain_id = default
  68. user_domain_id = default
  69. project_name = service
  70. username = nova
  71. password = nova123
  72.  
  73. [vnc]
  74. vncserver_listen = $my_ip
  75. vnc_enabled=True
  76. vncserver_listen = 0.0.0.0
  77. vncserver_proxyclient_address = $my_ip
  78. vncserver_proxyclient_address = $my_ip
  79.  
  80. [glance]
  81. host = controller
  82.  
  83. [oslo_concurrency]
  84. lock_path = /var/lib/nova/tmp
  85.  
  86. [neutron]
  87. url = http://controller:9696
  88. auth_url = http://controller:35357
  89. auth_plugin = password
  90. project_domain_id = default
  91. user_domain_id = default
  92. region_name = RegionOne
  93. project_name = service
  94. username = neutron
  95. password = neutron123
  96. service_metadata_proxy = True
  97. metadata_proxy_shared_secret = bahubali
Add Comment
Please, Sign In to add comment