Compare commits
1 Commits
master
...
3012a7195a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3012a7195a |
38
README.md
38
README.md
@@ -1,8 +1,6 @@
|
|||||||
# Readme
|
# Readme
|
||||||
|
|
||||||
[](https://jenkins.confdroid.com/job/confdroid_haproxy/)
|
[](https://jenkins.confdroid.com/job/confdroid_haproxy/)
|
||||||
[](https://sonarqube.confdroid.com/dashboard?id=confdroid_haproxy)
|
|
||||||
[](https://deepwiki.com/grizzlycoda/puppet_collection)
|
|
||||||
|
|
||||||
- [Readme](#readme)
|
- [Readme](#readme)
|
||||||
- [Synopsis](#synopsis)
|
- [Synopsis](#synopsis)
|
||||||
@@ -12,7 +10,6 @@
|
|||||||
- [Deployment](#deployment)
|
- [Deployment](#deployment)
|
||||||
- [Parameters](#parameters)
|
- [Parameters](#parameters)
|
||||||
- [Proxy Configuration](#proxy-configuration)
|
- [Proxy Configuration](#proxy-configuration)
|
||||||
- [TLS](#tls)
|
|
||||||
- [SELINUX](#selinux)
|
- [SELINUX](#selinux)
|
||||||
- [Known Problems](#known-problems)
|
- [Known Problems](#known-problems)
|
||||||
- [Support](#support)
|
- [Support](#support)
|
||||||
@@ -45,20 +42,18 @@ CONFIGURATION
|
|||||||
- front-end options
|
- front-end options
|
||||||
- back-end options
|
- back-end options
|
||||||
- ACL options
|
- ACL options
|
||||||
- adds haproxy logs to rsyslog for remote logging where used
|
- manage fail2ban integration (optional, requires fail2ban_cd module)
|
||||||
- manage fail2ban integration (optional, requires `confdroid_fail2ban` module)
|
|
||||||
- manage nagios integration (optional, requires `confdroid-nagios` module)
|
|
||||||
|
|
||||||
SERVICE
|
SERVICE
|
||||||
|
|
||||||
- manage haproxy service
|
- manage haproxy service
|
||||||
- restart service after changes in the configuration
|
- restart service after changes in the configuration
|
||||||
- stats are enabled on port 8404 with uri /haproxy?stats and strict private mode, set `hy_stats_auth` to something meaningful.
|
|
||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
|
|
||||||
All dependencies must be included in the catalogue.
|
All dependencies must be included in the catalogue.
|
||||||
|
|
||||||
|
- [cd_resources](https://gitlab.confdroid.com/puppet/cd_resources) for managing yum base repos
|
||||||
- [concat](https://github.com/puppetlabs/puppetlabs-concat) for managing file fragments
|
- [concat](https://github.com/puppetlabs/puppetlabs-concat) for managing file fragments
|
||||||
|
|
||||||
## Deployment
|
## Deployment
|
||||||
@@ -88,8 +83,6 @@ The parameters are documented via puppet strings and [listed here](/docs/index.h
|
|||||||
The proxy instances are configured in /etc/haproxy/haproxy.cfg, which is concatenated from various templates through a define in this puppet module.
|
The proxy instances are configured in /etc/haproxy/haproxy.cfg, which is concatenated from various templates through a define in this puppet module.
|
||||||
In order to create proxy instances, you will need an external class, which addresses the define, like so:
|
In order to create proxy instances, you will need an external class, which addresses the define, like so:
|
||||||
|
|
||||||
ACL rule:
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
confdroid_haproxy::server::proxy { 'testing':
|
confdroid_haproxy::server::proxy { 'testing':
|
||||||
haproxy_fqdn => 'node.example.net',
|
haproxy_fqdn => 'node.example.net',
|
||||||
@@ -101,37 +94,10 @@ ACL rule:
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
real Proxy for https:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
haproxy_cd::server::proxy { 'https-in':
|
|
||||||
haproxy_fqdn => 'node.example.net',
|
|
||||||
frontend_name => 'https-in',
|
|
||||||
frontend_mode => 'http',
|
|
||||||
fe_bind_mode => '*:443 ssl crt /etc/haproxy/certs/',
|
|
||||||
fe_option => 'forwardfor',
|
|
||||||
fe_http_request => 'add-header X-Forwarded-Proto https',
|
|
||||||
acl_rule_front => 'host_grafana hdr(host) -i grafana.example.net',
|
|
||||||
fe_use_backend => 'grafana_backend if host_grafana',
|
|
||||||
backend_configs => [
|
|
||||||
{
|
|
||||||
'backend_name' => 'grafana_backend',
|
|
||||||
'be_mode' => 'http',
|
|
||||||
'be_balance' => 'roundrobin',
|
|
||||||
'be_server_name_array' => ['node1 10.0.1.1:8080 check'],
|
|
||||||
}
|
|
||||||
]
|
|
||||||
default_backend => 'error_backend',
|
|
||||||
```
|
|
||||||
|
|
||||||
This allows the puppet module to create the sections in the configuration file as required. The haproxy service will be restarted after the changes in the configuration file are made.
|
This allows the puppet module to create the sections in the configuration file as required. The haproxy service will be restarted after the changes in the configuration file are made.
|
||||||
`haproxy_fqdn` **must**- contain the fqdn of the haproxy **server**- where this should be configured, otherwise the templates are not being populated.
|
`haproxy_fqdn` **must**- contain the fqdn of the haproxy **server**- where this should be configured, otherwise the templates are not being populated.
|
||||||
Multiple ACLs need to be added as array, and will create one line each.
|
Multiple ACLs need to be added as array, and will create one line each.
|
||||||
|
|
||||||
## TLS
|
|
||||||
|
|
||||||
Haproxy can manage all sorts of proxies including http and https. It also can terminate https requests and send the requests within a private network unencrypted, which is quite common. **This module is NOT managing certificates**, as there are many ways to manage this, including Kubernetes cert-manager, Let's encrypt or other ways.
|
|
||||||
|
|
||||||
## SELINUX
|
## SELINUX
|
||||||
|
|
||||||
All files and directories are configured with correct selinux context. If selinux is disabled, these contexts are ignored.
|
All files and directories are configured with correct selinux context. If selinux is disabled, these contexts are ignored.
|
||||||
|
|||||||
@@ -108,11 +108,6 @@
|
|||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<span class='object_link'><a href="puppet_classes/confdroid_haproxy_3A_3Amonitoring_3A_3Atarget.html" title="puppet_classes::confdroid_haproxy::monitoring::target (puppet_class)">confdroid_haproxy::monitoring::target</a></span>
|
|
||||||
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<span class='object_link'><a href="puppet_classes/confdroid_haproxy_3A_3Aparams.html" title="puppet_classes::confdroid_haproxy::params (puppet_class)">confdroid_haproxy::params</a></span>
|
<span class='object_link'><a href="puppet_classes/confdroid_haproxy_3A_3Aparams.html" title="puppet_classes::confdroid_haproxy::params (puppet_class)">confdroid_haproxy::params</a></span>
|
||||||
|
|
||||||
|
|||||||
@@ -60,7 +60,7 @@
|
|||||||
<div id="content"><div id='filecontents'>
|
<div id="content"><div id='filecontents'>
|
||||||
<h1 id="label-Readme">Readme</h1>
|
<h1 id="label-Readme">Readme</h1>
|
||||||
|
|
||||||
<p><a href="https://jenkins.confdroid.com/job/confdroid_haproxy/"><img src="https://jenkins.confdroid.com/buildStatus/icon?job=confdroid_haproxy&style=plastic"></a> <a href="https://sonarqube.confdroid.com/dashboard?id=confdroid_haproxy"><img src="https://sonarqube.confdroid.com/api/project_badges/measure?project=confdroid_haproxy&metric=security_hotspots&token=sqb_0205ee61c907f77ebdc1c717b8f4ff568c3724cf"></a> <a href="https://deepwiki.com/grizzlycoda/puppet_collection"><img src="https://deepwiki.com/badge.svg"></a></p>
|
<p><a href="https://jenkins.confdroid.com/job/confdroid_haproxy/"><img src="https://jenkins.confdroid.com/buildStatus/icon?job=confdroid_haproxy&style=plastic"></a></p>
|
||||||
<ul><li>
|
<ul><li>
|
||||||
<p><a href="#readme">Readme</a></p>
|
<p><a href="#readme">Readme</a></p>
|
||||||
</li><li>
|
</li><li>
|
||||||
@@ -78,8 +78,6 @@
|
|||||||
</li><li>
|
</li><li>
|
||||||
<p><a href="#proxy-configuration">Proxy Configuration</a></p>
|
<p><a href="#proxy-configuration">Proxy Configuration</a></p>
|
||||||
</li><li>
|
</li><li>
|
||||||
<p><a href="#tls">TLS</a></p>
|
|
||||||
</li><li>
|
|
||||||
<p><a href="#selinux">SELINUX</a></p>
|
<p><a href="#selinux">SELINUX</a></p>
|
||||||
</li><li>
|
</li><li>
|
||||||
<p><a href="#known-problems">Known Problems</a></p>
|
<p><a href="#known-problems">Known Problems</a></p>
|
||||||
@@ -128,11 +126,7 @@
|
|||||||
</li><li>
|
</li><li>
|
||||||
<p>ACL options</p>
|
<p>ACL options</p>
|
||||||
</li><li>
|
</li><li>
|
||||||
<p>adds haproxy logs to rsyslog for remote logging where used</p>
|
<p>manage fail2ban integration (optional, requires fail2ban_cd module)</p>
|
||||||
</li><li>
|
|
||||||
<p>manage fail2ban integration (optional, requires <code>confdroid_fail2ban</code> module)</p>
|
|
||||||
</li><li>
|
|
||||||
<p>manage nagios integration (optional, requires <code>confdroid-nagios</code> module)</p>
|
|
||||||
</li></ul>
|
</li></ul>
|
||||||
|
|
||||||
<p>SERVICE</p>
|
<p>SERVICE</p>
|
||||||
@@ -140,14 +134,14 @@
|
|||||||
<p>manage haproxy service</p>
|
<p>manage haproxy service</p>
|
||||||
</li><li>
|
</li><li>
|
||||||
<p>restart service after changes in the configuration</p>
|
<p>restart service after changes in the configuration</p>
|
||||||
</li><li>
|
|
||||||
<p>stats are enabled on port 8404 with uri /haproxy?stats and strict private mode, set <code>hy_stats_auth</code> to something meaningful.</p>
|
|
||||||
</li></ul>
|
</li></ul>
|
||||||
|
|
||||||
<h2 id="label-Dependencies">Dependencies</h2>
|
<h2 id="label-Dependencies">Dependencies</h2>
|
||||||
|
|
||||||
<p>All dependencies must be included in the catalogue.</p>
|
<p>All dependencies must be included in the catalogue.</p>
|
||||||
<ul><li>
|
<ul><li>
|
||||||
|
<p><a href="https://gitlab.confdroid.com/puppet/cd_resources">cd_resources</a> for managing yum base repos</p>
|
||||||
|
</li><li>
|
||||||
<p><a href="https://github.com/puppetlabs/puppetlabs-concat">concat</a> for managing file fragments</p>
|
<p><a href="https://github.com/puppetlabs/puppetlabs-concat">concat</a> for managing file fragments</p>
|
||||||
</li></ul>
|
</li></ul>
|
||||||
|
|
||||||
@@ -178,8 +172,6 @@
|
|||||||
|
|
||||||
<p>The proxy instances are configured in /etc/haproxy/haproxy.cfg, which is concatenated from various templates through a define in this puppet module. In order to create proxy instances, you will need an external class, which addresses the define, like so:</p>
|
<p>The proxy instances are configured in /etc/haproxy/haproxy.cfg, which is concatenated from various templates through a define in this puppet module. In order to create proxy instances, you will need an external class, which addresses the define, like so:</p>
|
||||||
|
|
||||||
<p>ACL rule:</p>
|
|
||||||
|
|
||||||
<pre class="code ruby"><code class="ruby">confdroid_haproxy::server::proxy { 'testing':
|
<pre class="code ruby"><code class="ruby">confdroid_haproxy::server::proxy { 'testing':
|
||||||
haproxy_fqdn => 'node.example.net',
|
haproxy_fqdn => 'node.example.net',
|
||||||
frontend_name => 'test01-frontend',
|
frontend_name => 'test01-frontend',
|
||||||
@@ -190,34 +182,8 @@
|
|||||||
}
|
}
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
|
||||||
<p>real Proxy for https:</p>
|
|
||||||
|
|
||||||
<pre class="code ruby"><code class="ruby">haproxy_cd::server::proxy { 'https-in':
|
|
||||||
haproxy_fqdn => 'node.example.net',
|
|
||||||
frontend_name => 'https-in',
|
|
||||||
frontend_mode => 'http',
|
|
||||||
fe_bind_mode => '*:443 ssl crt /etc/haproxy/certs/',
|
|
||||||
fe_option => 'forwardfor',
|
|
||||||
fe_http_request => 'add-header X-Forwarded-Proto https',
|
|
||||||
acl_rule_front => 'host_grafana hdr(host) -i grafana.example.net',
|
|
||||||
fe_use_backend => 'grafana_backend if host_grafana',
|
|
||||||
backend_configs => [
|
|
||||||
{
|
|
||||||
'backend_name' => 'grafana_backend',
|
|
||||||
'be_mode' => 'http',
|
|
||||||
'be_balance' => 'roundrobin',
|
|
||||||
'be_server_name_array' => ['node1 10.0.1.1:8080 check'],
|
|
||||||
}
|
|
||||||
]
|
|
||||||
default_backend => 'error_backend',
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<p>This allows the puppet module to create the sections in the configuration file as required. The haproxy service will be restarted after the changes in the configuration file are made. <code>haproxy_fqdn</code> <strong>must</strong>- contain the fqdn of the haproxy <strong>server</strong>- where this should be configured, otherwise the templates are not being populated. Multiple ACLs need to be added as array, and will create one line each.</p>
|
<p>This allows the puppet module to create the sections in the configuration file as required. The haproxy service will be restarted after the changes in the configuration file are made. <code>haproxy_fqdn</code> <strong>must</strong>- contain the fqdn of the haproxy <strong>server</strong>- where this should be configured, otherwise the templates are not being populated. Multiple ACLs need to be added as array, and will create one line each.</p>
|
||||||
|
|
||||||
<h2 id="label-TLS">TLS</h2>
|
|
||||||
|
|
||||||
<p>Haproxy can manage all sorts of proxies including http and https. It also can terminate https requests and send the requests within a private network unencrypted, which is quite common. <strong>This module is NOT managing certificates</strong>, as there are many ways to manage this, including Kubernetes cert-manager, Let’s encrypt or other ways.</p>
|
|
||||||
|
|
||||||
<h2 id="label-SELINUX">SELINUX</h2>
|
<h2 id="label-SELINUX">SELINUX</h2>
|
||||||
|
|
||||||
<p>All files and directories are configured with correct selinux context. If selinux is disabled, these contexts are ignored. If selinux is set to <code>enforce</code> (not controlled within this module), the parameter <code>hy_selinux_allow_stats</code> must also be set to <code>true</code>, else the haproxy service will not start as selinux will not allow it. This is the default setting.</p>
|
<p>All files and directories are configured with correct selinux context. If selinux is disabled, these contexts are ignored. If selinux is set to <code>enforce</code> (not controlled within this module), the parameter <code>hy_selinux_allow_stats</code> must also be set to <code>true</code>, else the haproxy service will not start as selinux will not allow it. This is the default setting.</p>
|
||||||
|
|||||||
@@ -60,7 +60,7 @@
|
|||||||
<div id="content"><div id='filecontents'>
|
<div id="content"><div id='filecontents'>
|
||||||
<h1 id="label-Readme">Readme</h1>
|
<h1 id="label-Readme">Readme</h1>
|
||||||
|
|
||||||
<p><a href="https://jenkins.confdroid.com/job/confdroid_haproxy/"><img src="https://jenkins.confdroid.com/buildStatus/icon?job=confdroid_haproxy&style=plastic"></a> <a href="https://sonarqube.confdroid.com/dashboard?id=confdroid_haproxy"><img src="https://sonarqube.confdroid.com/api/project_badges/measure?project=confdroid_haproxy&metric=security_hotspots&token=sqb_0205ee61c907f77ebdc1c717b8f4ff568c3724cf"></a> <a href="https://deepwiki.com/grizzlycoda/puppet_collection"><img src="https://deepwiki.com/badge.svg"></a></p>
|
<p><a href="https://jenkins.confdroid.com/job/confdroid_haproxy/"><img src="https://jenkins.confdroid.com/buildStatus/icon?job=confdroid_haproxy&style=plastic"></a></p>
|
||||||
<ul><li>
|
<ul><li>
|
||||||
<p><a href="#readme">Readme</a></p>
|
<p><a href="#readme">Readme</a></p>
|
||||||
</li><li>
|
</li><li>
|
||||||
@@ -78,8 +78,6 @@
|
|||||||
</li><li>
|
</li><li>
|
||||||
<p><a href="#proxy-configuration">Proxy Configuration</a></p>
|
<p><a href="#proxy-configuration">Proxy Configuration</a></p>
|
||||||
</li><li>
|
</li><li>
|
||||||
<p><a href="#tls">TLS</a></p>
|
|
||||||
</li><li>
|
|
||||||
<p><a href="#selinux">SELINUX</a></p>
|
<p><a href="#selinux">SELINUX</a></p>
|
||||||
</li><li>
|
</li><li>
|
||||||
<p><a href="#known-problems">Known Problems</a></p>
|
<p><a href="#known-problems">Known Problems</a></p>
|
||||||
@@ -128,11 +126,7 @@
|
|||||||
</li><li>
|
</li><li>
|
||||||
<p>ACL options</p>
|
<p>ACL options</p>
|
||||||
</li><li>
|
</li><li>
|
||||||
<p>adds haproxy logs to rsyslog for remote logging where used</p>
|
<p>manage fail2ban integration (optional, requires fail2ban_cd module)</p>
|
||||||
</li><li>
|
|
||||||
<p>manage fail2ban integration (optional, requires <code>confdroid_fail2ban</code> module)</p>
|
|
||||||
</li><li>
|
|
||||||
<p>manage nagios integration (optional, requires <code>confdroid-nagios</code> module)</p>
|
|
||||||
</li></ul>
|
</li></ul>
|
||||||
|
|
||||||
<p>SERVICE</p>
|
<p>SERVICE</p>
|
||||||
@@ -140,14 +134,14 @@
|
|||||||
<p>manage haproxy service</p>
|
<p>manage haproxy service</p>
|
||||||
</li><li>
|
</li><li>
|
||||||
<p>restart service after changes in the configuration</p>
|
<p>restart service after changes in the configuration</p>
|
||||||
</li><li>
|
|
||||||
<p>stats are enabled on port 8404 with uri /haproxy?stats and strict private mode, set <code>hy_stats_auth</code> to something meaningful.</p>
|
|
||||||
</li></ul>
|
</li></ul>
|
||||||
|
|
||||||
<h2 id="label-Dependencies">Dependencies</h2>
|
<h2 id="label-Dependencies">Dependencies</h2>
|
||||||
|
|
||||||
<p>All dependencies must be included in the catalogue.</p>
|
<p>All dependencies must be included in the catalogue.</p>
|
||||||
<ul><li>
|
<ul><li>
|
||||||
|
<p><a href="https://gitlab.confdroid.com/puppet/cd_resources">cd_resources</a> for managing yum base repos</p>
|
||||||
|
</li><li>
|
||||||
<p><a href="https://github.com/puppetlabs/puppetlabs-concat">concat</a> for managing file fragments</p>
|
<p><a href="https://github.com/puppetlabs/puppetlabs-concat">concat</a> for managing file fragments</p>
|
||||||
</li></ul>
|
</li></ul>
|
||||||
|
|
||||||
@@ -178,8 +172,6 @@
|
|||||||
|
|
||||||
<p>The proxy instances are configured in /etc/haproxy/haproxy.cfg, which is concatenated from various templates through a define in this puppet module. In order to create proxy instances, you will need an external class, which addresses the define, like so:</p>
|
<p>The proxy instances are configured in /etc/haproxy/haproxy.cfg, which is concatenated from various templates through a define in this puppet module. In order to create proxy instances, you will need an external class, which addresses the define, like so:</p>
|
||||||
|
|
||||||
<p>ACL rule:</p>
|
|
||||||
|
|
||||||
<pre class="code ruby"><code class="ruby">confdroid_haproxy::server::proxy { 'testing':
|
<pre class="code ruby"><code class="ruby">confdroid_haproxy::server::proxy { 'testing':
|
||||||
haproxy_fqdn => 'node.example.net',
|
haproxy_fqdn => 'node.example.net',
|
||||||
frontend_name => 'test01-frontend',
|
frontend_name => 'test01-frontend',
|
||||||
@@ -190,34 +182,8 @@
|
|||||||
}
|
}
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
|
||||||
<p>real Proxy for https:</p>
|
|
||||||
|
|
||||||
<pre class="code ruby"><code class="ruby">haproxy_cd::server::proxy { 'https-in':
|
|
||||||
haproxy_fqdn => 'node.example.net',
|
|
||||||
frontend_name => 'https-in',
|
|
||||||
frontend_mode => 'http',
|
|
||||||
fe_bind_mode => '*:443 ssl crt /etc/haproxy/certs/',
|
|
||||||
fe_option => 'forwardfor',
|
|
||||||
fe_http_request => 'add-header X-Forwarded-Proto https',
|
|
||||||
acl_rule_front => 'host_grafana hdr(host) -i grafana.example.net',
|
|
||||||
fe_use_backend => 'grafana_backend if host_grafana',
|
|
||||||
backend_configs => [
|
|
||||||
{
|
|
||||||
'backend_name' => 'grafana_backend',
|
|
||||||
'be_mode' => 'http',
|
|
||||||
'be_balance' => 'roundrobin',
|
|
||||||
'be_server_name_array' => ['node1 10.0.1.1:8080 check'],
|
|
||||||
}
|
|
||||||
]
|
|
||||||
default_backend => 'error_backend',
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<p>This allows the puppet module to create the sections in the configuration file as required. The haproxy service will be restarted after the changes in the configuration file are made. <code>haproxy_fqdn</code> <strong>must</strong>- contain the fqdn of the haproxy <strong>server</strong>- where this should be configured, otherwise the templates are not being populated. Multiple ACLs need to be added as array, and will create one line each.</p>
|
<p>This allows the puppet module to create the sections in the configuration file as required. The haproxy service will be restarted after the changes in the configuration file are made. <code>haproxy_fqdn</code> <strong>must</strong>- contain the fqdn of the haproxy <strong>server</strong>- where this should be configured, otherwise the templates are not being populated. Multiple ACLs need to be added as array, and will create one line each.</p>
|
||||||
|
|
||||||
<h2 id="label-TLS">TLS</h2>
|
|
||||||
|
|
||||||
<p>Haproxy can manage all sorts of proxies including http and https. It also can terminate https requests and send the requests within a private network unencrypted, which is quite common. <strong>This module is NOT managing certificates</strong>, as there are many ways to manage this, including Kubernetes cert-manager, Let’s encrypt or other ways.</p>
|
|
||||||
|
|
||||||
<h2 id="label-SELINUX">SELINUX</h2>
|
<h2 id="label-SELINUX">SELINUX</h2>
|
||||||
|
|
||||||
<p>All files and directories are configured with correct selinux context. If selinux is disabled, these contexts are ignored. If selinux is set to <code>enforce</code> (not controlled within this module), the parameter <code>hy_selinux_allow_stats</code> must also be set to <code>true</code>, else the haproxy service will not start as selinux will not allow it. This is the default setting.</p>
|
<p>All files and directories are configured with correct selinux context. If selinux is disabled, these contexts are ignored. If selinux is set to <code>enforce</code> (not controlled within this module), the parameter <code>hy_selinux_allow_stats</code> must also be set to <code>true</code>, else the haproxy service will not start as selinux will not allow it. This is the default setting.</p>
|
||||||
|
|||||||
@@ -96,21 +96,14 @@
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
||||||
<li id="object_puppet_classes::confdroid_haproxy::monitoring::target" class="odd">
|
<li id="object_puppet_classes::confdroid_haproxy::params" class="odd">
|
||||||
<div class="item">
|
|
||||||
<span class='object_link'><a href="puppet_classes/confdroid_haproxy_3A_3Amonitoring_3A_3Atarget.html" title="puppet_classes::confdroid_haproxy::monitoring::target (puppet_class)">confdroid_haproxy::monitoring::target</a></span>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
<li id="object_puppet_classes::confdroid_haproxy::params" class="even">
|
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<span class='object_link'><a href="puppet_classes/confdroid_haproxy_3A_3Aparams.html" title="puppet_classes::confdroid_haproxy::params (puppet_class)">confdroid_haproxy::params</a></span>
|
<span class='object_link'><a href="puppet_classes/confdroid_haproxy_3A_3Aparams.html" title="puppet_classes::confdroid_haproxy::params (puppet_class)">confdroid_haproxy::params</a></span>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
||||||
<li id="object_puppet_classes::confdroid_haproxy::server::service" class="odd">
|
<li id="object_puppet_classes::confdroid_haproxy::server::service" class="even">
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<span class='object_link'><a href="puppet_classes/confdroid_haproxy_3A_3Aserver_3A_3Aservice.html" title="puppet_classes::confdroid_haproxy::server::service (puppet_class)">confdroid_haproxy::server::service</a></span>
|
<span class='object_link'><a href="puppet_classes/confdroid_haproxy_3A_3Aserver_3A_3Aservice.html" title="puppet_classes::confdroid_haproxy::server::service (puppet_class)">confdroid_haproxy::server::service</a></span>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -115,12 +115,7 @@
|
|||||||
17
|
17
|
||||||
18
|
18
|
||||||
19
|
19
|
||||||
20
|
20</pre>
|
||||||
21
|
|
||||||
22
|
|
||||||
23
|
|
||||||
24
|
|
||||||
25</pre>
|
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<pre class="code"><span class="info file"># File 'manifests/main/config.pp', line 6</span>
|
<pre class="code"><span class="info file"># File 'manifests/main/config.pp', line 6</span>
|
||||||
@@ -134,14 +129,9 @@ class confdroid_haproxy::main::config (
|
|||||||
include confdroid_haproxy::monitoring::fail2ban
|
include confdroid_haproxy::monitoring::fail2ban
|
||||||
}
|
}
|
||||||
|
|
||||||
if $hy_manage_nagios == true {
|
|
||||||
include confdroid_haproxy::monitoring::target
|
|
||||||
}
|
|
||||||
|
|
||||||
if $hy_selinux_allow_stats == true {
|
if $hy_selinux_allow_stats == true {
|
||||||
exec { 'setsebool haproxy_connect_any on':
|
exec { 'setsebool haproxy_connect_any on':
|
||||||
path => ['/bin', '/usr/bin', '/sbin', '/usr/sbin'],
|
path => ['/bin', '/usr/bin', '/sbin', '/usr/sbin'],
|
||||||
onlyif => '/usr/sbin/getsebool haproxy_connect_any | /usr/bin/grep -q " --> off$"',
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}</pre>
|
}</pre>
|
||||||
|
|||||||
@@ -1,156 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>
|
|
||||||
Puppet Class: confdroid_haproxy::monitoring::target
|
|
||||||
|
|
||||||
— Documentation by YARD 0.9.36
|
|
||||||
|
|
||||||
</title>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../css/style.css" type="text/css" />
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../css/common.css" type="text/css" />
|
|
||||||
|
|
||||||
<script type="text/javascript">
|
|
||||||
pathId = "puppet_classes::confdroid_haproxy::monitoring::target";
|
|
||||||
relpath = '../';
|
|
||||||
</script>
|
|
||||||
|
|
||||||
|
|
||||||
<script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
|
|
||||||
|
|
||||||
<script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="nav_wrap">
|
|
||||||
<iframe id="nav" src="../puppet_class_list.html?1"></iframe>
|
|
||||||
<div id="resizer"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="main" tabindex="-1">
|
|
||||||
<div id="header">
|
|
||||||
<div id="menu">
|
|
||||||
|
|
||||||
<a href="../_index.html">Index (c)</a> »
|
|
||||||
<span class='title'><span class='object_link'>Puppet Classes</span></span>
|
|
||||||
»
|
|
||||||
<span class="title">confdroid_haproxy::monitoring::target</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="search">
|
|
||||||
|
|
||||||
<a class="full_list_link" id="puppet_class_list_link"
|
|
||||||
href="../puppet_class_list.html">
|
|
||||||
|
|
||||||
<svg width="24" height="24">
|
|
||||||
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
|
|
||||||
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
|
|
||||||
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
|
|
||||||
</svg>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="clear"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="content"><h1>Puppet Class: confdroid_haproxy::monitoring::target</h1>
|
|
||||||
<div class="box_info">
|
|
||||||
|
|
||||||
<dl>
|
|
||||||
<dt>Inherits:</dt>
|
|
||||||
<dd><span class='object_link'><a href="confdroid_haproxy_3A_3Aparams.html" title="puppet_classes::confdroid_haproxy::params (puppet_class)">confdroid_haproxy::params</a></span></dd>
|
|
||||||
</dl>
|
|
||||||
|
|
||||||
|
|
||||||
<dl>
|
|
||||||
<dt>Defined in:</dt>
|
|
||||||
<dd>
|
|
||||||
manifests/monitoring/target.pp
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2>Summary</h2>
|
|
||||||
class manages exports for nagios monitoring
|
|
||||||
|
|
||||||
<h2>Overview</h2>
|
|
||||||
<div class="docstring">
|
|
||||||
<div class="discussion">
|
|
||||||
|
|
||||||
<p>confdroid_haproxy::monitoring::target.pp Module name: confdroid_haproxy Author: 12ww1160 (12ww1160@puppetsoft.com)</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div><div class="method_details_list">
|
|
||||||
<table class="source_code">
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<pre class="lines">
|
|
||||||
|
|
||||||
|
|
||||||
6
|
|
||||||
7
|
|
||||||
8
|
|
||||||
9
|
|
||||||
10
|
|
||||||
11
|
|
||||||
12
|
|
||||||
13
|
|
||||||
14
|
|
||||||
15
|
|
||||||
16
|
|
||||||
17
|
|
||||||
18
|
|
||||||
19
|
|
||||||
20
|
|
||||||
21
|
|
||||||
22
|
|
||||||
23</pre>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<pre class="code"><span class="info file"># File 'manifests/monitoring/target.pp', line 6</span>
|
|
||||||
|
|
||||||
class confdroid_haproxy::monitoring::target (
|
|
||||||
|
|
||||||
) inherits confdroid_haproxy::params {
|
|
||||||
if $hy_manage_nagios == true {
|
|
||||||
@@nagios_service { "check_haproxy_${fqdn}":
|
|
||||||
check_command => "check_nrpe!check_haproxy!${hy_procs_allowed}!haproxy",
|
|
||||||
use => 'generic-service',
|
|
||||||
host_name => $fqdn,
|
|
||||||
notification_period => '24x7',
|
|
||||||
service_description => "${fqdn}_check_haproxy",
|
|
||||||
target => $hy_target_service,
|
|
||||||
owner => 'nagios',
|
|
||||||
group => 'nagios',
|
|
||||||
mode => '0640',
|
|
||||||
contacts => $hy_target_contacts,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}</pre>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer">
|
|
||||||
Generated by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>.
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -81,8 +81,6 @@
|
|||||||
|
|
||||||
<span class='object_link'><a href="confdroid_haproxy_3A_3Afirewall_3A_3Aiptables.html" title="puppet_classes::confdroid_haproxy::firewall::iptables (puppet_class)">confdroid_haproxy::firewall::iptables</a></span><br/>
|
<span class='object_link'><a href="confdroid_haproxy_3A_3Afirewall_3A_3Aiptables.html" title="puppet_classes::confdroid_haproxy::firewall::iptables (puppet_class)">confdroid_haproxy::firewall::iptables</a></span><br/>
|
||||||
|
|
||||||
<span class='object_link'><a href="confdroid_haproxy_3A_3Amonitoring_3A_3Atarget.html" title="puppet_classes::confdroid_haproxy::monitoring::target (puppet_class)">confdroid_haproxy::monitoring::target</a></span><br/>
|
|
||||||
|
|
||||||
<span class='object_link'><a href="confdroid_haproxy_3A_3Amonitoring_3A_3Afail2ban.html" title="puppet_classes::confdroid_haproxy::monitoring::fail2ban (puppet_class)">confdroid_haproxy::monitoring::fail2ban</a></span><br/>
|
<span class='object_link'><a href="confdroid_haproxy_3A_3Amonitoring_3A_3Afail2ban.html" title="puppet_classes::confdroid_haproxy::monitoring::fail2ban (puppet_class)">confdroid_haproxy::monitoring::fail2ban</a></span><br/>
|
||||||
|
|
||||||
</dd>
|
</dd>
|
||||||
@@ -885,73 +883,6 @@
|
|||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
|
|
||||||
<span class='name'>hy_manage_nagios</span>
|
|
||||||
|
|
||||||
|
|
||||||
<span class='type'>(<tt>Boolean</tt>)</span>
|
|
||||||
|
|
||||||
|
|
||||||
<em class="default">(defaults to: <tt>false</tt>)</em>
|
|
||||||
|
|
||||||
|
|
||||||
—
|
|
||||||
<div class='inline'>
|
|
||||||
<p>whether to manage nagios service checks</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
|
|
||||||
<span class='name'>hy_target_service</span>
|
|
||||||
|
|
||||||
|
|
||||||
<span class='type'>(<tt>String</tt>)</span>
|
|
||||||
|
|
||||||
|
|
||||||
<em class="default">(defaults to: <tt>'/etc/nagios/conf.d/haproxy_service.cfg'</tt>)</em>
|
|
||||||
|
|
||||||
|
|
||||||
—
|
|
||||||
<div class='inline'>
|
|
||||||
<p>the path to the nagios service check file</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
|
|
||||||
<span class='name'>hy_target_contacts</span>
|
|
||||||
|
|
||||||
|
|
||||||
<span class='type'>(<tt>Array</tt>)</span>
|
|
||||||
|
|
||||||
|
|
||||||
<em class="default">(defaults to: <tt>['nagiosadmin']</tt>)</em>
|
|
||||||
|
|
||||||
|
|
||||||
—
|
|
||||||
<div class='inline'>
|
|
||||||
<p>the contacts to use for nagios service checks</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
|
|
||||||
<span class='name'>hy_procs_allowed</span>
|
|
||||||
|
|
||||||
|
|
||||||
<span class='type'>(<tt>String</tt>)</span>
|
|
||||||
|
|
||||||
|
|
||||||
<em class="default">(defaults to: <tt>'1:'</tt>)</em>
|
|
||||||
|
|
||||||
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
@@ -963,6 +894,9 @@
|
|||||||
<pre class="lines">
|
<pre class="lines">
|
||||||
|
|
||||||
|
|
||||||
|
59
|
||||||
|
60
|
||||||
|
61
|
||||||
62
|
62
|
||||||
63
|
63
|
||||||
64
|
64
|
||||||
@@ -1051,19 +985,10 @@
|
|||||||
147
|
147
|
||||||
148
|
148
|
||||||
149
|
149
|
||||||
150
|
150</pre>
|
||||||
151
|
|
||||||
152
|
|
||||||
153
|
|
||||||
154
|
|
||||||
155
|
|
||||||
156
|
|
||||||
157
|
|
||||||
158
|
|
||||||
159</pre>
|
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 62</span>
|
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 59</span>
|
||||||
|
|
||||||
class confdroid_haproxy::params (
|
class confdroid_haproxy::params (
|
||||||
|
|
||||||
@@ -1124,12 +1049,6 @@ class confdroid_haproxy::params (
|
|||||||
Boolean $hy_manage_be_users = false,
|
Boolean $hy_manage_be_users = false,
|
||||||
String $hy_be_userlist = '####',
|
String $hy_be_userlist = '####',
|
||||||
|
|
||||||
# nagios
|
|
||||||
Boolean $hy_manage_nagios = false,
|
|
||||||
String $hy_target_service = '/etc/nagios/conf.d/haproxy_service.cfg',
|
|
||||||
Array $hy_target_contacts = ['nagiosadmin'],
|
|
||||||
String $hy_procs_allowed = '1:'
|
|
||||||
|
|
||||||
) {
|
) {
|
||||||
$fqdn = $facts['networking']['fqdn']
|
$fqdn = $facts['networking']['fqdn']
|
||||||
|
|
||||||
|
|||||||
@@ -12,14 +12,9 @@ class confdroid_haproxy::main::config (
|
|||||||
include confdroid_haproxy::monitoring::fail2ban
|
include confdroid_haproxy::monitoring::fail2ban
|
||||||
}
|
}
|
||||||
|
|
||||||
if $hy_manage_nagios == true {
|
|
||||||
include confdroid_haproxy::monitoring::target
|
|
||||||
}
|
|
||||||
|
|
||||||
if $hy_selinux_allow_stats == true {
|
if $hy_selinux_allow_stats == true {
|
||||||
exec { 'setsebool haproxy_connect_any on':
|
exec { 'setsebool haproxy_connect_any on':
|
||||||
path => ['/bin', '/usr/bin', '/sbin', '/usr/sbin'],
|
path => ['/bin', '/usr/bin', '/sbin', '/usr/sbin'],
|
||||||
onlyif => '/usr/sbin/getsebool haproxy_connect_any | /usr/bin/grep -q " --> off$"',
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
## confdroid_haproxy::monitoring::target.pp
|
|
||||||
# Module name: confdroid_haproxy
|
|
||||||
# Author: 12ww1160 (12ww1160@puppetsoft.com)
|
|
||||||
# @summary class manages exports for nagios monitoring
|
|
||||||
##############################################################################
|
|
||||||
class confdroid_haproxy::monitoring::target (
|
|
||||||
|
|
||||||
) inherits confdroid_haproxy::params {
|
|
||||||
if $hy_manage_nagios == true {
|
|
||||||
@@nagios_service { "check_haproxy_${fqdn}":
|
|
||||||
check_command => "check_nrpe!check_haproxy!${hy_procs_allowed}!haproxy",
|
|
||||||
use => 'generic-service',
|
|
||||||
host_name => $fqdn,
|
|
||||||
notification_period => '24x7',
|
|
||||||
service_description => "${fqdn}_check_haproxy",
|
|
||||||
target => $hy_target_service,
|
|
||||||
owner => 'nagios',
|
|
||||||
group => 'nagios',
|
|
||||||
mode => '0640',
|
|
||||||
contacts => $hy_target_contacts,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -55,9 +55,6 @@
|
|||||||
# @param [Boolean] hy_manage_be_users whether to manage backend users
|
# @param [Boolean] hy_manage_be_users whether to manage backend users
|
||||||
# @param [Boolean] hy_selinux_allow_stats whether to allow stats in selinux
|
# @param [Boolean] hy_selinux_allow_stats whether to allow stats in selinux
|
||||||
# @param [String] hy_stats_port the port to use for stats. used in firewall settings
|
# @param [String] hy_stats_port the port to use for stats. used in firewall settings
|
||||||
# @param [Boolean] hy_manage_nagios whether to manage nagios service checks
|
|
||||||
# @param [String] hy_target_service the path to the nagios service check file
|
|
||||||
# @param [Array] hy_target_contacts the contacts to use for nagios service checks
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
class confdroid_haproxy::params (
|
class confdroid_haproxy::params (
|
||||||
|
|
||||||
@@ -118,12 +115,6 @@ class confdroid_haproxy::params (
|
|||||||
Boolean $hy_manage_be_users = false,
|
Boolean $hy_manage_be_users = false,
|
||||||
String $hy_be_userlist = '####',
|
String $hy_be_userlist = '####',
|
||||||
|
|
||||||
# nagios
|
|
||||||
Boolean $hy_manage_nagios = false,
|
|
||||||
String $hy_target_service = '/etc/nagios/conf.d/haproxy_service.cfg',
|
|
||||||
Array $hy_target_contacts = ['nagiosadmin'],
|
|
||||||
String $hy_procs_allowed = '1:'
|
|
||||||
|
|
||||||
) {
|
) {
|
||||||
$fqdn = $facts['networking']['fqdn']
|
$fqdn = $facts['networking']['fqdn']
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user