Ceilometer must be deployed for odl scenarios
[releng-xci-scenarios.git] / scenarios / os-odl-nofeature / role / os-odl-nofeature / templates / user_variables_os-odl-nofeature.yml.j2
1 ---
2 # Copyright (c) 2017 Ericsson AB and others.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 # ##
17 # ## This file contains commonly used overrides for convenience. Please inspect
18 # ## the defaults for each role to find additional override options.
19 # ##
20
21 {% raw %}
22 # Ensure the openvswitch kernel module is loaded
23 openstack_host_specific_kernel_modules:
24   - name: "openvswitch"
25     pattern: "CONFIG_OPENVSWITCH"
26     group: "network_hosts"
27
28 # Use OpenDaylight SDN Controller
29 neutron_plugin_type: "ml2.opendaylight"
30 neutron_opendaylight_conf_ini_overrides:
31   ml2_odl:
32     username: "admin"
33     password: "admin"
34     port_binding_controller: "pseudo-agentdb-binding"
35     url: "http://{{ internal_lb_vip_address }}:8180/controller/nb/v2/neutron"
36
37 neutron_ml2_drivers_type: "flat,vlan,vxlan"
38
39 neutron_plugin_base:
40   - odl-router_v2
41
42 # To get functest testcases work (otherwise it keeps trying to access the metadata server)
43 neutron_dnsmasq_force_metadata: True
44 {% endraw %}
45
46 {% if odl_repo_version is defined %}
47 odl_version: "{{ odl_repo_version }}"
48 {% endif %}