Guest User

Untitled

a guest
Jul 29th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. [[local|localrc]]
  2. ############################################################
  3. # Customize the following HOST_IP based on your installation
  4. ############################################################
  5. #HOST_IP=a.b.c.d
  6.  
  7. ADMIN_PASSWORD=ubuntu
  8. MYSQL_PASSWORD=ubuntu
  9. RABBIT_PASSWORD=ubuntu
  10. SERVICE_PASSWORD=ubuntu
  11. SERVICE_TOKEN=ubuntu
  12. #OFFLINE=True
  13. IP_VERSION=${IP_VERSION:-4}
  14.  
  15. ############################################################
  16. # Customize the following section based on your installation
  17. ############################################################
  18.  
  19. # Pip
  20. PIP_USE_MIRRORS=False
  21. USE_GET_PIP=1
  22.  
  23. #OFFLINE=False
  24. #RECLONE=True
  25.  
  26. # Logging
  27. LOGFILE=$DEST/logs/stack.sh.log
  28. SCREEN_LOGDIR=$DEST/logs/screen
  29. VERBOSE=True
  30. ENABLE_DEBUG_LOG_LEVEL=True
  31. ENABLE_VERBOSE_LOG_LEVEL=True
  32.  
  33. # Neutron ML2 with OpenVSwitch
  34.  
  35. Q_PLUGIN=ml2
  36. Q_AGENT=openvswitch
  37.  
  38. #PUBLIC NETWORK CONFIGURATION
  39. #Q_USE_PROVIDERNET_FOR_PUBLIC=False
  40. #FLOATING_RANGE=10.12.161.0/24
  41. #Q_FLOATING_ALLOCATION_POOL="start=10.12.161.150,end=10.12.161.201"
  42. #PUBLIC_NETWORK_NAME=external
  43. #PUBLIC_NETWORK_GATEWAY=10.66.28.1
  44. #PUBLIC_PHYSICAL_NETWORK=public
  45.  
  46. #Required for l3-agent to connect to external-network-bridge
  47. #PUBLIC_BRIDGE=br-ext
  48.  
  49. #PRIVATE NETWORK CONFIGURATION
  50.  
  51. #NETWORK_GATEWAY=${NETWORK_GATEWAY:-15.0.0.1}
  52. #FIXED_RANGE=${FIXED_RANGE:-15.0.0.0/24}
  53.  
  54. enable_plugin tacker https://git.openstack.org/openstack/tacker
  55. enable_plugin magnum https://github.com/openstack/magnum master
  56. enable_plugin kuryr http://git.openstack.org/openstack/kuryr
  57.  
  58. # Enable Zun services
  59. enable_service zun-api
  60. enable_service zun-conductor
  61. enable_service zun-compute
  62.  
  63. disable_service tempest
  64.  
  65. disable_service n-net
  66. # disbale neutron
  67. enable_service q-svc
  68. enable_service q-agt
  69. enable_service q-dhcp
  70. enable_service q-l3
  71. enable_service q-meta
  72.  
  73. #disbale cinder
  74. disable_service c-sch
  75. disable_service c-api
  76. disable_service c-vol
  77.  
  78. #PUBLIC_INTERFACE=eth0
  79. VOLUME_BACKING_FILE_SIZE=20G
Add Comment
Please, Sign In to add comment