Files
training-guides/labs/config/deploy.osbash
Pranav Salunke 7c8d4ecf8f Updates base disk size
Adding orchestration and telementry services require more disk size.
The current base disk size may not be sufficient for newely added
services.

Change-Id: Id8fc90a434cade6e1c9833935938869f6a84252a
2015-05-10 14:22:53 +00:00

21 lines
524 B
Bash

# Used by osbash.sh and guest scripts
# Port used for ssh forwarding when building base disk
: ${VM_BASE_SSH_PORT:=2229}
: ${OSBASH_LIB_DIR:=$LIB_DIR/osbash}
: ${OSBASH_SCRIPTS_DIR:=$SCRIPTS_DIR/osbash}
: ${TEMPLATE_DIR:=$LIB_DIR/osbash/templates}
# Name of VirtualBox shared folder
: ${SHARE_NAME:=osbash}
# Note: shell user name and password are set in preseed.cfg
VM_SHELL_USER=osbash
# Override disk size in MB (default is 10000 MB, inherited by node VMs)
# BASE_DISK_SIZE=10000
# vim: set ai ts=4 sw=4 et ft=sh: