a23f1929b7
When you tried to use the environemnt/logging-environemnt.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: #1629315 Change-Id: I55e5c7f20ddf30f3e48247b734f6fa47f5de3750 Signed-off-by: Juan Badia Payno <jbadiapa@redhat.com>
30 lines
657 B
YAML
30 lines
657 B
YAML
## A Heat environment file which can be used to set up
|
|
## logging agents
|
|
|
|
resource_registry:
|
|
OS::TripleO::Services::FluentdClient: ../puppet/services/logging/fluentd-client.yaml
|
|
|
|
#parameter_defaults:
|
|
|
|
## Simple configuration
|
|
#
|
|
# LoggingServers:
|
|
# - host: log0.example.com
|
|
# port: 24224
|
|
# - host: log1.example.com
|
|
# port: 24224
|
|
#
|
|
## Example SSL configuration
|
|
## (note the use of port 24284 for ssl connections)
|
|
#
|
|
# LoggingServers:
|
|
# - host: 192.0.2.11
|
|
# port: 24284
|
|
# LoggingUsesSSL: true
|
|
# LoggingSharedKey: secret
|
|
# LoggingSSLCertificate: |
|
|
# -----BEGIN CERTIFICATE-----
|
|
# ...certificate data here...
|
|
# -----END CERTIFICATE-----
|
|
|