From 32ba77aa39753d89fc98cfe8707fda4a530f9c48 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Thu, 3 Aug 2017 12:53:54 -0400 Subject: [PATCH] Fix mqtt username and password vars in logstash worker config The mqtt username and password variables in the logstash work config template were incorrect and didn't match what was being set in logstash_worker.pp. This commit fixes it so everything matches. Change-Id: I959fbd0cf1d7535ff75b42c228e5f74ada8fe5d3 --- .../templates/logstash/jenkins-log-worker.yaml.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/openstack_project/templates/logstash/jenkins-log-worker.yaml.erb b/modules/openstack_project/templates/logstash/jenkins-log-worker.yaml.erb index c744e6bc63..263b5e24c3 100644 --- a/modules/openstack_project/templates/logstash/jenkins-log-worker.yaml.erb +++ b/modules/openstack_project/templates/logstash/jenkins-log-worker.yaml.erb @@ -8,6 +8,6 @@ crm114-data: /var/lib/crm114 mqtt-host: <%= @mqtt_hostname %> mqtt-port: <%= @mqtt_port %> mqtt-topic: gearman-logstash/<%= @hostname %> -mqtt-user: <%= @mqtt_user %> -mqtt-pass: <%= @mqtt_pass %> +mqtt-user: <%= @mqtt_username %> +mqtt-pass: <%= @mqtt_password %> mqtt-ca-certs: /etc/logstash/mqtt-root-CA.pem.crt