分享一下我的devstack的local.conf配置

[[local|localrc]]
# Modify to your environment
HOST_IP=10.0.0.180
FLOATING_RANGE=192.168.100.1/24
PUBLIC_NETWORK_GATEWAY=192.168.100.2
PUBLIC_INTERFACE=eth1


# Credentials
ADMIN_PASSWORD=passwd
DATABASE_PASSWORD=passwd
RABBIT_PASSWORD=passwd
SERVICE_PASSWORD=passwd
SERVICE_TOKEN=2e12823ae0481b4791da


enable_service rabbit


# Ensure we are using neutron networking rather than nova networking
# (Neutron is enabled by default since Kilo)
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 neutron


# Enable heat services
enable_service h-eng
enable_service h-api
enable_service h-api-cfn
enable_service h-api-cw


# Enable barbican services
enable_plugin barbican https://git.openstack.org/openstack/barbican


FIXED_RANGE=10.0.0.0/24


Q_USE_SECGROUP=True
ENABLE_TENANT_VLANS=True
TENANT_VLAN_RANGE=


PHYSICAL_NETWORK=public
OVS_PHYSICAL_BRIDGE=br-ex


# Log all output to files
LOGFILE=$HOME/devstack.log
SCREEN_LOGDIR=$HOME/logs


VOLUME_BACKING_FILE_SIZE=20G

你可能感兴趣的:(分享一下我的devstack的local.conf配置)