
We don't need/want the ConfigDebug enabled by default, too verbose.
This reverts commit 7bef443b73
.
Change-Id: I167d00ee812f8442a3f2294a2bdad01ec8a9c052
14 lines
675 B
Django/Jinja
14 lines
675 B
Django/Jinja
{#
|
|
This takes advantage of the fact that valid JSON is also
|
|
valid YAML. The default to_nice_yaml filter doesn't quote strings,
|
|
which can cause unexpected implicit type conversion when the
|
|
resulting YAML is consumed, whereas with JSON all strings are quoted.
|
|
#}
|
|
{% if undercloud_resource_registry_args %}
|
|
{% set undercloud_resource_registry = {'resource_registry': undercloud_resource_registry_args} %}
|
|
{% else %}
|
|
{% set undercloud_resource_registry = {} %}
|
|
{% endif %}
|
|
{% set undercloud_parameter_defaults = {'parameter_defaults': undercloud_network_environment_args} %}
|
|
{{ undercloud_parameter_defaults|combine(undercloud_resource_registry, recursive=True)|to_nice_json }}
|