Last active
September 25, 2017 09:55
-
-
Save ntk148v/2a623e59f10607fd6c0d66f609785a41 to your computer and use it in GitHub Desktop.
local.conf for minial swift 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=http://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 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