dragonflow/doc/source/multi-node-conf/zookeeper_controller_node.conf
Lihi Wishnitzer e27525801f Disable Active Port Detection when using ZMQ
Currently Active Port Detection and ZMQ have port collision.
This patch disables Active Port Detection when using ZMQ
in our suggested local.conf

Change-Id: I08fafee1e2f7ea31f89ca98904ee786e3b2b0747
Related-Bug: #1716933
2018-01-17 16:49:17 +02:00

49 lines
1.4 KiB
Plaintext

[[local|localrc]]
LOGFILE=$DEST/logs/stack.sh.log
#OFFLINE=True
#RECLONE=False
DATABASE_PASSWORD=password
RABBIT_PASSWORD=password
SERVICE_PASSWORD=password
SERVICE_TOKEN=password
ADMIN_PASSWORD=password
enable_plugin dragonflow https://git.openstack.org/openstack/dragonflow
enable_service df-zookeeper
enable_service df-zookeeper-server
enable_service df-controller
enable_service df-publisher-service
disable_service n-net
enable_service q-svc
enable_service df-l3-agent
enable_service cinder
disable_service heat
disable_service tempest
# Control node control plane and data plane ip address
HOST_IP=<controller's_management_IP_Address>
TUNNEL_ENDPOINT_IP=<controller's_data_plane_IP_Address>
# Enable df-metadata (Dragonflow metadata service proxy) once nova is being used.
enable_service df-metadata
# We have to disable the neutron L2 agent. DF does not use the L2 agent.
disable_service q-agt
# We have to disable the neutron dhcp agent. DF does not use the dhcp agent.
disable_service q-dhcp
# Specify Zookeeper server or cluster
# When deploying Zookeeper cluster, you can use ',' to specify multiple servers.
REMOTE_DB_HOSTS=$HOST_IP:2181
# The build-in PUB/SUB mechanism is mandatory for Zookeeper backend.
enable_service df-zmq-publisher-service
# Currently Active Port Detection and ZMQ collides (https://bugs.launchpad.net/dragonflow/+bug/1716933)
ENABLE_ACTIVE_DETECTION=False