
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
28 lines
1.1 KiB
Plaintext
28 lines
1.1 KiB
Plaintext
# Node VM configuration. Used by osbash/wbatch (host and guest).
|
|
|
|
# Port forwarding
|
|
# ssh access to controller: 127.0.0.1:2230
|
|
VM_SSH_PORT=2230
|
|
# Dashboard access: 127.0.0.1:8888
|
|
VM_WWW_PORT=8888
|
|
|
|
# Assign network interfaces to networks
|
|
NET_IF_0=dhcp
|
|
#------------------------------------------------------------------------------
|
|
# http://docs.openstack.org/mitaka/install-guide-ubuntu/environment-networking-controller.html
|
|
#------------------------------------------------------------------------------
|
|
# Mgmt network (elevate interface boot priority to 1; set when PXE booting)
|
|
NET_IF_1="static 10.0.0.11 1"
|
|
# Public network (select network, IP address configured manually)
|
|
NET_IF_2="manual 203.0.113.0"
|
|
|
|
#------------------------------------------------------------------------------
|
|
# http://docs.openstack.org/mitaka/install-guide-ubuntu/environment.html
|
|
#------------------------------------------------------------------------------
|
|
# Controller node is running many services.
|
|
VM_MEM=5120
|
|
|
|
# Override number of virtual CPUs (default is 1)
|
|
# To edit uncomment the line below
|
|
# VM_CPUS=1
|