180f68eac8
1. What is the problem? Networking related code is still in the repository of the Trio2o project. 2. What is the solution to the problem? According to the blueprint for the Trio2o cleaning: https://blueprints.launchpad.net/trio2o/+spec/trio2o-code-cleaning Networking related code which is forked from the Tricircle repository should be removed from the Trio2o repository. After the cleanning, the Trio2o should be able to run independently. There are lots of things to clean and update, and have to do it in one huge patch, otherwise the code in Trio2o will not be able to run and tested properply: 1). Remove netwoking operaion from server controller 2). Update devstack script 3). Update installation guide 4). Update README 5). Remove network folder and network related unit tests 6). Rename Tricircle to Trio2o in all source code THE MEANING OF FILE OPERATION: D: delete a file R: rename a file to another name A: add a new file C: copy a file 3. What the features need to be implemented to the Tricircle to realize the solution? No new features. Change-Id: I0b48ee38280e25ba6294ca3d5b7a0673cb368ed4 Signed-off-by: joehuang <joehuang@huawei.com>
77 lines
2.2 KiB
Plaintext
77 lines
2.2 KiB
Plaintext
#
|
|
# Sample DevStack local.conf.sample2
|
|
#
|
|
# This sample file is intended to be used for your typical Trio2o DevStack
|
|
# multi-node environment. As this file configures, DevStack will setup one
|
|
# one more bottom OpenStack Pod2 running original Nova, Cinder and Neutron.
|
|
#
|
|
# This file works with local.conf.node.sample to help you build a two-node
|
|
# three-region Trio2o environment. Keystone, Neutron and Glance in top region
|
|
# are shared by services in all the regions.
|
|
#
|
|
# Some options needs to be change to adapt to your environment, read
|
|
# installation.rst for detail.
|
|
#
|
|
|
|
[[local|localrc]]
|
|
|
|
RECLONE=no
|
|
|
|
DATABASE_PASSWORD=password
|
|
RABBIT_PASSWORD=password
|
|
SERVICE_PASSWORD=password
|
|
SERVICE_TOKEN=password
|
|
ADMIN_PASSWORD=password
|
|
LOGFILE=/opt/stack/logs/stack.sh.log
|
|
VERBOSE=True
|
|
LOG_COLOR=True
|
|
SCREEN_LOGDIR=/opt/stack/logs
|
|
FIXED_RANGE=10.0.0.0/24
|
|
NETWORK_GATEWAY=10.0.0.1
|
|
FIXED_NETWORK_SIZE=256
|
|
FLOATING_RANGE=10.100.100.160/24
|
|
Q_FLOATING_ALLOCATION_POOL=start=10.100.100.160,end=10.100.100.192
|
|
PUBLIC_NETWORK_GATEWAY=10.100.100.3
|
|
Q_USE_SECGROUP=False
|
|
LIBVIRT_FIREWALL_DRIVER=nova.virt.firewall.NoopFirewallDriver
|
|
NEUTRON_CREATE_INITIAL_NETWORKS=False
|
|
Q_USE_PROVIDERNET_FOR_PUBLIC=True
|
|
|
|
# the region name of this OpenStack instance, and it's also
|
|
# the pod name in Trio2o
|
|
REGION_NAME=Pod2
|
|
|
|
# Change the HOST_IP, SERVICE_HOST and GLANCE_SERVICE_HOST to
|
|
# the host's IP address where the Pod2 is running
|
|
HOST_IP=162.3.124.204
|
|
SERVICE_HOST=162.3.124.204
|
|
|
|
# Use the KeyStone which is located in RegionOne, where the Trio2o is
|
|
# installed, change the KEYSTONE_SERVICE_HOST and KEYSTONE_AUTH_HOST to
|
|
# host's IP address where the KeyStone is served.
|
|
KEYSTONE_REGION_NAME=RegionOne
|
|
KEYSTONE_SERVICE_HOST=162.3.124.203
|
|
KEYSTONE_AUTH_HOST=162.3.124.203
|
|
|
|
# Use the Glance which is located in RegionOne, where the Trio2o is
|
|
# installed
|
|
GLANCE_SERVICE_HOST=162.3.124.203
|
|
|
|
# Use Neutron instead of nova-network
|
|
disable_service n-net
|
|
enable_service q-svc
|
|
enable_service q-dhcp
|
|
enable_service q-agt
|
|
enable_service q-l3
|
|
|
|
enable_service c-api
|
|
enable_service c-vol
|
|
enable_service c-sch
|
|
|
|
disable_service n-obj
|
|
disable_service g-api
|
|
disable_service g-reg
|
|
disable_service c-bak
|
|
disable_service tempest
|
|
disable_service horizon
|