From a6daf4ece3f05600ad66fea55c5220d07a71cef1 Mon Sep 17 00:00:00 2001 From: Michael Polenchuk Date: Wed, 24 May 2017 12:44:05 +0400 Subject: [mcp] Bring in reclass system salt models Change-Id: I1a865b7524f3a5242544e60e6b36b1092721c58b Signed-off-by: Michael Polenchuk --- .../system/haproxy/proxy/listen/openldap.yml | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 mcp/reclass/classes/system/haproxy/proxy/listen/openldap.yml (limited to 'mcp/reclass/classes/system/haproxy/proxy/listen/openldap.yml') diff --git a/mcp/reclass/classes/system/haproxy/proxy/listen/openldap.yml b/mcp/reclass/classes/system/haproxy/proxy/listen/openldap.yml new file mode 100644 index 000000000..b6f79a039 --- /dev/null +++ b/mcp/reclass/classes/system/haproxy/proxy/listen/openldap.yml @@ -0,0 +1,46 @@ +parameters: + _param: + haproxy_openldap_bind_host: ${_param:haproxy_bind_address} + haproxy_openldap_bind_port: 389 + haproxy_openldap_ssl_bind_port: 636 + haproxy: + proxy: + listen: + openldap: + mode: tcp + balance: source + binds: + - address: ${_param:haproxy_openldap_bind_host} + port: ${_param:haproxy_openldap_bind_port} + servers: + - name: ${_param:cluster_node01_name} + host: ${_param:cluster_node01_address} + port: 1389 + params: check + - name: ${_param:cluster_node02_name} + host: ${_param:cluster_node02_address} + port: 1389 + params: backup check + - name: ${_param:cluster_node03_name} + host: ${_param:cluster_node03_address} + port: 1389 + params: backup check + openldap_ssl: + mode: tcp + balance: source + binds: + - address: ${_param:haproxy_openldap_bind_host} + port: ${_param:haproxy_openldap_ssl_bind_port} + servers: + - name: ${_param:cluster_node01_name} + host: ${_param:cluster_node01_address} + port: 1636 + params: check + - name: ${_param:cluster_node02_name} + host: ${_param:cluster_node02_address} + port: 1636 + params: backup check + - name: ${_param:cluster_node03_name} + host: ${_param:cluster_node03_address} + port: 1636 + params: backup check -- cgit 1.2.3-korg