From c54f6e46f4dcc0c8521b6a271a6c312448700ff1 Mon Sep 17 00:00:00 2001 From: Roger Luethi Date: Tue, 17 Jun 2014 15:10:52 +0200 Subject: [PATCH] Node-specific VM configuration files The three files in this changeset define for each node (controller, network, compute) the networks it is attached to, the last octet of its IP addresses, and any port forwardings from the host system to the VM. Partial-Bug: 1312764 Implements: blueprint openstack-training-labs Change-Id: I3dece1457ba78cd5eb7f3a455705b510cac0abe8 --- labs/config/config.compute | 12 ++++++++++++ labs/config/config.controller | 13 +++++++++++++ labs/config/config.network | 13 +++++++++++++ 3 files changed, 38 insertions(+) create mode 100644 labs/config/config.compute create mode 100644 labs/config/config.controller create mode 100644 labs/config/config.network diff --git a/labs/config/config.compute b/labs/config/config.compute new file mode 100644 index 00000000..3040c2a3 --- /dev/null +++ b/labs/config/config.compute @@ -0,0 +1,12 @@ +# Node VM configuration. Used by osbash/wbatch (host and guest). + +# Port forwarding +VM_SSH_PORT=2232 + +# Last octet of IP addresses +FOURTH_OCTET=53 + +# Assign network interfaces to networks +NET_IF_0=nat +NET_IF_1=MGMT_NET +NET_IF_2=DATA_NET diff --git a/labs/config/config.controller b/labs/config/config.controller new file mode 100644 index 00000000..fdfa4651 --- /dev/null +++ b/labs/config/config.controller @@ -0,0 +1,13 @@ +# Node VM configuration. Used by osbash/wbatch (host and guest). + +# Port forwarding +VM_SSH_PORT=2230 +VM_WWW_PORT=8888 + +# Last octet of IP addresses +FOURTH_OCTET=51 + +# Assign network interfaces to networks +NET_IF_0=nat +NET_IF_1=MGMT_NET +NET_IF_2=API_NET diff --git a/labs/config/config.network b/labs/config/config.network new file mode 100644 index 00000000..9a629d80 --- /dev/null +++ b/labs/config/config.network @@ -0,0 +1,13 @@ +# Node VM configuration. Used by osbash/wbatch (host and guest). + +# Port forwarding +VM_SSH_PORT=2231 + +# Last octet of IP addresses +FOURTH_OCTET=52 + +# Assign network interfaces to networks +NET_IF_0=nat +NET_IF_1=MGMT_NET +NET_IF_2=DATA_NET +NET_IF_3=API_NET