edit proxy
This commit is contained in:
@@ -40,27 +40,35 @@
|
|||||||
###############################################################################
|
###############################################################################
|
||||||
define cd_haproxy::server::proxy (
|
define cd_haproxy::server::proxy (
|
||||||
|
|
||||||
$haproxy_fqdn = undef,
|
$haproxy_fqdn = undef,
|
||||||
$frontend_name = undef,
|
$frontend_name = undef,
|
||||||
$frontend_mode = undef,
|
$frontend_mode = undef,
|
||||||
$fe_use_backend = '',
|
$fe_use_backend = '',
|
||||||
$fe_bind_mode = undef,
|
$fe_bind_mode = undef,
|
||||||
$frontend_order = '010',
|
$frontend_order = '010',
|
||||||
$acl_rule_front = '',
|
$acl_rule_front = '',
|
||||||
$acl_rule_back = '',
|
$acl_rule_back = '',
|
||||||
$backend_name = undef,
|
$backend_name = undef,
|
||||||
$backend_order = '030',
|
$backend_order = '030',
|
||||||
$fe_maxconn = '',
|
$fe_maxconn = '',
|
||||||
$be_server_name = undef,
|
$be_server_name = undef,
|
||||||
$be_balance = '',
|
$be_balance = '',
|
||||||
$be_mode = '',
|
$be_mode = '',
|
||||||
|
|
||||||
) {
|
) {
|
||||||
|
|
||||||
$hy_main_config = '/etc/haproxy/haproxy.cfg'
|
$hy_main_config = '/etc/haproxy/haproxy.cfg'
|
||||||
$hy_frontendrule = 'cd_haproxy/haproxy_frontend_rule.erb'
|
$hy_frontendrule = 'cd_haproxy/haproxy_frontend_rule.erb'
|
||||||
$hy_backendrule = 'cd_haproxy/haproxy_backend_rule.erb'
|
$hy_backendrule = 'cd_haproxy/haproxy_backend_rule.erb'
|
||||||
$hy_acl_rule = 'cd_haproxy/haproxy_acl_rule.erb'
|
$hy_acl_rule = 'cd_haproxy/haproxy_acl_rule.erb'
|
||||||
|
|
||||||
|
|
||||||
|
# Ensure acl_rule_front and acl_rule_back are arrays
|
||||||
|
$acl_rule_front_array = Array($acl_rule_front)
|
||||||
|
$acl_rule_back_array = Array($acl_rule_back)
|
||||||
|
|
||||||
|
# Ensure fe_use_backend are arrays
|
||||||
|
$fe_use_backend_array = Array($fe_use_backend)
|
||||||
|
|
||||||
# create frontend section
|
# create frontend section
|
||||||
concat::fragment { "frontend_${name}":
|
concat::fragment { "frontend_${name}":
|
||||||
|
|||||||
@@ -3,8 +3,9 @@ backend <%= @backend_name %>
|
|||||||
<% if @be_mode != '' -%>
|
<% if @be_mode != '' -%>
|
||||||
mode <%= @be_mode %>
|
mode <%= @be_mode %>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
<% if @acl_rule_back != '' -%>
|
<% if !@acl_rule_back_array.empty? -%>
|
||||||
acl <%= @acl_rule_back %>
|
<% @acl_rule_back_array.each do |acl_rule| -%>
|
||||||
|
acl <%= acl_rule %>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
<% if @be_balance != '' -%>
|
<% if @be_balance != '' -%>
|
||||||
balance <%= @be_balance %>
|
balance <%= @be_balance %>
|
||||||
|
|||||||
@@ -5,11 +5,13 @@ bind <%= @fe_bind_mode %>
|
|||||||
<% if @fe_maxconn != '' -%>
|
<% if @fe_maxconn != '' -%>
|
||||||
maxconn <%= @fe_maxconn %>
|
maxconn <%= @fe_maxconn %>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
<% if @acl_rule_front != '' -%>
|
<% if !@acl_rule_front_array.empty? -%>
|
||||||
acl <%= @acl_rule_front %>
|
<% @acl_rule_front_array.each do |acl_rule| -%>
|
||||||
|
acl <%= acl_rule %>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
<% if @fe_use_backend != '' -%>
|
<% if !@fe_use_backend_array_array.empty? -%>
|
||||||
use_backend <%= @fe_use_backend %>
|
<% @fe_use_backend_array_array_array.each do |fe_use_backend| -%>
|
||||||
|
use_backend <%= fe_use_backend %>
|
||||||
|
|
||||||
<% else -%>
|
<% else -%>
|
||||||
use_backend <%= @backend_name %>
|
use_backend <%= @backend_name %>
|
||||||
|
|||||||
Reference in New Issue
Block a user