Improve Yardstick user-guide
[yardstick.git] / docs / testing / user / userguide / 04-installation.rst
1 .. This work is licensed under a Creative Commons Attribution 4.0 International
2 .. License.
3 .. http://creativecommons.org/licenses/by/4.0
4 .. (c) OPNFV, Ericsson AB, Huawei Technologies Co.,Ltd and others.
5
6 Yardstick Installation
7 ======================
8
9
10 Abstract
11 --------
12
13 Yardstick supports installation by Docker or directly in Ubuntu. The
14 installation procedure for Docker and direct installation are detailed in
15 the sections below.
16
17 To use Yardstick you should have access to an OpenStack environment, with at
18 least Nova, Neutron, Glance, Keystone and Heat installed.
19
20 The steps needed to run Yardstick are:
21
22 1. Install Yardstick.
23 2. Load OpenStack environment variables.
24 #. Create Yardstick flavor.
25 #. Build a guest image and load it into the OpenStack environment.
26 #. Create the test configuration ``.yaml`` file and run the test case/suite.
27
28
29 Prerequisites
30 -------------
31
32 The OPNFV deployment is out of the scope of this document and can be found `here <http://artifacts.opnfv.org/opnfvdocs/colorado/docs/configguide/index.html>`_. The OPNFV platform is considered as the System Under Test (SUT) in this document.
33
34 Several prerequisites are needed for Yardstick:
35
36 #. A Jumphost to run Yardstick on
37 #. A Docker daemon or a virtual environment installed on the Jumphost
38 #. A public/external network created on the SUT
39 #. Connectivity from the Jumphost to the SUT public/external network
40
41 **NOTE:** *Jumphost* refers to any server which meets the previous
42 requirements. Normally it is the same server from where the OPNFV
43 deployment has been triggered.
44
45 **WARNING:** Connectivity from Jumphost is essential and it is of paramount
46 importance to make sure it is working before even considering to install
47 and run Yardstick. Make also sure you understand how your networking is
48 designed to work.
49
50 **NOTE:** If your Jumphost is operating behind a company http proxy and/or
51 Firewall, please consult first the section `Proxy Support (**Todo**)`_, towards
52 the end of this document. That section details some tips/tricks which
53 *may* be of help in a proxified environment.
54
55
56 Install Yardstick using Docker (**recommended**)
57 ---------------------------------------------------
58
59 Yardstick has a Docker image. It is recommended to use this Docker image to run Yardstick test.
60
61 Prepare the Yardstick container
62 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
63
64 .. _dockerhub: https://hub.docker.com/r/opnfv/yardstick/
65
66 Install docker on your guest system with the following command, if not done yet::
67
68   wget -qO- https://get.docker.com/ | sh
69
70 Pull the Yardstick Docker image (``opnfv/yardstick``) from the public dockerhub
71 registry under the OPNFV account: dockerhub_, with the following docker
72 command::
73
74   docker pull opnfv/yardstick:stable
75
76 After pulling the Docker image, check that it is available with the
77 following docker command::
78
79   [yardsticker@jumphost ~]$ docker images
80   REPOSITORY         TAG       IMAGE ID        CREATED      SIZE
81   opnfv/yardstick    stable    a4501714757a    1 day ago    915.4 MB
82
83 Run the Docker image to get a Yardstick container::
84
85   docker run -itd --privileged -v /var/run/docker.sock:/var/run/docker.sock -p 8888:5000 -e INSTALLER_IP=192.168.200.2 -e INSTALLER_TYPE=compass --name yardstick opnfv/yardstick:stable
86
87 Note:
88
89 +----------------------------------------------+------------------------------+
90 | parameters                                   | Detail                       |
91 +==============================================+==============================+
92 | -itd                                         | -i: interactive, Keep STDIN  |
93 |                                              | open even if not attached.   |
94 |                                              | -t: allocate a pseudo-TTY.   |
95 |                                              | -d: run container in         |
96 |                                              | detached mode, in the        |
97 |                                              | background.                  |
98 +----------------------------------------------+------------------------------+
99 | --privileged                                 | If you want to build         |
100 |                                              | ``yardstick-image`` in       |
101 |                                              | Yardstick container, this    |
102 |                                              | parameter is needed.         |
103 +----------------------------------------------+------------------------------+
104 | -e INSTALLER_IP=192.168.200.2                | If you want to use yardstick |
105 |                                              | env prepare command(or       |
106 | -e INSTALLER_TYPE=compass                    | related API) to load the     |
107 |                                              | images that Yardstick needs, |
108 |                                              | these parameters should be   |
109 |                                              | provided.                    |
110 |                                              | The INSTALLER_IP and         |
111 |                                              | INSTALLER_TYPE are depending |
112 |                                              | on your OpenStack installer. |
113 |                                              | Currently Apex, Compass,     |
114 |                                              | Fuel and Joid are supported. |
115 |                                              | If you use other installers, |
116 |                                              | such as devstack, these      |
117 |                                              | parameters can be ignores.   |
118 +----------------------------------------------+------------------------------+
119 | -p 8888:5000                                 | If you want to call          |
120 |                                              | Yardstick API out of         |
121 |                                              | Yardstick container, this    |
122 |                                              | parameter is needed.         |
123 +----------------------------------------------+------------------------------+
124 | -v /var/run/docker.sock:/var/run/docker.sock | If you want to use yardstick |
125 |                                              | env grafana/influxdb to      |
126 |                                              | create a grafana/influxdb    |
127 |                                              | container out of Yardstick   |
128 |                                              | container, this parameter is |
129 |                                              | needed.                      |
130 +----------------------------------------------+------------------------------+
131 | --name yardstick                             | The name for this container, |
132 |                                              | not needed and can be        |
133 |                                              | defined by the user.         |
134 +----------------------------------------------+------------------------------+
135
136 Configure the Yardstick container environment
137 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
138
139 There are three ways to configure environments for running Yardstick, which will be shown in the following sections. Before that, enter the Yardstick container::
140
141   docker exec -it yardstick /bin/bash
142
143 and then configure Yardstick environments in the Yardstick container.
144
145 The first way (**recommended**)
146 ###################################
147
148 In the Yardstick container, the Yardstick repository is located in the ``/home/opnfv/repos`` directory. Yardstick provides a CLI to prepare OpenStack environment variables and create Yardstick flavor and guest images automatically::
149
150   yardstick env prepare
151
152 **NOTE**: The above command works for four OPNFV installers -- **Apex**, **Compass**, **Fuel** and **Joid**.
153 For Non-OPNFV installer OpenStack environment, the above command can also be used to configure the environment.
154 But before running the above command in a Non-OPNFV installer environment, it is necessary to create the /etc/yardstick/openstack.creds file and
155 save OpenStack environment variables in it. For details of the required OpenStack environment variables please refer to
156 section **Export OpenStack environment variables**
157
158 The env prepare command may take up to 6-8 minutes to finish building
159 yardstick-image and other environment preparation. Meanwhile if you wish to
160 monitor the env prepare process, you can enter the Yardstick container in a new
161 terminal window and execute the following command::
162
163   tail -f /var/log/yardstick/uwsgi.log
164
165
166 The second way
167 ################
168
169 Export OpenStack environment variables
170 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
171
172 Before running Yardstick it is necessary to export OpenStack environment variables::
173
174   source openrc
175
176 Environment variables in the ``openrc`` file have to include at least:
177
178 * ``OS_AUTH_URL``
179 * ``OS_USERNAME``
180 * ``OS_PASSWORD``
181 * ``OS_TENANT_NAME``
182 * ``EXTERNAL_NETWORK``
183
184 A sample `openrc` file may look like this::
185
186   export OS_PASSWORD=console
187   export OS_TENANT_NAME=admin
188   export OS_AUTH_URL=http://172.16.1.222:35357/v2.0
189   export OS_USERNAME=admin
190   export OS_VOLUME_API_VERSION=2
191   export EXTERNAL_NETWORK=net04_ext
192
193 Manually create Yardstick falvor and guest images
194 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
195
196 Before executing Yardstick test cases, make sure that Yardstick flavor and guest image are available in OpenStack. Detailed steps about creating the Yardstick flavor and building the Yardstick guest image can be found below.
197
198 Most of the sample test cases in Yardstick are using an OpenStack flavor called
199 ``yardstick-flavor`` which deviates from the OpenStack standard ``m1.tiny`` flavor by the disk size - instead of 1GB it has 3GB. Other parameters are the same as in ``m1.tiny``.
200
201 Create ``yardstick-flavor``::
202
203   nova flavor-create yardstick-flavor 100 512 3 1
204
205 Most of the sample test cases in Yardstick are using a guest image called
206 ``yardstick-image`` which deviates from an Ubuntu Cloud Server image
207 containing all the required tools to run test cases supported by Yardstick.
208 Yardstick has a tool for building this custom image. It is necessary to have
209 ``sudo`` rights to use this tool.
210
211 Also you may need install several additional packages to use this tool, by
212 follwing the commands below::
213
214   sudo apt-get update && sudo apt-get install -y qemu-utils kpartx
215
216 This image can be built using the following command in the directory where Yardstick is installed::
217
218   sudo tools/yardstick-img-modify tools/ubuntu-server-cloudimg-modify.sh
219
220 **Warning:** Before building the guest image inside the Yardstick container, make sure the container is granted with privilege. The script will create files by default in ``/tmp/workspace/yardstick`` and the files will be owned by root!
221
222 The created image can be added to OpenStack using the ``glance image-create`` or via the OpenStack Dashboard. Example command is::
223
224   glance --os-image-api-version 1 image-create \
225   --name yardstick-image --is-public true \
226   --disk-format qcow2 --container-format bare \
227   --file /tmp/workspace/yardstick/yardstick-image.img
228
229 .. _`Cirros 0.3.5`: http://download.cirros-cloud.net/0.3.5/cirros-0.3.5-x86_64-disk.img
230 .. _`Ubuntu 16.04`: https://cloud-images.ubuntu.com/xenial/current/xenial-server-cloudimg-amd64-disk1.img
231
232 Some Yardstick test cases use a `Cirros 0.3.5`_ image and/or a `Ubuntu 16.04`_ image. Add Cirros and Ubuntu images to OpenStack::
233
234   openstack image create \
235       --disk-format qcow2 \
236       --container-format bare \
237       --file $cirros_image_file \
238       cirros-0.3.5
239
240   openstack image create \
241       --disk-format qcow2 \
242       --container-format bare \
243       --file $ubuntu_image_file \
244       Ubuntu-16.04
245
246
247 The third way
248 ################
249
250 Similar to the second way, the first step is also to `Export OpenStack environment variables`_. Then the following steps should be done.
251
252 Automatically create Yardstcik flavor and guest images
253 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
254
255 Yardstick has a script for automatically creating Yardstick flavor and building
256 Yardstick guest images. This script is mainly used for CI and can be also used in the local environment::
257
258   source $YARDSTICK_REPO_DIR/tests/ci/load_images.sh
259
260
261 Delete the Yardstick container
262 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
263
264 If you want to uninstall Yardstick, just delete the Yardstick container::
265
266    docker stop yardstick && docker rm yardstick
267
268
269 Install Yardstick directly in Ubuntu
270 ---------------------------------------
271
272 .. _install-framework:
273
274 Alternatively you can install Yardstick framework directly in Ubuntu or in an Ubuntu Docker image. No matter which way you choose to install Yardstick, the following installation steps are identical.
275
276 If you choose to use the Ubuntu Docker image, you can pull the Ubuntu
277 Docker image from Docker hub::
278
279   docker pull ubuntu:16.04
280
281
282 Install Yardstick
283 ^^^^^^^^^^^^^^^^^^^^^
284
285 Prerequisite preparation::
286
287   apt-get update && apt-get install -y git python-setuptools python-pip
288   easy_install -U setuptools==30.0.0
289   pip install appdirs==1.4.0
290   pip install virtualenv
291
292 Create a virtual environment::
293
294   virtualenv ~/yardstick_venv
295   export YARDSTICK_VENV=~/yardstick_venv
296   source ~/yardstick_venv/bin/activate
297
298 Download the source code and install Yardstick from it::
299
300   git clone https://gerrit.opnfv.org/gerrit/yardstick
301   export YARDSTICK_REPO_DIR=~/yardstick
302   cd yardstick
303   ./install.sh
304
305
306 Configure the Yardstick environment (**Todo**)
307 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
308
309 For installing Yardstick directly in Ubuntu, the ``yardstick env`` command is not available. You need to prepare OpenStack environment variables and create Yardstick flavor and guest images manually.
310
311
312 Uninstall Yardstick
313 ^^^^^^^^^^^^^^^^^^^^^^
314
315 For unistalling Yardstick, just delete the virtual environment::
316
317   rm -rf ~/yardstick_venv
318
319
320 Verify the installation
321 -----------------------------
322
323 It is recommended to verify that Yardstick was installed successfully
324 by executing some simple commands and test samples. Before executing Yardstick
325 test cases make sure ``yardstick-flavor`` and ``yardstick-image`` can be found in OpenStack and the ``openrc`` file is sourced. Below is an example
326 invocation of Yardstick ``help`` command and ``ping.py`` test sample::
327
328   yardstick -h
329   yardstick task start samples/ping.yaml
330
331 **NOTE:** The above commands could be run in both the Yardstick container and the Ubuntu directly.
332
333 Each testing tool supported by Yardstick has a sample configuration file.
334 These configuration files can be found in the ``samples`` directory.
335
336 Default location for the output is ``/tmp/yardstick.out``.
337
338
339 Deploy InfluxDB and Grafana using Docker
340 -------------------------------------------
341
342 Without InfluxDB, Yardstick stores results for runnning test case in the file
343 ``/tmp/yardstick.out``. However, it's unconvenient to retrieve and display
344 test results. So we will show how to use InfluxDB to store data and use
345 Grafana to display data in the following sections.
346
347 Automatically deploy InfluxDB and Grafana containers (**recommended**)
348 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
349
350 Firstly, enter the Yardstick container::
351
352   docker exec -it yardstick /bin/bash
353
354 Secondly, create InfluxDB container and configure with the following command::
355
356   yardstick env influxdb
357
358 Thirdly, create and configure Grafana container::
359
360   yardstick env grafana
361
362 Then you can run a test case and visit http://host_ip:3000 (``admin``/``admin``) to see the results.
363
364 **NOTE:** Executing ``yardstick env`` command to deploy InfluxDB and Grafana requires Jumphost's docker API version => 1.24. Run the following command to check the docker API version on the Jumphost::
365
366   docker version
367
368 Manually deploy InfluxDB and Grafana containers
369 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
370
371 You could also deploy influxDB and Grafana containers manually on the Jumphost.
372 The following sections show how to do.
373
374 .. pull docker images
375
376 Pull docker images
377 ####################
378
379 ::
380
381   docker pull tutum/influxdb
382   docker pull grafana/grafana
383
384 Run and configure influxDB
385 ###############################
386
387 Run influxDB::
388
389   docker run -d --name influxdb \
390   -p 8083:8083 -p 8086:8086 --expose 8090 --expose 8099 \
391   tutum/influxdb
392   docker exec -it influxdb bash
393
394 Configure influxDB::
395
396   influx
397   >CREATE USER root WITH PASSWORD 'root' WITH ALL PRIVILEGES
398   >CREATE DATABASE yardstick;
399   >use yardstick;
400   >show MEASUREMENTS;
401
402 Run and configure Grafana
403 ###############################
404
405 Run Grafana::
406
407   docker run -d --name grafana -p 3000:3000 grafana/grafana
408
409 Log on http://{YOUR_IP_HERE}:3000 using ``admin``/``admin`` and configure database resource to be ``{YOUR_IP_HERE}:8086``.
410
411 .. image:: images/Grafana_config.png
412    :width: 800px
413    :alt: Grafana data source configration
414
415 Configure ``yardstick.conf``
416 ##############################
417
418 ::
419
420   docker exec -it yardstick /bin/bash
421   cp etc/yardstick/yardstick.conf.sample /etc/yardstick/yardstick.conf
422   vi /etc/yardstick/yardstick.conf
423
424 Modify ``yardstick.conf``::
425
426   [DEFAULT]
427   debug = True
428   dispatcher = influxdb
429
430   [dispatcher_influxdb]
431   timeout = 5
432   target = http://{YOUR_IP_HERE}:8086
433   db_name = yardstick
434   username = root
435   password = root
436
437 Now you can run Yardstick test cases and store the results in influxDB.
438
439
440 Deploy InfluxDB and Grafana directly in Ubuntu (**Todo**)
441 -----------------------------------------------------------
442
443
444 Run Yardstick in a local environment
445 ------------------------------------
446
447 We also have a guide about how to run Yardstick in a local environment.
448 This work is contributed by Tapio Tallgren.
449 You can find this guide at `here <https://wiki.opnfv.org/display/yardstick/How+to+run+Yardstick+in+a+local+environment>`_.
450
451
452 Create a test suite for Yardstick
453 ------------------------------------
454
455 A test suite in yardstick is a yaml file which include one or more test cases.
456 Yardstick is able to support running test suite task, so you can customize your
457 own test suite and run it in one task.
458
459 ``tests/opnfv/test_suites`` is the folder where Yardstick puts CI test suite. A typical test suite is like below (the ``fuel_test_suite.yaml`` example)::
460
461   ---
462   # Fuel integration test task suite
463
464   schema: "yardstick:suite:0.1"
465
466   name: "fuel_test_suite"
467   test_cases_dir: "samples/"
468   test_cases:
469   -
470     file_name: ping.yaml
471   -
472     file_name: iperf3.yaml
473
474 As you can see, there are two test cases in the ``fuel_test_suite.yaml``. The
475 ``schema`` and the ``name`` must be specified. The test cases should be listed
476 via the tag ``test_cases`` and their relative path is also marked via the tag
477 ``test_cases_dir``.
478
479 Yardstick test suite also supports constraints and task args for each test
480 case. Here is another sample (the ``os-nosdn-nofeature-ha.yaml`` example) to
481 show this, which is digested from one big test suite::
482
483  ---
484
485  schema: "yardstick:suite:0.1"
486
487  name: "os-nosdn-nofeature-ha"
488  test_cases_dir: "tests/opnfv/test_cases/"
489  test_cases:
490  -
491      file_name: opnfv_yardstick_tc002.yaml
492  -
493      file_name: opnfv_yardstick_tc005.yaml
494  -
495      file_name: opnfv_yardstick_tc043.yaml
496         constraint:
497            installer: compass
498            pod: huawei-pod1
499         task_args:
500            huawei-pod1: '{"pod_info": "etc/yardstick/.../pod.yaml",
501            "host": "node4.LF","target": "node5.LF"}'
502
503 As you can see in test case ``opnfv_yardstick_tc043.yaml``, there are two
504 tags, ``constraint`` and ``task_args``. ``constraint`` is to specify which
505 installer or pod it can be run in the CI environment. ``task_args`` is to
506 specify the task arguments for each pod.
507
508 All in all, to create a test suite in Yardstick, you just need to create a
509 yaml file and add test cases, constraint or task arguments if necessary.
510
511
512 Proxy Support (**Todo**)
513 ---------------------------
514