Parametrize Gearman client listening port and host
The Log Gearman Client got hardcoded value for listening host and it also uses default Gear port (4730) for listening. It would be helpful for some deployments to parametrize those options. Change-Id: I01f41468f66008bf8ee7902e9f7dd4b31abbbf45
This commit is contained in:
@@ -10,6 +10,8 @@ container_images:
|
||||
loggearman: quay.rdoproject.org/software-factory/loggearman:latest
|
||||
|
||||
# Gearman client
|
||||
gearman_client_host: 0.0.0.0
|
||||
gearman_client_port: 4730
|
||||
source_url: ""
|
||||
zmq_publishers: []
|
||||
subunit_files: []
|
||||
@@ -17,7 +19,7 @@ source_files: []
|
||||
|
||||
# Gearman worker
|
||||
gearman_host: 0.0.0.0
|
||||
gearman_port: 4731
|
||||
gearman_port: 4730
|
||||
output_host: logstash.example.com
|
||||
output_port: 9999
|
||||
output_mode: tcp
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
---
|
||||
gearman-host: {{ gearman_client_host }}
|
||||
gearman-port: {{ gearman_client_port }}
|
||||
source-url: {{ source_url }}
|
||||
zmq-publishers: {{ zmq_publishers }}
|
||||
subunit-files: {{ subunit_files }}
|
||||
|
||||
Reference in New Issue
Block a user