summaryrefslogtreecommitdiffstats
path: root/docs/configguide/installerconfig.rst
blob: f02bf89e04e15152c3007bffeb54e2ebeb05f544 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
==================
JOID Configuration 
==================



Bare Metal Installations:
^^^^^^^^^^^^^^^^^^^^^^^^^
Requirements as per Pharos:
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Networking:
^^^^^^^^^^^
**Minimum 2 networks**

| ``1. First for Admin network with gateway to access external network``
| ``2. Second for public network to consume by tenants for floating ips``

**NOTE: JOID support multiple isolated networks for data as well as storage.
Based on your network options for Openstack.**

**Minimum 6 physical servers**

1. Jump host server:

| ``   Minimum H/W Spec needed``
| ``  CPU cores: 16``
| ``  Memory: 32 GB``
| ``  Hard Disk: 1(250 GB)``
| ``  NIC: eth0(Admin, Management), eth1 (external network)``

2. Control node servers (minimum 3):

| ``  Minimum H/W Spec``
| ``  CPU cores: 16``
| ``  Memory: 32 GB``
| ``  Hard Disk: 1(500 GB)``
| ``  NIC: eth0(Admin, Management), eth1 (external network)``

3. Compute node servers (minimum 2):

| ``  Minimum H/W Spec``
| ``  CPU cores: 16``
| ``  Memory: 32 GB``
| ``  Hard Disk: 1(1 TB) this includes the space for ceph as well``
| ``  NIC: eth0(Admin, Management), eth1 (external network)``

**NOTE: Above configuration is minimum and for better performance and usage of
the Openstack please consider higher spec for each nodes.**

Make sure all servers are connected to top of rack switch and configured accordingly. No DHCP server should be up and configured. Only gateway at eth0 and eth1 network should be configure to access the network outside your lab.

Jump node configuration:
~~~~~~~~~~~~~~~~~~~~~~~~

1. Install Ubuntu 14.04 LTS server version of OS on the nodes.
2. Install the git and bridge-utils packages on the server and configure minimum two bridges on jump host:

brAdm and brPublic cat /etc/network/interfaces

| ``   # The loopback network interface``
| ``   auto lo``
| ``   iface lo inet loopback``
| ``   iface eth0 inet manual``
| ``   auto brAdm ``
| ``   iface brAdm inet static``
| ``       address 10.4.1.1``
| ``       netmask 255.255.248.0``
| ``       network 10.4.0.0``
| ``       broadcast 10.4.7.255``
| ``       gateway 10.4.0.1``
| ``       # dns-* options are implemented by the resolvconf package, if installed``
| ``       dns-nameservers 10.4.0.2``
| ``       bridge_ports eth0``
| ``   auto brPublic``
| ``   iface brPublic inet static``
| ``       address 10.2.66.2``
| ``       netmask 255.255.255.0``
| ``       bridge_ports eth2``

**NOTE: If you choose to use the separate network for management, data and
storage then you need to create bridge for each interface. In case of VLAN tags
use the appropriate network on jump-host depend upon VLAN ID on the interface.**


Configure JOID for your lab
^^^^^^^^^^^^^^^^^^^^^^^^^^^

**Get the joid code from gerritt**

*git clone https://gerrit.opnfv.org/gerrit/p/joid.git*

*cd joid/ci*

**Enable MAAS**

- Create a directory in maas/<company name>/<pod number>/ for example

*mkdir maas/intel/pod7/*


- Copy files from pod5 to pod7

*cp maas/intel/pod5/\* maas/intel/pod7/*

4 files will get copied: deployment.yaml environments.yaml
interfaces.host lxc-add-more-interfaces

deployment.yaml file
^^^^^^^^^^^^^^^^^^^^

Prerequisite:
~~~~~~~~~~~~~

1. Make sure Jump host node has been configured with bridges on each interface,
so that appropriate MAAS and JUJU bootstrap VM can be created. For example if
you have three network admin, data and public then I would suggest to give names
like brAdm, brData and brPublic.
2. You have information about the node MAC address and power management details (IPMI IP, username, password) of the nodes used for control and compute node.

modify deployment.yaml
^^^^^^^^^^^^^^^^^^^^^^

This file has been used to configure your maas and bootstrap node in a
VM. Comments in the file are self explanatory and we expect fill up the
information according to match lab infrastructure information. Sample
deployment.yaml can be found at
https://gerrit.opnfv.org/gerrit/gitweb?p=joid.git;a=blob;f=ci/maas/intel/pod5/deployment.yaml

modify joid/ci/01-deploybundle.sh
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

under section case $3 add the intelpod7 section and make sure you have
information provided correctly. Before example consider your network has
192.168.1.0/24 your default network. and eth1 is on public network which
will be used to assign the floating ip.

| ``    'intelpod7' )``
| ``       # As per your lab vip address list be deafult uses 10.4.1.11 - 10.4.1.20``
| ``        sed -i -- 's/10.4.1.1/192.168.1.2/g' ./bundles.yaml``
| ``       # Choose the external port to go out from gateway to use.``
| ``        sed -i -- 's/#        "ext-port": "eth1"/        "ext-port": "eth1"/g' ./bundles.yaml``
| ``       ;;``

NOTE: If you are using seprate data network then add this line below
also along with other changes. which represents network 10.4.9.0/24 will
be used for data network for openstack

``        sed -i -- 's/#os-data-network: 10.4.8.0\/21/os-data-network: 10.4.9.0\/24/g' ./bundles.yaml``

modify joid/ci/02-maasdeploy.sh
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

under section case $1 add the intelpod7 section and make sure you have
information provided correctly.

| ``     'intelpod7' )``
| ``       cp maas/intel/pod7/deployment.yaml ./deployment.yaml``
| ``       ;;``

NOTE: If you are using VLAN tags or more network for data and storage
then make sure you modify the case $1 section under Enable vlan
interface with maas appropriately. In the example below eth2 has been
used as separate data network for tenants in openstack with network
10.4.9.0/24 on compute and control nodes.

| ``   'intelpod7' )``
| ``       maas refresh``
| ``       enableautomodebyname eth2 AUTO "10.4.9.0/24" compute || true``
| ``       enableautomodebyname eth2 AUTO "10.4.9.0/24" control || true``
| ``       ;;``


MAAS Install
~~~~~~~~~~~~

After integrating the changes as mentioned above run the MAAS install.
Suppose you name the integration lab as intelpod7 then run the below
commands to start the MAAS deployment.

``   ./02-maasdeploy.sh intelpod7``

This will take approximately 40 minutes to couple hours depending on your
environment. This script will do the following:

1. Create 2 VMs (KVM).
2. Install MAAS in one of the VMs.
3. Configure the MAAS to enlist and commission a VM for Juju bootstrap node.
4. Configure the MAAS to enlist and commission bare metal servers.

When it's done, you should be able to view MAAS webpage (http://<MAAS IP>/MAAS) and see 1 bootstrap node and bare metal servers in the 'Ready' state on the nodes page.

Virtual deployment
~~~~~~~~~~~~~~~~~~
By default, just running the script ./02-maasdeploy.sh will automatically create the KVM VMs on a single machine and configure everything for you.

OPNFV Install
-------------
JOID allows you to deploy different combinations of OpenStack release and SDN solution in HA or non-HA mode.

For OpenStack, it supports Juno and Liberty. For SDN, it supports Openvswitch, OpenContrail, OpenDayLight and ONOS.

In addition to HA or non-HA mode, it also supports to deploy the latest from the development tree (tip).


The deploy.sh in the joid/ci directoy will do all the work for you. For example, the following deploy OpenStack Libery with OpenDayLight in a HA mode in the Intelpod7.


| ``   ./deploy.sh -o liberty -s odl -t ha -l intelpod7 -f none``
| ``   ``

By default, the SDN is Openvswitch, non-HA, Liberty, Intelpod5, OPNFV Brahmaputra release and ODL_L2 for the OPNFV feature.

Possible options for each choice are as follows:

| ``   [-s ``\ \ ``]``
| ``   nosdn: openvswitch only and no other SDN.``
| ``   odl: OpenDayLight Lithium version.``
| ``   opencontrail: OpenContrail SDN.``
| ``   onos: ONOS framework as SDN.``
| ``   ``
| ``   [-t ``\ \ ````
| ``   nonha: NO HA mode of Openstack.``
| ``   ha: HA mode of openstack.``
| ``    tip: the tip of the development.``
| ``   ``
| ``   [-o ``\ \ ``]``
| ``   juno: OpenStack Juno version.``
| ``   liberty: OpenStack Liberty version.``
| ``   ``
| ``   [-l ``\ \ ``] etc...``
| ``   default: For virtual deployment where installation will be done on KVM created using ./02-maasdeploy.sh``
| ``   intelpod5: Install on bare metal OPNFV pod5 of Intel lab.``
| ``   intelpod6``
| ``   orangepod2``
| ``   ..``
| ``   (other pods)``
| ``   Note: if you make changes as per your pod above then please use your pod.``
| ``   ``
| ``   [-f ``\ \ ``]``
| ``   none: no special feature will be enabled.``
| ``   ipv6: ipv6 will be enabled for tenant in openstack.``
| ``   ``


By default debug is enabled in script and error messages will be printed
on the SSH terminal where you are running the scripts.
It could take an hour to couple hours (max) to complete.

Is the deployment done successfully?
------------------------------------
Once juju-deployer is complete, use juju status to verify that all deployed unit are in the ready state.

| ``   juju status --format tabular``

Find the Openstack-dashboard IP address from the *juju status* output, and see if you can log in via browser. The username and password is admin/openstack.

Optionall, see if you can log in Juju GUI. Juju GUI is on the Juju bootstrap node which is the second VM you define in the 02-maasdeploy.sh. The username and password is admin/admin.

If you deploy ODL, OpenContrail or ONOS, find the IP address of the web UI and login. Please refer to each SDN bundle.yaml for username/password.

Troubleshoot
~~~~~~~~~~~~
To access to any deployed units, juju ssh for example to login into nova-compute unit and look for /var/log/juju/unit-<of interest> for more info.

| ``   juju ssh nova-compute/0``

Example:

| ``   ubuntu@R4N4B1:~$ juju ssh nova-compute/0``
| ``   Warning: Permanently added '172.16.50.60' (ECDSA) to the list of known hosts.``
| ``   Warning: Permanently added '3-r4n3b1-compute.maas' (ECDSA) to the list of known hosts.``
| ``   Welcome to Ubuntu 14.04.1 LTS (GNU/Linux 3.13.0-77-generic x86_64)``
| ``   ``
| ``    * Documentation:  https://help.ubuntu.com/``
| ``   <skipped>``
| ``   Last login: Tue Feb  2 21:23:56 2016 from bootstrap.maas``
| ``   ubuntu@3-R4N3B1-compute:~$ sudo -i``
| ``   root@3-R4N3B1-compute:~# cd /var/log/juju/``
| ``   root@3-R4N3B1-compute:/var/log/juju# ls``
| ``   machine-2.log  unit-ceilometer-agent-0.log  unit-ceph-osd-0.log  unit-neutron-contrail-0.log  unit-nodes-compute-0.log  unit-nova-compute-0.log  unit-ntp-0.log``
| ``   root@3-R4N3B1-compute:/var/log/juju#``

**By default juju will add the Ubuntu user keys for authentication into
the deployed server and only ssh access will be available.**

Once you resolve the error, go back to the jump host to rerun the charm hook with:

| ``   juju resolved --retry <unit>``