Files
training-labs/labs/osbash/config/localrc
Roger Luethi c5fdafc900 Newton updates
This changeset contains updates for Newton.

Notable changes include:
- Ubuntu 14.04 LTS (trusty) replaced by Ubuntu 16.04 LTS (xenial)
- Higher RAM requirements, the controller VM needs 5120 MB
- Script order changed (install-guide changes)
- By default, mariadb does not use a root password but socket auth (sudo)
- Nova does not configure any default flavors anymore; we create m1.nano
  and that's all there is when the cluster is built.
- Remaining differences to install-guide marked in the source code
- As always, new races fixed

Change-Id: Id59e145140252c4384584a3899e01a38e8a57158
2016-10-17 13:40:06 +02:00

27 lines
1.1 KiB
Bash

# Set this if you already have the install ISO, but in a location other
# than IMG_DIR (which defaults to TOP_DIR/img)
#INSTALL_ISO=/data/iso/ubuntu/ubuntu-12.04.4-server-amd64.iso
# VM_PROXY will be used by osbash to get the ISO image and by apt/yum/wget once
# the operating system is installed (i.e. for software updates and
# installation). It should be sufficient to build a base disk if you have to
# use a proxy to connect to the Internet. Building the cluster itself does not
# require an Internet connection at all.
#VM_PROXY="http://192.168.178.20:3128"
# Options: ubuntu-12.04.4-server-amd64
# ubuntu-14.04-server-amd64 (default)
# ubuntu-14.04-server-i386
# centos-7-x86_64
#DISTRO=ubuntu-12.04.4-server-amd64
#DISTRO=centos-7-x86_64
: ${DISTRO:=ubuntu-16.04-server-amd64}
# PROVIDER: virtualbox or kvm (defaults to virtualbox)
# KVM tends to give better performance (on Linux), but may be harder to set up
# and osbash does not (yet) support all features with a KVM backend.
#PROVIDER=kvm
: ${PROVIDER:=virtualbox}
# vim: set ai ts=4 sw=4 et ft=sh: