* Update CHANGELOG with release notes URL.
* Update README with new release number & name.
* Update metadata.json with new tag & dependencies.
* Add release note prelude for Mitaka.
* Update Reno release note to drop prelude.
* Improve release note landing page.
Change-Id: I55cb70b74940eeed95e911b4df24f8320f57fe6d
With the creation of the new openstack_config provider, some
essing
that was done in zaqar_config has been centralized in
openstack_config.
Impacted methods are :
* section
* setting
* separator
Also, this commit adds the fact that, when passing a specific string
(ensure_absent_val) the provider will behave as if ensure => absent
was
specified. '<SERVICE DEFAULT>' is the default value for
ensure_absent_val.
The use case is the following :
zaqar_config { 'DEFAULT/foo' : value => 'bar' } # will work as
l
zaqar_config { 'DEFAULT/foo' : value => '<SERVICE DEFAULT>' } #
mean absent
That means that all the current :
if $myvar {
zaqar_config { 'DEFAULT/foo' : value => $myvar }
} else {
zaqar_config { 'DEFAULT/foo' : ensure => absent }
}
can be removed in favor of :
zaqar_config { 'DEFAULT/foo' : value => $myvar }
If for any reason '<SERVICE DEFAULT>' turns out to be a valid value
for a specific parameter. One could by pass that doing the following
zaqar_config { 'DEFAULT/foo' : value => '<SERVICE DEFAULT>',
ensure_absent_val => 'foo' }
Change-Id: Iaaf2e5755080ef32d7d585465aaea6fd408d0ece
This patch fixes the puppet forge namespace, and bump min dependency to Kilo
https://wiki.openstack.org/wiki/Puppet/releases.
Change-Id: I2640446d5dfd6bea6e43a52e016a813ef78a105f
Signed-off-by: Gael Chamoulaud <gchamoul@redhat.com>