From b13de8d8c1afb3d1106d839385572dee4e2077bf Mon Sep 17 00:00:00 2001 From: Szilard Cserey Date: Thu, 12 Nov 2015 20:44:58 +0100 Subject: Autodeployment adaptation to Fuel 7 Change-Id: I5071b8d65828ab13a6b1a08b907289068104b27e Signed-off-by: Szilard Cserey --- .../conf/plugins_conf/opendaylight.yaml | 52 ++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 fuel/deploy/templates/virtual_environment/conf/plugins_conf/opendaylight.yaml (limited to 'fuel/deploy/templates/virtual_environment/conf/plugins_conf/opendaylight.yaml') diff --git a/fuel/deploy/templates/virtual_environment/conf/plugins_conf/opendaylight.yaml b/fuel/deploy/templates/virtual_environment/conf/plugins_conf/opendaylight.yaml new file mode 100644 index 000000000..183ef9ca9 --- /dev/null +++ b/fuel/deploy/templates/virtual_environment/conf/plugins_conf/opendaylight.yaml @@ -0,0 +1,52 @@ +opendaylight: + metadata: + enabled: true + label: OpenDaylight plugin + plugin_id: 1 + restrictions: + - cluster:net_provider != 'neutron': Only neutron is supported by OpenDaylight + toggleable: true + weight: 70 + rest_api_port: + description: Port on which ODL REST API will be available. + label: Port number + regex: + error: Invalid port number + source: ^([1-9][0-9]{0,3}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])$ + type: text + value: '8282' + weight: 40 + use_vxlan: + description: Configure neutron to use VXLAN tunneling + label: Use vxlan + restrictions: + - action: disable + condition: networking_parameters:segmentation_type == 'vlan' + message: Neutron with GRE segmentation required + type: checkbox + value: true + weight: 20 + vni_range_end: + description: VXLAN VNI IDs range end + label: VNI range end + regex: + error: Invalid ID number + source: ^\d+$ + restrictions: + - action: hide + condition: networking_parameters:segmentation_type == 'vlan' + type: text + value: '10000' + weight: 31 + vni_range_start: + description: VXLAN VNI IDs range start + label: VNI range start + regex: + error: Invalid ID number + source: ^\d+$ + restrictions: + - action: hide + condition: networking_parameters:segmentation_type == 'vlan' + type: text + value: '10' + weight: 30 -- cgit 1.2.3-korg