Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.49 KB | None | 0 0
  1.  
  2. [[local|localrc]]
  3. # Set this to your management IP
  4. HOST_IP=15.48.0.111
  5.  
  6. #Services to be started
  7. enable_service rabbit
  8. enable_service mysql
  9. enable_service key
  10.  
  11. GIT_BASE=https://github.com
  12. enable_service n-api
  13. #enable_service n-crt
  14. enable_service n-obj
  15. enable_service n-cond
  16. enable_service n-sch
  17. enable_service n-novnc
  18. enable_service n-cauth
  19. disable_service n-net
  20.  
  21. enable_service neutron
  22. enable_service q-svc
  23. enable_service q-agt
  24. enable_service q-dhcp
  25. enable_service q-l3
  26. enable_service q-meta
  27. # enable_service q-lbaas
  28. enable_service q-fwaas
  29. # enable_service q-metering
  30. # enable_service q-vpn
  31.  
  32. # enable_plugin networking-hyperv https://github.com/openstack/networking-hyperv
  33. # enable_plugin ceilometer https://github.com/openstack/ceilometer
  34. # enable_service ceilometer-acompute
  35.  
  36. disable_service horizon
  37.  
  38. enable_service g-api
  39. enable_service g-reg
  40.  
  41. enable_service cinder
  42. enable_service c-api
  43. enable_service c-vol
  44. enable_service c-sch
  45. enable_service c-bak
  46.  
  47. enable_service s-proxy
  48. enable_service s-object
  49. enable_service s-container
  50. enable_service s-account
  51.  
  52. # enable_service heat
  53. # enable_service h-api
  54. # enable_service h-api-cfn
  55. # enable_service h-api-cw
  56. # enable_service h-eng
  57.  
  58. enable_service tempest
  59.  
  60. # To add a local compute node, enable the following services
  61. enable_service n-cpu
  62.  
  63. DOWNLOAD_DEFAULT_IMAGES=False
  64.  
  65. #DEFAULT_INSTANCE_USER=ubuntu
  66. #DEFAULT_INSTANCE_TYPE=m1.small
  67. #IMAGE_URLS+=",file:///home/cloudbase/ubuntu.vhd.gz"
  68. #IMAGE_URLS+=",file:///home/cloudbase/ubuntu.vhdx.gz"
  69. #IMAGE_URLS+=",file:///home/cloudbase/cirros.vhdx.gz"
  70. #IMAGE_URLS+="http://download.cirros-cloud.net/0.3.5/cirros-0.3.5-x86_64-disk.img,file:///home/ubuntu/cirros-0.3.4-x86_64.vhdx"
  71. IMAGE_URLS+="file:///home/ubuntu/devstack/cirros-0.4.0-x86_64-disk.img,file:///home/ubuntu/devstack/cirros-0.3.4-x86_64.vhdx"
  72. # HEAT_CFN_IMAGE_URL="file:///home/ubuntu/devstack/Fedora-x86_64-20-20140618-sda.vhdx"
  73.  
  74. IP_VERSION=4
  75.  
  76. Q_PLUGIN=ml2
  77. Q_ML2_PLUGIN_MECHANISM_DRIVERS=openvswitch
  78. Q_ML2_TENANT_NETWORK_TYPE=vxlan
  79. Q_USE_PROVIDERNET_FOR_PUBLIC=True
  80. ENABLE_TENANT_TUNNELS=True
  81.  
  82. PUBLIC_PHYSICAL_NETWORK=public
  83. OVS_BRIDGE_MAPPINGS=public:br-ex
  84. FLOATING_RANGE=15.48.0.0/16
  85. Q_FLOATING_ALLOCATION_POOL=start=15.48.1.100,end=15.48.1.150
  86. Q_ASSIGN_GATEWAY_TO_PUBLIC_BRIDGE=False
  87.  
  88. TUNNEL_ENDPOINT_IP=12.45.0.201
  89. TENANT_TUNNEL_RANGE=-3001:3500
  90. OVS_ENABLE_TUNNELING=True
  91. # OVS_PHYSICAL_BRIDGE=br-eth1
  92. OVS_PHYSICAL_BRIDGE=br-ex
  93. PUBLIC_INTERFACE=eth2
  94. # GUEST_INTERFACE=eth1
  95.  
  96.  
  97. CINDER_SECURE_DELETE=False
  98. VOLUME_BACKING_FILE_SIZE=50000M
  99. VOLUME_GROUP_NAME=devstack-master-134
  100.  
  101. # TODO: this fails since Juno
  102. #KEYSTONE_TOKEN_BACKEND=memcache
  103.  
  104. LIVE_MIGRATION_AVAILABLE=True
  105. USE_BLOCK_MIGRATION_FOR_LIVE_MIGRATION=False
  106. CELLSV2_SETUP=singleconductor
  107.  
  108. LIBVIRT_TYPE=kvm
  109.  
  110. API_RATE_LIMIT=False
  111.  
  112. DATABASE_PASSWORD=Passw0rd
  113. RABBIT_PASSWORD=Passw0rd
  114. SERVICE_TOKEN=Passw0rd
  115. SERVICE_PASSWORD=Passw0rd
  116. ADMIN_PASSWORD=Passw0rd
  117.  
  118. SCREEN_LOGDIR=/opt/stack/logs
  119. LOGDIR=/opt/stack/logs
  120. VERBOSE=True
  121. LOG_COLOR=False
  122.  
  123. SWIFT_LOOPBACK_DISK_SIZE=50G
  124. SWIFT_REPLICAS=1
  125. SWIFT_HASH=66a3d6b56c1f479c8b4e70ab5d2014f6
  126. SWIFT_START_ALL_SERVICES=False
  127.  
  128. USE_VENV=False
  129. # USE_SCREEN=True
  130.  
  131. #TRACK_DEPENDS=True
  132. #INSTALL_TESTONLY_PACKAGES=True
  133.  
  134. [[post-config|$NEUTRON_CONF]]
  135. [database]
  136. min_pool_size = 5
  137. max_pool_size = 50
  138. max_overflow = 50
  139.  
  140. [oslo_messaging_rabbit]
  141. rabbit_hosts = $HOST_IP
  142.  
  143. [DEFAULT]
  144. global_physnet_mtu = 1500
  145. advertise_mtu = True
  146.  
  147. [[post-config|$NOVA_CONF]]
  148. [DEFAULT]
  149. force_raw_images = False
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement