blob: 71a951a186a60d774516b868c5b00921acced92a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Define environment variables
export VENDOR=intel
export INSTALLER=bmra
# Name of host bridge to which the VM is connected to (used for PXE)
export BRIDGE=pxebr
# Jump VM details
export VM_NAME=kuberef-jump
export USERNAME=ubuntu
export PROJECT_ROOT="/home/ubuntu"
# Network configuration details of PXE interface in VM
export PXE_IF=ens4
export PXE_IF_IP=10.10.190.211
export PXE_IF_MAC=52:54:00:4a:e8:2d
export NETMASK=255.255.255.0
# IPs of the provisioned nodes
export MASTER_IP=10.10.190.202
export WORKER_IP=10.10.190.203
|