Advertisement
adhioutlined

COMPUTE-CONFIG_myLiberty_XSNEUTRON

Sep 20th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 3.55 KB | None | 0 0
  1. Compute
  2. ================================================
  3. nova.conf
  4. ================================================
  5. [DEFAULT]
  6. my_ip = 192.168.26.44
  7. auth_strategy = keystone
  8. network_api_class = nova.network.neutronv2.api.API
  9. linuxnet_interface_driver = nova.network.linux_net.LinuxOVSInterfaceDriver
  10. security_group_api = neutron
  11. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  12. debug = False
  13. verbose = True
  14. rpc_backend = rabbit
  15. compute_driver = xenapi.XenAPIDriver
  16. host = opscomp1-srg.staging.jcamp.net
  17. live_migration_retry_count=600
  18. [api_database]
  19. [barbican]
  20. [cells]
  21. [cinder]
  22. [conductor]
  23. [cors]
  24. [cors.subdomain]
  25. [database]
  26. [ephemeral_storage_encryption]
  27. [glance]
  28. host = 192.168.26.42
  29. [guestfs]
  30. [hyperv]
  31. [image_file_url]
  32. [ironic]
  33. [keymgr]
  34. [libvirt]
  35. [matchmaker_redis]
  36. [matchmaker_ring]
  37. [metrics]
  38. [neutron]
  39. url = http://192.168.26.42:9696
  40. admin_username = neutron
  41. admin_password = MY_PASSWORD
  42. admin_tenant_name = service
  43. admin_auth_url = http://192.168.26.42:35357/v2.0
  44. auth_strategy = keystone
  45. [osapi_v21]
  46. [oslo_concurrency]
  47. lock_path = /var/lib/nova/tmp
  48. [oslo_messaging_amqp]
  49. [oslo_messaging_qpid]
  50. [oslo_messaging_rabbit]
  51. rabbit_host = 192.168.26.42
  52. rabbit_userid = openstack
  53. rabbit_password = MY_PASSWORD
  54. [oslo_middleware]
  55. [rdp]
  56. [serial_console]
  57. [spice]
  58. [ssl]
  59. [trusted_computing]
  60. [upgrade_levels]
  61. [vmware]
  62. [vnc]
  63. enabled = True
  64. vncserver_listen = 0.0.0.0
  65. vncserver_proxyclient_address = 192.168.26.102
  66. novncproxy_base_url = http://192.168.26.42:6080/vnc_auto.html
  67. [workarounds]
  68. [xenserver]
  69. connection_url=http://192.168.26.102
  70. connection_username=root
  71. connection_password=MY_PASSWORD
  72. vif_driver=nova.virt.xenapi.vif.XenAPIOpenVswitchDriver
  73. ovs_int_bridge=xapi0
  74. ovs_integration_bridge=xapi0
  75. [zookeeper]
  76. [keystone_authtoken]
  77. auth_uri = http://192.168.26.42:5000
  78. auth_url = http://192.168.26.42:35357
  79. auth_plugin = password
  80. project_domain_id = default
  81. user_domain_id = default
  82. project_name = service
  83. username = nova
  84. password = MY_PASSWORD
  85. ================================================
  86.  
  87.  
  88. ================================================
  89. ml2_conf.ini
  90. ================================================
  91. ml2]
  92. type_drivers = flat,gre
  93. tenant_network_types = gre
  94. mechanism_drivers = openvswitch
  95. [ml2_type_flat]
  96. flat_networks = physnet0
  97. [ml2_type_vlan]
  98. [ml2_type_gre]
  99. tunnel_id_ranges = 100:1000
  100. [ml2_type_vxlan]
  101. [ml2_type_geneve]
  102. [securitygroup]
  103. enable_security_group = True
  104. enable_ipset = True
  105. ================================================
  106.  
  107.  
  108. ================================================
  109. openvswitch_agent.ini
  110. ================================================
  111. [ovs]
  112. integration_bridge = xapi0
  113. local_ip = 10.26.0.102
  114. bridge_mappings = physnet0:xenbr2
  115. [agent]
  116. root_helper = neutron-rootwrap-xen-dom0 /etc/neutron/rootwrap.conf
  117. root_helper_daemon =
  118. minimize_polling = False
  119. tunnel_types = gre
  120. [securitygroup]
  121. enable_security_group = True
  122. enable_ipset = True
  123. firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
  124. ================================================
  125.  
  126. ================================================
  127. rootwrap.conf
  128. ================================================
  129. [DEFAULT]
  130. filters_path=/etc/neutron/rootwrap.d,/usr/share/neutron/rootwrap
  131. exec_dirs=/sbin,/usr/sbin,/bin,/usr/bin,/usr/local/bin,/usr/local/sbin
  132. use_syslog=False
  133. syslog_log_facility=syslog
  134. syslog_log_level=ERROR
  135. [xenapi]
  136. xenapi_connection_url=http://192.168.26.102
  137. xenapi_connection_username=root
  138. xenapi_connection_password=MY_PASSWORD
  139. ================================================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement