Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
# lsb_release -rs
16.04
# docker --version
Docker version 1.13.1, build 092cba3 

For behind Proxy configure docker to use proxy

Code Block
mkdir /etc/systemd/system/docker.service.d
touch /etc/systemd/system/docker.service.d/http-proxy.conf
echo '[Service]
Environment="HTTP_PROXY=<proxy>"
Environment="HTTPS_PROXY=<proxy>"' > /etc/systemd/system/docker.service.d/http-proxy.conf
systemctl daemon-reload
systemctl restart docker
docker info

...


Ensure Python 2, specifically version 2.7.12 or later is installed. Ensure the latest versions of sshpassxorriso, and python-requests are installed. Also install make, gcc


Code Block
languagebash
# python --version
# Python 2.7.12 
# apt install --upgrade sshpass xorriso 
python-requests Reading package lists... Done Building dependency tree Reading state information... Done python-requests is already the newest version (2.9.1-3). sshpass is already the newest version (1.05-1). xorriso is already the newest version (1.4.2-4ubuntu1). 0 upgraded, 0 newly installed, 0 to remove and 107 not upgraded
# apt install make gcc

Network Connectivity 

The Build Server must have connectivity to the Bare Metal Server iDRAC interface on ports 80 (http) and 443 (https).

  • The Bare Metal Server must be reachable from the Build Server.
  • The Build Server and Bare Metal Server primary networks must have one of the following characteristics:
    • The networks must be located on the same L2 network, or
    • DHCP requests must be forwarded from the Bare Metal Server primary network interface to the Build Server (e.g., via a DHCP relay/helper).

Specific steps to achieve this connectivity are beyond the scope of this guide. However, some verification can be performed. 

First, verify that at least ports 80 and 443 are open on the Bare Metal Server iDRAC interface: 

Code Block
languagebash
# nmap -sS 192.168.41.44 
Starting Nmap 7.01 ( https://nmap.org ) at 2018-07-10 13:55 UTC Nmap scan report for
Code Block
languagebash
# python --version
# Python 2.7.12 
# apt install --upgrade sshpass xorriso 
python-requests Reading package lists... Done Building dependency tree Reading state information... Done python-requests is already the newest version (2.9.1-3). sshpass is already the newest version (1.05-1). xorriso is already the newest version (1.4.2-4ubuntu1). 0 upgraded, 0 newly installed, 0 to remove and 107 not upgraded
# apt install make gcc

Network Connectivity 

The Build Server must have connectivity to the Bare Metal Server iDRAC interface on ports 80 (http) and 443 (https).

  • The Bare Metal Server must be reachable from the Build Server.
  • The Build Server and Bare Metal Server primary networks must have one of the following characteristics:
    • The networks must be located on the same L2 network, or
    • DHCP requests must be forwarded from the Bare Metal Server primary network interface to the Build Server (e.g., via a DHCP relay/helper).

Specific steps to achieve this connectivity are beyond the scope of this guide. However, some verification can be performed. 

First, verify that at least ports 80 and 443 are open on the Bare Metal Server iDRAC interface: 

Code Block
languagebash
# nmap -sS 192.168.41.44 
StartingHost Nmapis 7.01up ( https://nmap.org ) at 2018-07-10 13:55 UTC Nmap scan report for 192.168.41.44 Host is up (0.00085s latency). 0.00085s latency). Not shown: 996 closed ports PORT STATE SERVICE 22/tcp open ssh 80/tcp open http 443/tcp open https 5900/tcp open vnc Nmap done: 1 IP address (1 host up) scanned in 1.77 seconds

...

The Regional Controller Node installation is now complete.

## Prerequisites on regional controller node ##

  1. Login to regional controller node: ssh root@regional_node_ip
  2. Clone airship-treasuremap under /root:

git clone https://git.openstack.org/openstack/airship-treasuremap.git

cd /root/airship-treasuremap

git checkout 059857148ad142730b5a69374e44a988cac92378

git checkout -b stable

 

3. Install required components on regional controller node

        apt-get install python-pip

        python -m pip install --upgrade pip setuptools wheel   

        pip install --user jinja2 PyYAML

4. mkdir -p /var/log/yaml_builds

5. mkdir –p /opt/akraino/tools

...

Akraino Portal Operations

...