Change ManageEventPipeline to true

Since the event pipeline publisher defaults in the heat templates are
different from what puppet sets. We need to have the Manage to true so
override takes effect. Without this we keep defaulting back to puppet
defaults. We can flip this back to false once panko:// is droppped as
a supported option from the pipeline.

Change-Id: I2248c165783dddfb4cb7cf5644884dd8f6e6ed63
This commit is contained in:
Pradeep Kilambi 2017-08-28 08:00:02 -04:00
parent f2d7d4d733
commit 941b5d6797
2 changed files with 7 additions and 1 deletions

View File

@ -43,7 +43,7 @@ parameters:
description: Number of workers for Ceilometer service.
type: number
ManageEventPipeline:
default: false
default: true
description: Whether to manage event_pipeline.yaml.
type: boolean
EventPipelinePublishers:

View File

@ -0,0 +1,6 @@
---
fixes:
- Change the default ManageEventPipeline to true. This is because we want
the event pipeline publishers overridden by heat templates to take
effect over the puppet defaults. Once we drop panko:// from the pipeline
we can switch this back to false.