Last active
April 24, 2017 15:01
-
-
Save ntk148v/f5976e53e545656dd6dd012b908c843f to your computer and use it in GitHub Desktop.
local.conf for minial swift-s3 installation on devstack.
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]] | |
| RECLONE=True | |
| GIT_BASE=${GIT_BASE:-https://git.openstack.org} | |
| HORIZON_BRANCH=stable/mitaka | |
| KEYSTONE_BRANCH=stable/mitaka | |
| SWIFT_BRANCH=stable/mitaka | |
| #----------------------------- | |
| # Common congigurations | |
| #----------------------------- | |
| disable_all_services | |
| enable_service key mysql | |
| # Enable Swift | |
| enable_service s-proxy s-object s-container s-account | |
| enable_service swift3 | |
| # Enable Horizon | |
| enable_service horizon | |
| enable_plugin horizon-i18n-tools https://github.com/amotoki/horizon-i18n-tools.git | |
| LIBS_FROM_GIT=django_openstack_auth | |
| HORIZONAUTH_BRANCH=stable/mitaka | |
| #----------------------------- | |
| # Devstack configurations | |
| #----------------------------- | |
| # Logging configuration | |
| LOGDIR=$DEST/logs | |
| SCREEN_LOGDIR=$LOGDIR | |
| SCREEN_HARDSTATUS="%{= rw} %H %{= wk} %L=%-w%{= bw}%30L> %n%f %t*%{= wk}%+Lw%-17< %-=%{= gk} %y/%m/%d %c" | |
| LOGFILE=$LOGDIR/devstack.log | |
| LOGDAYS=1 | |
| LOG_COLOR=True | |
| # Password configuration | |
| ADMIN_PASSWORD=admin@123 | |
| MYSQL_PASSWORD=admin@123 | |
| RABBIT_PASSWORD=admin@123 | |
| SERVICE_PASSWORD=admin@123 | |
| SERVICE_TOKEN=admin@123 | |
| SWIFT_HASH=admin@123 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment