Merge "Concurrency testcases to be configured over cli"
[yardstick.git] / ansible / install.yaml
1 # Copyright (c) 2018 Intel Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 ---
15 - hosts: jumphost
16   become: yes
17   vars:
18     yardstick_dir: "{{ YARDSTICK_DIR | default('/home/opnfv/repos/yardstick') }}"
19     virtual_environment: "{{ VIRTUAL_ENVIRONMENT | default(False) }}"
20     nsb_dir: "{{ NSB_DIR | default('/opt/nsb_bin/') }}"
21
22   pre_tasks:
23
24     - name: Create NSB binaries directory, accessible to any user
25       file:
26         path: "{{ nsb_dir }}"
27         state: directory
28         owner: root
29         mode: 0777
30       when:
31         - installation_mode != inst_mode_container_pull
32
33   roles:
34     - add_repos_jumphost
35     - install_dependencies_jumphost
36     - { role: install_yardstick, when: installation_mode != inst_mode_container_pull }
37     - { role: configure_uwsgi, when: installation_mode != inst_mode_container_pull }
38     - { role: configure_nginx, when: installation_mode != inst_mode_container_pull }
39     - { role: configure_gui, when: installation_mode != inst_mode_container_pull }
40     - { role: download_trex, when: installation_mode != inst_mode_container_pull }
41     - { role: install_trex, when: installation_mode != inst_mode_container_pull }
42     - { role: configure_rabbitmq, when: installation_mode == inst_mode_baremetal }
43
44
45   post_tasks:
46
47     - service:
48         name: nginx
49         state: restarted
50       when: installation_mode == inst_mode_baremetal
51
52     - shell: uwsgi -i /etc/yardstick/yardstick.ini
53       when: installation_mode == inst_mode_baremetal
54
55
56 - name: Prepare baremetal and standalone servers
57   hosts: yardstick-baremetal,yardstick-standalone
58   become: yes
59   vars_files:
60     - roles/download_dpdk/defaults/main.yml
61   environment: "{{ proxy_env }}"
62
63   roles:
64     - add_custom_repos
65     - role: set_package_installer_proxy
66       when: proxy_env is defined and proxy_env
67     # can't update grub in chroot/docker
68     - enable_hugepages_on_boot
69     - enable_iommu_on_boot
70     # needed for collectd plugins
71     - increase_open_file_limits
72     - install_image_dependencies
73     - role: download_dpdk
74       dpdk_version: "{{ dpdk_version_for_PROX }}"
75     - role: install_dpdk
76       dpdk_version: "{{ dpdk_version_for_PROX }}"
77     - download_samplevnfs
78     - role: install_samplevnf
79       vnf_name: PROX
80     - download_dpdk
81     - install_dpdk
82     - download_trex
83     - install_trex
84     - download_civetweb
85     - install_civetweb
86     - role: install_samplevnf
87       vnf_name: UDP_Replay
88     - role: install_samplevnf
89       vnf_name: ACL
90     - role: install_samplevnf
91       vnf_name: FW
92     - role: install_samplevnf
93       vnf_name: CGNAPT
94     # build shared DPDK for collectd only, required DPDK downloaded already
95     - install_dpdk_shared
96     - install_rabbitmq
97     - download_intel_cmt_cat
98     - install_intel_cmt_cat
99     - download_pmu_tools
100     - install_pmu_tools
101     - download_collectd
102     - install_collectd
103     - docker
104     - barometer_collectd
105
106
107 - name: Prepare to build VM
108   hosts: jumphost
109   become: yes
110   vars:
111     img_prop_item: "{{ IMG_PROPERTY }}"
112     img_arch: "{{ YARD_IMG_ARCH }}"
113
114   tasks:
115     - name: Include pre-build
116       include_role:
117         name: build_yardstick_image
118         tasks_from: pre_build.yml
119       when: installation_mode != inst_mode_container
120
121
122 - name: Build VM in chroot
123   hosts: chroot_image
124   connection: chroot
125   become: yes
126   vars:
127     img_property: "{{ IMG_PROPERTY }}"
128   environment: "{{ proxy_env }}"
129
130   tasks:
131     - name: Include image build
132       include_role:
133         name: build_yardstick_image
134         tasks_from: "cloudimg_modify_{{ img_property }}.yml"
135       when: installation_mode != inst_mode_container
136
137
138 - name: Clear up after VM is built
139   hosts: jumphost
140   become: yes
141
142   tasks:
143     - name: Include post-build
144       include_role:
145         name: build_yardstick_image
146         tasks_from: post_build.yml
147       when: installation_mode != inst_mode_container
148
149
150 - hosts: jumphost
151   vars_files:
152     - yardstick_config.yml
153
154   roles:
155     - { role: convert_openrc, when: openrc_file is defined }
156
157
158 - name: Add OpenStack variables, image
159   hosts: jumphost
160   vars_files:
161     - yardstick_config.yml
162   environment:
163     "{{ openrc }}"
164
165   roles:
166     - { role: clean_images, when: openrc_file is defined }
167     - { role: clean_flavors, when: openrc_file is defined }
168     - { role: create_samplevnfs_image, when: openrc_file is defined }
169
170
171 - name: Start yardstick container on jumphost
172   hosts: jumphost
173
174   tasks:
175     - name: Install docker needed to pull Yardstick container
176       include_role:
177         name: docker
178       when: installation_mode == inst_mode_container_pull
179
180     - name: Start yardstick container
181       docker_container:
182         name: yardstick
183         pull: yes
184         recreate: yes
185         image: "{{ yardstick_docker_image|default('opnfv/yardstick:latest') }}"
186         state: started
187         restart_policy: always
188         privileged: yes
189         interactive: yes
190         volumes:
191           - "{{ openrc_file|default('/dev/null') }}:/etc/yardstick/openstack.creds:ro"
192           - /var/run/docker.sock:/var/run/docker.sock
193           - /opt:/opt
194           - /etc/localtime:/etc/localtime:ro
195       when: installation_mode == inst_mode_container_pull