fuel-plugin-contrail/deployment_scripts/puppet/modules/contrail/manifests/tor_agent.pp

47 lines
1.5 KiB
Puppet

# Copyright 2016 Mirantis, 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.
define contrail::tor_agent (
$ovs_port,
$ovs_protocol,
$tor_device_name,
$tor_vendor_name,
$tor_mgmt_ip,
$tor_tun_ip,
$contrail_dev_ip = $::contrail::address,
$tsn_vip_ip = $::contrail::address,
$tor_id = $name,
$contrail_discovery_server = $::contrail::contrail_private_vip,
)
{
file{"/etc/contrail/contrail-tor-agent-${name}.conf":
content => template('contrail/contrail-tor-agent.conf.erb')
}
file{"/etc/contrail/supervisord_vrouter_files/contrail-tor-agent-${name}.ini":
content => template('contrail/contrail-tor-agent.ini.erb')
}
if $ovs_protocol == 'pssl' {
exec { "generate_tor-${name}_cert":
provider => 'shell',
path => '/usr/bin:/bin:/sbin',
cwd => '/etc/contrail/',
command => "ovs-pki req+sign tor-${name}",
creates => "/etc/contrail/tor-${name}-cert.pem",
require => Exec['generate_ca_cert'],
}
}
}