aboutsummaryrefslogtreecommitdiffstats
path: root/manifests
diff options
context:
space:
mode:
authorHonza Pokorny <honza@redhat.com>2017-09-11 14:53:41 -0300
committerHonza Pokorny <honza@redhat.com>2017-10-06 09:20:18 +0000
commitfb0f290777c2f17ebd1d558805be06fe65f1c331 (patch)
tree75e42aa7ec3359157c7d9c11eec0ea4c4773d450 /manifests
parent67e1e603a6b81e7532eb2cac2e27eec1ea413d32 (diff)
Add a new configuration option for GUI loggers
This allows us to set up logging for the TripleO GUI. By default, it enables the 'console' and 'zaqar' loggers. Change-Id: Iafc874643c29e63ff670831fe80f6601c3051865 Closes-Bug: #1716458 (cherry picked from commit 5158c7ab1669d9d3e8c8163be9fdfc9b3a3aea96)
Diffstat (limited to 'manifests')
-rw-r--r--manifests/ui.pp5
1 files changed, 5 insertions, 0 deletions
diff --git a/manifests/ui.pp b/manifests/ui.pp
index cb1da21..3caaf9b 100644
--- a/manifests/ui.pp
+++ b/manifests/ui.pp
@@ -96,6 +96,10 @@
# A string.
# Defaults to 'tripleo'
#
+# [*enabled_loggers*]
+# List of enabled loggers
+# Defaults to ['console', 'zaqar']
+#
class tripleo::ui (
$servername = $::fqdn,
$bind_host = hiera('controller_host'),
@@ -116,6 +120,7 @@ class tripleo::ui (
$endpoint_config_ironic_inspector = undef,
$endpoint_config_mistral = undef,
$endpoint_config_swift = undef,
+ $enabled_loggers = ['console', 'zaqar'],
) {
package {'openstack-tripleo-ui': }