Table of Contentsoutline true
Introduction
outline | true |
---|
...
Hostname | CPU Model | Memory | Storage | 1GbE: NIC#, VLAN, (Connected extreme 480 switch) | 10GbE: NIC# VLAN, Network (Connected with IZ1 switch) |
---|---|---|---|---|---|
Jump | Intel 2xE5-2699 | 64GB | 3TB (Sata) | IF0: VLAN 110 (DMZ) | IF2: VLAN 112 (Private) |
Jump server Software Requirements:
...
Hostname | CPU Model | Memory | Storage | 1GbE: NIC#, VLAN, (Connected extreme 480 switch) | 10GbE: NIC# VLAN, Network (Connected with IZ1 switch) |
---|---|---|---|---|---|
node1 | Intel 2xE5-2699 | 64GB | 3TB (Sata) | IF0: VLAN 110 (DMZ) | IF2: VLAN 112 (Private) |
node2 | Intel 2xE5-2699 | 64GB | 3TB (Sata) | IF0: VLAN 110 (DMZ) | IF2: VLAN 112 (Private) |
node3 | Intel 2xE5-2699 | 64GB | 3TB (Sata) | IF0: VLAN 110 (DMZ) | IF2: VLAN 112 (Private) |
Compute server Software Requirements:
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
#!/bin/bash #Local controller - Bootstrap cluster DHCP connection #BS_DHCP_INTERFACE defines the interfaces, to which ICN DHCP deployment will bind #e.g. export BS_DHCP_INTERFACE=${BS_DHCP_INTERFACE:-""ens513f0"} export BS_DHCP_INTERFACE=${BS_DHCP_INTERFACE:-} #BS_DHCP_INTERFACE_IP defines the IPAM for the ICN DHCP to be managed. #e.g. export BS_DHCP_INTERFACE_IP=${BS_DHCP_INTERFACE_IP:-"172.31.1.1/24"} export BS_DHCP_INTERFACE_IP=${BS_DHCP_INTERFACE_IP:-} #Ironic Metal3 settings for provisioning network #Interface to which Ironic provision network to be connected #Net B - Provisioning Network #e.g. export IRONIC_INTERFACE=${IRONIC_INTERFACE:-""enp4s0f1"} export IRONIC_INTERFACE=${IRONIC_INTERFACE:-} #Ironic Metal3 setting for IPMI LAN Network #Interface to which Ironic IPMI LAN should bind #e.g. export IRONIC_IPMI_INTERFACE=${IRONIC_IPMI_INTERFACE:-"enp4s0f0"} export IRONIC_IPMI_INTERFACE=${IRONIC_IPMI_INTERFACE:-} #Interface IP for the IPMI LAN, ICN verfiy the LAN Connection #e.g. export IRONIC_IPMI_INTERFACE_IP=${IRONIC_IPMI_INTERFACE_IP:-_IPMI_INTERFACE_IP="10.10.110.20" #Net C - IPMI LAN Network export IRONIC_IPMI_INTERFACE_IP= #Edge Location Provider Network configuration #Net A - Provider Network #If provider having specific Gateway and DNS server details in the edge location #export PROVIDER_NETWORK_GATEWAY="10.10.110.201"} IRONIC_IPMI_INTERFACE_IP=${IRONIC_IPMI_INTERFACE_IP:-} export PROVIDER_NETWORK_GATEWAY= #export PROVIDER_NETWORK_DNS="8.8.8.8" export PROVIDER_NETWORK_DNS= |
Running
After configuring, Node inventory file and setting files. Please run "make install" from the ICN parent directory as shown below:
...
- All the software required to run the bootstrap cluster is being downloaded and installed
- Kubernetes cluster to maintain the Bootstrap cluster and all the servers in the edge location is installed
- Metla3 specific network configuration such as local DHCP server networking for each location, Ironic networking for both provisioning network and IPMI LAN network is identified identified
Virtual Deployment Guide
Standard Deployment Overview
...