Prohibit the importation of a list of libraries
[yardstick.git] / ansible / yardstick_config.yml
1 # Copyright (c) 2017 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 opnfv_root: /home/opnfv
16  # Can be any of 'bm' (Bare Metal) or 'virt' (Virtual)
17 DEPLOY_TYPE: "{{ lookup('env', 'DEPLOY_TYPE')|default('bm', true) }}"
18 NODE_NAME: "{{ lookup('env', 'NODE_NAME')|default('unknown', true) }}"
19 EXTERNAL_NETWORK: "{{ lookup('env', 'EXTERNAL_NETWORK')|default('admin_floating_net', true)|attr('split')(';')|first }}"
20 OPENRC: "{{ opnfv_root }}/openrc"
21 INSTALLERS: [apex, compass, fuel, joid]
22 INSTALLER_TYPE: "{{ lookup('env', 'INSTALLER_TYPE') }}"
23 YARDSTICK_REPO_DIR: "{{ lookup('env', 'YARDSTICK_REPO_DIR')|default('/home/opnfv/repos/yardstick', true) }}"
24 RELENG_REPO_DIR: "{{ lookup('env', 'RELENG_REPO_DIR')|default('/home/opnfv/repos/releng', true) }}"
25 storperf_rc: "{{ opnfv_root }}/storperf_admin-rc"
26
27 DISPATCHER_TYPES:
28   file:
29       DISPATCHER_FILE_NAME: "/tmp/yardstick.out"
30       DISPATCHER_HTTP_TARGET: "http://testresults.opnfv.org/test/api/v1/results"
31       DISPATCHER_INFLUXDB_TARGET: ""
32   http:
33       DISPATCHER_TYPE: http
34       DISPATCHER_HTTP_TARGET: "{{ dispatcher_target }}"
35       DISPATCHER_FILE_NAME: ""
36   influxdb:
37       DISPATCHER_TYPE: influxdb
38       DISPATCHER_INFLUXDB_TARGET: "{{ dispatcher_target }}"
39       DISPATCHER_FILE_NAME: ""
40