diff options
author | Rihab Banday <rihab.banday@ericsson.com> | 2020-07-21 10:49:45 +0000 |
---|---|---|
committer | Rihab Banday <rihab.banday@ericsson.com> | 2020-07-29 15:49:40 +0000 |
commit | af104f92b348c51e20f5fbf3be78f532864804ab (patch) | |
tree | 9cd3cac840ad665071fb6d80b6be058ff5f5bbfd /deploy.env | |
parent | bef45268b994c845859f08b40f276dfeef33276f (diff) |
Initial structure for e2e deployment scripting
This patch includes the initial skeleton of the e2e deployment
tooling. This is expected to evolve as further development progresses.
Change-Id: Ie1e334e672acb2213e8f6c2174506b685f826f98
Signed-off-by: Rihab Banday <rihab.banday@ericsson.com>
Diffstat (limited to 'deploy.env')
-rw-r--r-- | deploy.env | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/deploy.env b/deploy.env new file mode 100644 index 0000000..71a951a --- /dev/null +++ b/deploy.env @@ -0,0 +1,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 |