diff options
author | Juan Badia Payno <jbadiapa@redhat.com> | 2016-09-30 10:25:44 +0200 |
---|---|---|
committer | Juan Badia Payno <jbadiapa@redhat.com> | 2016-09-30 15:36:33 +0200 |
commit | b6b35e4785cd98e7bb356adc8c5d79a27a94af8f (patch) | |
tree | a0f6416849a10e1cb0e47b781f60749f3ce42141 | |
parent | d601d64e110f5dfd3e471adc82ad8f898158c175 (diff) |
Fixed NoneType issue when monitoring-environment.yaml
When you tried to use the environemnt/monitoring-environment.yaml
as a part of the deployment on the overcloud you hit the
following error and it stops the deploy of the overcloud.
***
Deploying templates in the directory /home/stack/tripleo-heat-templates
'NoneType' object does not support item assignment
***
Closes-Bug: #1629323
Change-Id: I8cf2e7d8f3a4e79cc71a1566ec17d0a977c38d60
Signed-off-by: Juan Badia Payno <jbadiapa@redhat.com>
-rw-r--r-- | environments/monitoring-environment.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/environments/monitoring-environment.yaml b/environments/monitoring-environment.yaml index a8ad2084..62ab06dc 100644 --- a/environments/monitoring-environment.yaml +++ b/environments/monitoring-environment.yaml @@ -4,7 +4,7 @@ resource_registry: OS::TripleO::Services::SensuClient: ../puppet/services/monitoring/sensu-client.yaml -parameter_defaults: +#parameter_defaults: #### Sensu settings #### ##MonitoringRabbitHost: 10.10.10.10 ##MonitoringRabbitPort: 5672 |