Merge "Add arguments for image upload logs"

This commit is contained in:
Jenkins 2016-11-15 00:17:26 +00:00 committed by Gerrit Code Review
commit 48fd0cc79a

View File

@ -29,6 +29,9 @@ class openstackci::nodepool (
$image_log_document_root = '/var/log/nodepool/image',
$image_log_periodic_cleanup = true,
$enable_image_log_via_http = true,
$upload_log_document_root = '/var/log/nodepool/upload',
$upload_log_periodic_cleanup = true,
$enable_upload_log_via_http = false,
$project_config_repo = '',
$project_config_base = undef,
$logging_conf_template = 'nodepool/nodepool.logging.conf.erb',
@ -62,6 +65,9 @@ class openstackci::nodepool (
image_log_document_root => $image_log_document_root,
image_log_periodic_cleanup => $image_log_periodic_cleanup,
enable_image_log_via_http => $enable_image_log_via_http,
upload_log_document_root => $upload_log_document_root,
upload_log_periodic_cleanup => $upload_log_periodic_cleanup,
enable_upload_log_via_http => $enable_upload_log_via_http,
environment => $environment,
scripts_dir => $::project_config::nodepool_scripts_dir,
elements_dir => $::project_config::nodepool_elements_dir,