Merge "Implement Virtual Switch resilience test case"
[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 # There is a bug with the easy install ansible module in suse linux.
33 # Until this is fixed the shell command must be used
34 - name: Install pip
35   shell: easy_install -U pip
36 #    easy_install:
37 #    name: pip
38 #    state: latest
39
40 - name: install yardstick without virtual environment
41   include_tasks: regular_install.yml
42   when: virtual_environment == False
43
44 - name: install yardstick with virtual environment
45   include_tasks: virtual_install.yml
46   when: virtual_environment == True