- Deployment using Tuskar toolset (regardless if UI or CLI way) requires a fully set up and running undercloud, including the Tuskar API.
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
#!/bin/bash | |
set -x | |
if [[ $EUID -ne 0 ]]; then | |
echo "This script must be run as root" 1>&2 | |
exit 1 | |
fi | |
# install dependencies and wget |
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
# http://fedoraproject.org/wiki/OpenStack_devstack | |
# http://devstack.org/localrc.html | |
# Check /etc/hosts and make sure that ::1 is bound to 'localhost6', | |
# not to 'localhost'. | |
DEST=$HOME/openstack | |
DATA_DIR=$DEST/data | |
LOGFILE=$DEST/logs/stack.log |
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
" Use this plugin instead: https://github.com/jistr/vim-nerdtree-tabs |
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
# YAML -> CouchDB fixture loader for Rails | |
# ======================================== | |
# by Jiri Stransky (http://twitter.com/jistr) | |
# for use with testing database instances only ;) | |
# | |
# What it does: | |
# * Loads fixtures from "test/fixtures" directory. | |
# * Permits use of ERB in the fixtures. | |
# * Uses CouchRest. | |
# |
NewerOlder