Merge "haproxy: redirect logs to a separate file"
This commit is contained in:
commit
c5bce86dfa
8
playbooks/roles/haproxy/files/rsyslog.d/49-haproxy.conf
Normal file
8
playbooks/roles/haproxy/files/rsyslog.d/49-haproxy.conf
Normal file
@ -0,0 +1,8 @@
|
||||
# Create additional haproxy socket to be mapped into container
|
||||
|
||||
$AddUnixListenSocket /var/haproxy/dev/log
|
||||
|
||||
:programname, startswith, "haproxy" {
|
||||
/var/log/haproxy.log
|
||||
stop
|
||||
}
|
@ -12,12 +12,34 @@
|
||||
loop:
|
||||
- etc
|
||||
- run
|
||||
- dev
|
||||
|
||||
- name: Ensure haproxy config template available
|
||||
assert:
|
||||
that:
|
||||
- haproxy_config_template is defined
|
||||
|
||||
- name: Write rsyslog file
|
||||
copy:
|
||||
src: rsyslog.d/49-haproxy.conf
|
||||
dest: /etc/rsyslog.d/
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0644
|
||||
register: _rsyslog_added
|
||||
|
||||
- name: Restart rsyslog if config updates
|
||||
service:
|
||||
name: rsyslog
|
||||
state: restarted
|
||||
when: _rsyslog_added.changed
|
||||
|
||||
- name: Add haproxy log rotation
|
||||
include_role:
|
||||
name: logrotate
|
||||
vars:
|
||||
logrotate_file_name: '/var/log/haproxy.log'
|
||||
|
||||
- name: Write haproxy config file
|
||||
template:
|
||||
src: '{{ haproxy_config_template }}'
|
||||
|
@ -35,7 +35,7 @@ services:
|
||||
user: "root:root"
|
||||
network_mode: host
|
||||
volumes:
|
||||
- /dev/log:/dev/log
|
||||
- /var/haproxy/dev/log:/dev/log
|
||||
- /var/haproxy/etc:/usr/local/etc/haproxy:ro
|
||||
- /var/haproxy/run:/var/haproxy/run
|
||||
logging:
|
||||
|
@ -611,6 +611,7 @@
|
||||
gitea-lb01.opendev.org:
|
||||
host_copy_output:
|
||||
'/var/haproxy/etc': logs
|
||||
'/var/log/haproxy.log': logs
|
||||
files:
|
||||
- playbooks/bootstrap-bridge.yaml
|
||||
- playbooks/letsencrypt.yaml
|
||||
@ -895,6 +896,7 @@
|
||||
zuul-lb01.opendev.org:
|
||||
host_copy_output:
|
||||
'/var/haproxy/etc': logs
|
||||
'/var/log/haproxy.log': logs
|
||||
files:
|
||||
- playbooks/bootstrap-bridge.yaml
|
||||
- playbooks/service-zookeeper.yaml
|
||||
|
Loading…
Reference in New Issue
Block a user