add yardstick iruya 9.0.0 release notes
[yardstick.git] / ansible / roles / install_yardstick / tasks / main.yml
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 # Arguments needed: map_min_addr_file, yardstick_dir
16
17 - name: Define variables
18   set_fact:
19     map_min_addr_file: "/etc/sysctl.d/mmap_min_addr.conf"
20
21 - name: Remove the kernel minimum virtual address restriction that a process is allowed to mmap
22   copy:
23     dest: "{{ map_min_addr_file }}"
24     content: "vm.mmap_min_addr = 0\n"
25
26 - name: Config git SSL
27   git_config:
28     name: http.sslVerify
29     scope: global
30     value: False
31
32 - name: Install Yardstick requirements (venv)
33   pip:
34     requirements: "{{ yardstick_dir }}/requirements.txt"
35     virtualenv: "{{ yardstick_dir }}/virtualenv"
36   async: 900
37   poll: 0
38   register: pip_installer
39   when: virtual_environment == True
40
41 - name: Install Yardstick requirements
42   pip:
43     requirements: "{{ yardstick_dir }}/requirements.txt"
44   async: 900
45   poll: 0
46   register: pip_installer
47   when: virtual_environment == False
48
49 - name: Check install Yardstick requirements
50   async_status:
51     jid: "{{ pip_installer.ansible_job_id }}"
52   register: job_result
53   until: job_result.finished
54   retries: 180
55
56 - name: Install Yardstick code (venv)
57   pip:
58     name: "{{ yardstick_dir }}/"
59     editable: True
60     virtualenv: "{{ yardstick_dir }}/virtualenv"
61   when: virtual_environment == True
62
63 - name: Install Yardstick code
64   pip:
65     name: "{{ yardstick_dir }}/"
66     editable: True
67   when: virtual_environment == False