e0a65684e3
Load-Balancing-as-a-Service (LBaaS) is a service of Neutron that can be leverage to create a load balancer. We are going to support multiple k8s master nodes, so we need load balancers to route traffic to replicated master nodes. Change-Id: If92568b35097180760d434125d2973cd5a1ec019 Partially-Implements: blueprint make-master-ha
41 lines
839 B
Plaintext
41 lines
839 B
Plaintext
# Devstack settings
|
|
|
|
## Modify to your environment
|
|
# FLOATING_RANGE=192.168.1.224/27
|
|
# PUBLIC_NETWORK_GATEWAY=192.168.1.225
|
|
# PUBLIC_INTERFACE=em1
|
|
# FIXED_RANGE=10.0.0.0/24
|
|
|
|
# Neutron settings
|
|
Q_USE_SECGROUP=True
|
|
ENABLE_TENANT_VLANS=True
|
|
TENANT_VLAN_RANGE=
|
|
PHYSICAL_NETWORK=public
|
|
OVS_PHYSICAL_BRIDGE=br-ex
|
|
|
|
enable_service rabbit
|
|
|
|
# Enable Neutron which is required by Magnum and disable nova-network.
|
|
disable_service n-net
|
|
enable_service q-svc
|
|
enable_service q-agt
|
|
enable_service q-dhcp
|
|
enable_service q-l3
|
|
enable_service q-meta
|
|
enable_service q-lbaas
|
|
enable_service neutron
|
|
|
|
# Enable Heat services
|
|
enable_service h-eng
|
|
enable_service h-api
|
|
enable_service h-api-cfn
|
|
enable_service h-api-cw
|
|
|
|
# Enable Magnum services
|
|
enable_service m-api
|
|
enable_service m-cond
|
|
|
|
# Log all output to files
|
|
LOGFILE=$HOME/devstack.log
|
|
SCREEN_LOGDIR=$HOME/logs
|