fuel-library/deployment/puppet/openstack/manifests/ha/nova.pp

118 lines
3.8 KiB
Puppet

# == Class: openstack::ha::nova
#
# HA configuration for OpenStack Nova
#
# === Parameters
#
# [*internal_virtual_ip*]
# (required) String. This is the ipaddress to be used for the internal facing
# vip
#
# [*ipaddresses*]
# (required) Array. This is an array of ipaddresses for the backend services
# to be loadbalanced
#
# [*public_ssl*]
# (optional) Boolean. If true, enables SSL for $public_virtual_ip
# Defaults to false.
#
# [*public_ssl_path*]
# (optional) String. Filesystem path to the file with public certificate
# content
# Defaults to undef
#
# [*internal_ssl*]
# (optional) Boolean. If true, enables SSL for $internal_virtual_ip
# Defaults to false.
#
# [*internal_ssl_path*]
# (optional) String. Filesystem path to the file with internal certificate
# content
# Defaults to undef
#
# [*public_virtual_ip*]
# (required) String. This is the ipaddress to be used for the external facing
# vip
#
# [*server_names*]
# (required) Array. This is an array of server names for the haproxy service
#
class openstack::ha::nova (
$internal_virtual_ip,
$ipaddresses,
$public_virtual_ip,
$server_names,
$public_ssl = false,
$public_ssl_path = undef,
$internal_ssl = false,
$internal_ssl_path = undef,
) {
# defaults for any haproxy_service within this class
Openstack::Ha::Haproxy_service {
internal_virtual_ip => $internal_virtual_ip,
ipaddresses => $ipaddresses,
public_virtual_ip => $public_virtual_ip,
server_names => $server_names,
}
openstack::ha::haproxy_service { 'nova-api':
order => '040',
listen_port => 8774,
public => true,
public_ssl => $public_ssl,
public_ssl_path => $public_ssl_path,
internal_ssl => $internal_ssl,
internal_ssl_path => $internal_ssl_path,
require_service => 'nova-api',
haproxy_config_options => {
'option' => ['httpchk', 'httplog', 'forceclose', 'http-buffer-request'],
'timeout' => ['server 600s', 'http-request 10s'],
'http-request' => 'set-header X-Forwarded-Proto https if { ssl_fc }',
},
balancermember_options => 'check inter 10s fastinter 2s downinter 3s rise 3 fall 3',
}
openstack::ha::haproxy_service { 'nova-metadata-api':
order => '050',
listen_port => 8775,
internal_ssl => $internal_ssl,
internal_ssl_path => $internal_ssl_path,
require_service => 'nova-api',
haproxy_config_options => {
'option' => ['httpchk', 'httplog', 'forceclose', 'http-buffer-request'],
'timeout' => 'http-request 10s',
},
balancermember_options => 'check inter 10s fastinter 2s downinter 3s rise 3 fall 3',
}
openstack::ha::haproxy_service { 'nova-placement-api':
order => '056',
listen_port => 8778,
internal_ssl => $internal_ssl,
internal_ssl_path => $internal_ssl_path,
require_service => 'nova-placement',
haproxy_config_options => {
'option' => ['httpchk', 'httplog', 'forceclose', 'http-buffer-request'],
'timeout' => 'http-request 10s',
},
balancermember_options => 'check inter 10s fastinter 2s downinter 3s rise 3 fall 3',
}
openstack::ha::haproxy_service { 'nova-novncproxy':
order => '170',
listen_port => 6080,
public => true,
public_ssl => $public_ssl,
public_ssl_path => $public_ssl_path,
internal => false,
require_service => 'nova-vncproxy',
haproxy_config_options => {
'option' => 'http-buffer-request',
'timeout' => 'http-request 10s',
'http-request' => 'set-header X-Forwarded-Proto https if { ssl_fc }',
},
}
}