Puppet Class: tripleo::profile::base::neutron::plugins::ml2::vts
- Defined in:
- manifests/profile/base/neutron/plugins/ml2/vts.pp
Overview
Copyright 2017 Cisco, Inc.
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Class: tripleo::profile::base::neutron::plugins::ml2::vts
Cisco VTS Controller Neutron ML2 plugin profile for TripleO
Parameters
- vts_url_ip
-
(Optional) IP address of the VTS Server Defaults to undefined
- vts_port
-
(Optional) VTS Server Neutron service port Defaults to ‘8888’
- step
-
(Optional) The current step in deployment. See tripleo-heat-templates for more details. Defaults to hiera(‘step’)
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'manifests/profile/base/neutron/plugins/ml2/vts.pp', line 35
class tripleo::profile::base::neutron::plugins::ml2::vts (
$vts_url_ip = hiera('vts::vts_ip', undef),
$vts_port = hiera('vts::vts_port', 8888),
$step = hiera('step'),
) {
if $step >= 4 {
if $vts_url_ip != undef {
$vts_url_ip_out = normalize_ip_for_uri($vts_url_ip)
class { 'neutron::plugins::ml2::cisco::vts':
vts_url => "https://${vts_url_ip_out}:${vts_port}/api/running/openstack"
}
}
}
}
|