Add spec cpu2006 test case
[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   export YARD_IMG_ARCH='amd64'
219   sudo echo "Defaults env_keep += \'YARD_IMG_ARCH\'" >> /etc/sudoers
220   sudo tools/yardstick-img-modify tools/ubuntu-server-cloudimg-modify.sh
221
222 **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!
223
224 The created image can be added to OpenStack using the ``glance image-create`` or via the OpenStack Dashboard. Example command is::
225
226   glance --os-image-api-version 1 image-create \
227   --name yardstick-image --is-public true \
228   --disk-format qcow2 --container-format bare \
229   --file /tmp/workspace/yardstick/yardstick-image.img
230
231 .. _`Cirros 0.3.5`: http://download.cirros-cloud.net/0.3.5/cirros-0.3.5-x86_64-disk.img
232 .. _`Ubuntu 16.04`: https://cloud-images.ubuntu.com/xenial/current/xenial-server-cloudimg-amd64-disk1.img
233
234 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::
235
236   openstack image create \
237       --disk-format qcow2 \
238       --container-format bare \
239       --file $cirros_image_file \
240       cirros-0.3.5
241
242   openstack image create \
243       --disk-format qcow2 \
244       --container-format bare \
245       --file $ubuntu_image_file \
246       Ubuntu-16.04
247
248
249 The third way
250 ################
251
252 Similar to the second way, the first step is also to `Export OpenStack environment variables`_. Then the following steps should be done.
253
254 Automatically create Yardstcik flavor and guest images
255 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
256
257 Yardstick has a script for automatically creating Yardstick flavor and building
258 Yardstick guest images. This script is mainly used for CI and can be also used in the local environment::
259
260   source $YARDSTICK_REPO_DIR/tests/ci/load_images.sh
261
262
263 Delete the Yardstick container
264 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
265
266 If you want to uninstall Yardstick, just delete the Yardstick container::
267
268    docker stop yardstick && docker rm yardstick
269
270
271 Install Yardstick directly in Ubuntu
272 ---------------------------------------
273
274 .. _install-framework:
275
276 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.
277
278 If you choose to use the Ubuntu Docker image, you can pull the Ubuntu
279 Docker image from Docker hub::
280
281   docker pull ubuntu:16.04
282
283
284 Install Yardstick
285 ^^^^^^^^^^^^^^^^^^^^^
286
287 Prerequisite preparation::
288
289   apt-get update && apt-get install -y git python-setuptools python-pip
290   easy_install -U setuptools==30.0.0
291   pip install appdirs==1.4.0
292   pip install virtualenv
293
294 Create a virtual environment::
295
296   virtualenv ~/yardstick_venv
297   export YARDSTICK_VENV=~/yardstick_venv
298   source ~/yardstick_venv/bin/activate
299
300 Download the source code and install Yardstick from it::
301
302   git clone https://gerrit.opnfv.org/gerrit/yardstick
303   export YARDSTICK_REPO_DIR=~/yardstick
304   cd yardstick
305   ./install.sh
306
307
308 Configure the Yardstick environment (**Todo**)
309 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
310
311 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.
312
313
314 Uninstall Yardstick
315 ^^^^^^^^^^^^^^^^^^^^^^
316
317 For unistalling Yardstick, just delete the virtual environment::
318
319   rm -rf ~/yardstick_venv
320
321
322 Verify the installation
323 -----------------------------
324
325 It is recommended to verify that Yardstick was installed successfully
326 by executing some simple commands and test samples. Before executing Yardstick
327 test cases make sure ``yardstick-flavor`` and ``yardstick-image`` can be found in OpenStack and the ``openrc`` file is sourced. Below is an example
328 invocation of Yardstick ``help`` command and ``ping.py`` test sample::
329
330   yardstick -h
331   yardstick task start samples/ping.yaml
332
333 **NOTE:** The above commands could be run in both the Yardstick container and the Ubuntu directly.
334
335 Each testing tool supported by Yardstick has a sample configuration file.
336 These configuration files can be found in the ``samples`` directory.
337
338 Default location for the output is ``/tmp/yardstick.out``.
339
340
341 Deploy InfluxDB and Grafana using Docker
342 -------------------------------------------
343
344 Without InfluxDB, Yardstick stores results for runnning test case in the file
345 ``/tmp/yardstick.out``. However, it's unconvenient to retrieve and display
346 test results. So we will show how to use InfluxDB to store data and use
347 Grafana to display data in the following sections.
348
349 Automatically deploy InfluxDB and Grafana containers (**recommended**)
350 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
351
352 Firstly, enter the Yardstick container::
353
354   docker exec -it yardstick /bin/bash
355
356 Secondly, create InfluxDB container and configure with the following command::
357
358   yardstick env influxdb
359
360 Thirdly, create and configure Grafana container::
361
362   yardstick env grafana
363
364 Then you can run a test case and visit http://host_ip:3000 (``admin``/``admin``) to see the results.
365
366 **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::
367
368   docker version
369
370 Manually deploy InfluxDB and Grafana containers
371 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
372
373 You could also deploy influxDB and Grafana containers manually on the Jumphost.
374 The following sections show how to do.
375
376 .. pull docker images
377
378 Pull docker images
379 ####################
380
381 ::
382
383   docker pull tutum/influxdb
384   docker pull grafana/grafana
385
386 Run and configure influxDB
387 ###############################
388
389 Run influxDB::
390
391   docker run -d --name influxdb \
392   -p 8083:8083 -p 8086:8086 --expose 8090 --expose 8099 \
393   tutum/influxdb
394   docker exec -it influxdb bash
395
396 Configure influxDB::
397
398   influx
399   >CREATE USER root WITH PASSWORD 'root' WITH ALL PRIVILEGES
400   >CREATE DATABASE yardstick;
401   >use yardstick;
402   >show MEASUREMENTS;
403
404 Run and configure Grafana
405 ###############################
406
407 Run Grafana::
408
409   docker run -d --name grafana -p 3000:3000 grafana/grafana
410
411 Log on http://{YOUR_IP_HERE}:3000 using ``admin``/``admin`` and configure database resource to be ``{YOUR_IP_HERE}:8086``.
412
413 .. image:: images/Grafana_config.png
414    :width: 800px
415    :alt: Grafana data source configration
416
417 Configure ``yardstick.conf``
418 ##############################
419
420 ::
421
422   docker exec -it yardstick /bin/bash
423   cp etc/yardstick/yardstick.conf.sample /etc/yardstick/yardstick.conf
424   vi /etc/yardstick/yardstick.conf
425
426 Modify ``yardstick.conf``::
427
428   [DEFAULT]
429   debug = True
430   dispatcher = influxdb
431
432   [dispatcher_influxdb]
433   timeout = 5
434   target = http://{YOUR_IP_HERE}:8086
435   db_name = yardstick
436   username = root
437   password = root
438
439 Now you can run Yardstick test cases and store the results in influxDB.
440
441
442 Deploy InfluxDB and Grafana directly in Ubuntu (**Todo**)
443 -----------------------------------------------------------
444
445
446 Run Yardstick in a local environment
447 ------------------------------------
448
449 We also have a guide about how to run Yardstick in a local environment.
450 This work is contributed by Tapio Tallgren.
451 You can find this guide at `here <https://wiki.opnfv.org/display/yardstick/How+to+run+Yardstick+in+a+local+environment>`_.
452
453
454 Create a test suite for Yardstick
455 ------------------------------------
456
457 A test suite in yardstick is a yaml file which include one or more test cases.
458 Yardstick is able to support running test suite task, so you can customize your
459 own test suite and run it in one task.
460
461 ``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)::
462
463   ---
464   # Fuel integration test task suite
465
466   schema: "yardstick:suite:0.1"
467
468   name: "fuel_test_suite"
469   test_cases_dir: "samples/"
470   test_cases:
471   -
472     file_name: ping.yaml
473   -
474     file_name: iperf3.yaml
475
476 As you can see, there are two test cases in the ``fuel_test_suite.yaml``. The
477 ``schema`` and the ``name`` must be specified. The test cases should be listed
478 via the tag ``test_cases`` and their relative path is also marked via the tag
479 ``test_cases_dir``.
480
481 Yardstick test suite also supports constraints and task args for each test
482 case. Here is another sample (the ``os-nosdn-nofeature-ha.yaml`` example) to
483 show this, which is digested from one big test suite::
484
485  ---
486
487  schema: "yardstick:suite:0.1"
488
489  name: "os-nosdn-nofeature-ha"
490  test_cases_dir: "tests/opnfv/test_cases/"
491  test_cases:
492  -
493      file_name: opnfv_yardstick_tc002.yaml
494  -
495      file_name: opnfv_yardstick_tc005.yaml
496  -
497      file_name: opnfv_yardstick_tc043.yaml
498         constraint:
499            installer: compass
500            pod: huawei-pod1
501         task_args:
502            huawei-pod1: '{"pod_info": "etc/yardstick/.../pod.yaml",
503            "host": "node4.LF","target": "node5.LF"}'
504
505 As you can see in test case ``opnfv_yardstick_tc043.yaml``, there are two
506 tags, ``constraint`` and ``task_args``. ``constraint`` is to specify which
507 installer or pod it can be run in the CI environment. ``task_args`` is to
508 specify the task arguments for each pod.
509
510 All in all, to create a test suite in Yardstick, you just need to create a
511 yaml file and add test cases, constraint or task arguments if necessary.
512
513
514 Proxy Support (**Todo**)
515 ---------------------------
516