openstack-ansible/releasenotes/notes/config_template-MultiStrOps-support-c28e33fd5044e14d.yaml
Jesse Pretorius bb69b667f0 Update all SHAs for Newton-1 2016-06-02
This patch updates all the roles to the latest available SHA's,
updates all the OpenStack Service SHA's and also updates the
appropriate python requirements pins.

Change-Id: Ifc77c02d456500651e8adcaf9338f81601e2c148
2016-06-02 21:05:45 +00:00

30 lines
719 B
YAML

---
features:
- |
The ability to support MultiStrOps has been added to the
config_template action plugin. This change updates the parser to use
the ``set()`` type to determine if values within a given key are to be
rendered as ``MultiStrOps``. If an override is used in an INI config
file the set type is defined using the standard yaml construct of "?"
as the item marker.
::
# Example Override Entries
Section:
typical_list_things:
- 1
- 2
multistrops_things:
? a
? b
::
# Example Rendered Config:
[Section]
typical_list_things = 1,2
multistrops_things = a
multistrops_things = b