f4f57bdc024126337ce35278a75c565e1f1f77b9
[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
104
105 - hosts: jumphost
106   become: yes
107   vars:
108     img_prop_item: "{{ IMG_PROPERTY }}"
109     img_arch: "{{ YARD_IMG_ARCH }}"
110
111   tasks:
112     - name: Include pre-build
113       include_role:
114         name: build_yardstick_image
115         tasks_from: pre_build.yml
116       when: installation_mode != inst_mode_container
117
118
119 - hosts: chroot_image
120   connection: chroot
121   become: yes
122   vars:
123     img_property: "{{ IMG_PROPERTY }}"
124   environment: "{{ proxy_env }}"
125
126   tasks:
127     - name: Include image build
128       include_role:
129         name: build_yardstick_image
130         tasks_from: "cloudimg_modify_{{ img_property }}.yml"
131       when: installation_mode != inst_mode_container
132
133
134 - hosts: jumphost
135   become: yes
136
137   tasks:
138     - name: Include post-build
139       include_role:
140         name: build_yardstick_image
141         tasks_from: post_build.yml
142       when: installation_mode != inst_mode_container
143
144
145 - name: start yardstick container on jumphost
146   hosts: jumphost
147
148   tasks:
149     - include_role:
150         name: docker
151       when: installation_mode == inst_mode_container_pull
152
153     - name: Start yardstick container
154       docker_container:
155         name: yardstick
156         pull: yes
157         recreate: yes
158         image: "{{ yardstick_docker_image|default('opnfv/yardstick:latest') }}"
159         state: started
160         restart_policy: always
161         privileged: yes
162         interactive: yes
163         volumes:
164           - "{{ openrc_file|default('/dev/null') }}:/etc/yardstick/openstack.creds:ro"
165           - /var/run/docker.sock:/var/run/docker.sock
166           - /opt:/opt
167           - /etc/localtime:/etc/localtime:ro
168       when: installation_mode == inst_mode_container_pull