Files
training-labs/labs/osbash/config/localrc
Roger Luethi 9c10deb133 [1/7] Add/enable Ubuntu 18.04 LTS (Bionic Beaver), OpenStack Rocky
Bionic comes with OpenStack Queens in the default repo and OpenStack
Rocky in the Ubuntu Cloud Archive. Because we are always using UCA,
we need to switch to Rocky now.

This is the first changeset in a series to make Rocky work on Bionic.

Change-Id: If78f9071c5234d8528e5119b2d33e3335d269751
2018-09-11 10:47:28 +02:00

31 lines
1.2 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-18.04-server-amd64 (default)
# ubuntu-18.04-server-i386
# ubuntu-16.04-server-amd64
# ubuntu-16.04-server-i386
# ubuntu-14.04-server-amd64
# ubuntu-14.04-server-i386
#
# example: DISTRO=ubuntu-18.04-server-i386
: ${DISTRO:=ubuntu-18.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.
#
# example: PROVIDER=kvm
: ${PROVIDER:=virtualbox}
# vim: set ai ts=4 sw=4 et ft=sh: