fuel-plugin-opendaylight/deployment_scripts/puppet/modules/opendaylight/manifests/ha/haproxy.pp

60 lines
2.1 KiB
Puppet

#
# Copyright 2015 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.
#
class opendaylight::ha::haproxy {
$public_vip = hiera('public_vip')
$management_vip = hiera('management_vip')
$nodes_hash = hiera('nodes')
$primary_controller_nodes = filter_nodes($nodes_hash,'role','primary-controller')
$odl_controllers = filter_nodes($nodes_hash,'role','opendaylight')
# defaults for any haproxy_service within this class
Openstack::Ha::Haproxy_service {
internal_virtual_ip => $management_vip,
ipaddresses => filter_hash($odl_controllers, 'internal_address'),
public_virtual_ip => $public_vip,
server_names => filter_hash($odl_controllers, 'name'),
public => true,
internal => true,
}
openstack::ha::haproxy_service { 'odl-jetty':
order => '216',
listen_port => '8181',
haproxy_config_options => {
'option' => ['httpchk /index.html', 'httplog'],
'timeout client' => '3h',
'timeout server' => '3h',
'balance' => 'source',
'mode' => 'http'
},
balancermember_options => 'check inter 2000 fall 3',
}
openstack::ha::haproxy_service { 'odl-tomcat':
order => '215',
listen_port => $opendaylight::rest_api_port,
haproxy_config_options => {
'option' => ['httpchk /apidoc/explorer', 'httplog'],
'timeout client' => '3h',
'timeout server' => '3h',
'balance' => 'source',
'mode' => 'http'
},
balancermember_options => 'check inter 5000 rise 2 fall 3',
}
}