Last active
October 16, 2022 01:06
-
-
Save kopparam/aa3143f0574055225976 to your computer and use it in GitHub Desktop.
Devstack config with neutron and swift enabled
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[local|localrc]] | |
ADMIN_PASSWORD=secrete | |
DATABASE_PASSWORD=$ADMIN_PASSWORD | |
RABBIT_PASSWORD=$ADMIN_PASSWORD | |
SERVICE_PASSWORD=$ADMIN_PASSWORD | |
HOST_IP=10.0.2.15 | |
# Install directory | |
DEST=/opt/stack | |
# stack.sh log file | |
LOGFILE=$DEST/logs/stack.sh.log | |
# Screen logs | |
SCREEN_LOGDIR=$DEST/logs/screen | |
# NeutronDevStack | |
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 | |
# Optional, to enable tempest configuration as part of devstack | |
enable_service tempest | |
# All services log to syslog | |
SYSLOG=True | |
# Enabling swift | |
enable_service s-proxy s-object s-container s-account | |
SWIFT_HASH=66a3d6b56c1f479c8b4e70ab5c2000f5 | |
SWIFT_DATA_DIR=$DEST/data/swift | |
# Clone git repos everytime stack.sh is run | |
RECLONE=yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment