diff options
author | 2020-07-30 09:16:28 +0000 | |
---|---|---|
committer | 2020-08-17 10:59:03 +0200 | |
commit | 28d1cee5c7b95ae905a4481245d5d5650c87e101 (patch) | |
tree | cbbae35d848e257d6a29e0e31a2dede72d52c5c8 /deploy.env | |
parent | c9677cb936e57045c3a7e56c7368b27c7d09a5ad (diff) |
Update env variable extraction and VM creation steps
This change uses YAML parser to extract environmental variables from PDF
and IDF. Additionally it merges the VM creation step with the main
functions script.
Change-Id: I2089b7a84f15e892d57fbadf06252db8769f0fbf
Signed-off-by: Rihab Banday <rihab.banday@ericsson.com>
Diffstat (limited to 'deploy.env')
-rw-r--r-- | deploy.env | 12 |
1 files changed, 1 insertions, 11 deletions
@@ -7,16 +7,6 @@ export INSTALLER=bmra export BRIDGE=pxebr # Jump VM details -export VM_NAME=kuberef-jump +export VM_NAME=$(yq r $CURRENTPATH/hw_config/$VENDOR/pdf.yaml jumphost.name) 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 |