<feed xmlns='http://www.w3.org/2005/Atom'>
<title>csa/devops/ansible-patches/openshift.git/roles/openshift_logging_fluentd/tasks, branch ands</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.ru.suren.me/cgit/csa/devops/ansible-patches/openshift.git/'/>
<entry>
<title>Adding support for ES 5.x tech preview opt in</title>
<updated>2018-02-05T19:44:16+00:00</updated>
<author>
<name>Eric Wolinetz</name>
<email>ewolinet@redhat.com</email>
</author>
<published>2018-01-05T17:06:43+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.ru.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=d5879135f077e4aaaa09c8e4ebf5d9ef2a063a78'/>
<id>d5879135f077e4aaaa09c8e4ebf5d9ef2a063a78</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #6679 from vrutkovs/logging-py3-dicts</title>
<updated>2018-01-11T13:08:05+00:00</updated>
<author>
<name>OpenShift Merge Robot</name>
<email>openshift-merge-robot@users.noreply.github.com</email>
</author>
<published>2018-01-11T13:08:05+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.ru.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=f472139a1001508aa1b245e816395313acccaf1d'/>
<id>f472139a1001508aa1b245e816395313acccaf1d</id>
<content type='text'>
Automatic merge from submit-queue.

logging: fix jinja filters to support py3</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Automatic merge from submit-queue.

logging: fix jinja filters to support py3</pre>
</div>
</content>
</entry>
<entry>
<title>logging: fix jinja filters to support py3</title>
<updated>2018-01-10T09:52:00+00:00</updated>
<author>
<name>Vadim Rutkovsky</name>
<email>vrutkovs@redhat.com</email>
</author>
<published>2018-01-10T09:18:59+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.ru.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=d07d3d922cec9e88fe16d4392c738ec7e3e1f82e'/>
<id>d07d3d922cec9e88fe16d4392c738ec7e3e1f82e</id>
<content type='text'>
Since py3 returns `dict_items` for dict.keys() call instead of a list,
it should be converted into a list for compatibility

Signed-off-by: Vadim Rutkovsky &lt;vrutkovs@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since py3 returns `dict_items` for dict.keys() call instead of a list,
it should be converted into a list for compatibility

Signed-off-by: Vadim Rutkovsky &lt;vrutkovs@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove become statements</title>
<updated>2018-01-09T19:56:54+00:00</updated>
<author>
<name>Michael Gugino</name>
<email>mgugino@redhat.com</email>
</author>
<published>2018-01-09T19:11:16+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.ru.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=3b07acdcd41e215dedc4d4c7c7303b807e59333d'/>
<id>3b07acdcd41e215dedc4d4c7c7303b807e59333d</id>
<content type='text'>
This commit removes become:no statements that break
the installer in various ways.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit removes become:no statements that break
the installer in various ways.
</pre>
</div>
</content>
</entry>
<entry>
<title>Migrate to import_role for static role inclusion</title>
<updated>2018-01-05T17:44:56+00:00</updated>
<author>
<name>Scott Dodson</name>
<email>sdodson@redhat.com</email>
</author>
<published>2018-01-05T17:44:56+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.ru.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=eacc12897ca86a255f89b8a4537ce2b7004cf319'/>
<id>eacc12897ca86a255f89b8a4537ce2b7004cf319</id>
<content type='text'>
In Ansible 2.2, the include_role directive came into existence as
a Tech Preview. It is still a Tech Preview through Ansible 2.4
(and in current devel branch), but with a noteable change. The
default behavior switched from static: true to static: false
because that functionality moved to the newly introduced
import_role directive (in order to stay consistent with include*
being dynamic in nature and `import* being static in nature).

The dynamic include is considerably more memory intensive as it will
dynamically create a role import for every host in the inventory
list to be used. (Also worth noting, there is at the time of this
writing an object allocation inefficiency in the dynamic include
that can in certain situations amplify this effect considerably)

This change is meant to mitigate the pressure on memory for the
Ansible control host.

We need to evaluate where it makes sense to dynamically include roles
and revert back to dynamic inclusion if and where it makes sense to do
so.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In Ansible 2.2, the include_role directive came into existence as
a Tech Preview. It is still a Tech Preview through Ansible 2.4
(and in current devel branch), but with a noteable change. The
default behavior switched from static: true to static: false
because that functionality moved to the newly introduced
import_role directive (in order to stay consistent with include*
being dynamic in nature and `import* being static in nature).

The dynamic include is considerably more memory intensive as it will
dynamically create a role import for every host in the inventory
list to be used. (Also worth noting, there is at the time of this
writing an object allocation inefficiency in the dynamic include
that can in certain situations amplify this effect considerably)

This change is meant to mitigate the pressure on memory for the
Ansible control host.

We need to evaluate where it makes sense to dynamically include roles
and revert back to dynamic inclusion if and where it makes sense to do
so.
</pre>
</div>
</content>
</entry>
<entry>
<title>Updating logging_facts to be able to pull values from config maps yaml files, use diffs to keep custom changes, white list certain settings when creating diffs</title>
<updated>2018-01-02T17:16:04+00:00</updated>
<author>
<name>Eric Wolinetz</name>
<email>ewolinet@redhat.com</email>
</author>
<published>2017-10-26T01:45:34+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.ru.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=8cb27ae800df71ee816852df56cd2c861a0f0a0a'/>
<id>8cb27ae800df71ee816852df56cd2c861a0f0a0a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove references to deployment_type</title>
<updated>2017-12-21T17:28:19+00:00</updated>
<author>
<name>Michael Gugino</name>
<email>mgugino@redhat.com</email>
</author>
<published>2017-12-19T21:36:47+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.ru.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=e3cf9edff6d0186b09b1a112592f283fab6857d0'/>
<id>e3cf9edff6d0186b09b1a112592f283fab6857d0</id>
<content type='text'>
Move openshift_deployment_type check into sanity_check
action plugin.  Remove compatibility for deployment_type.

deployment_type has been deprecated for some time now.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Move openshift_deployment_type check into sanity_check
action plugin.  Remove compatibility for deployment_type.

deployment_type has been deprecated for some time now.
</pre>
</div>
</content>
</entry>
<entry>
<title>Relocate filter plugins to lib_utils</title>
<updated>2017-12-18T21:46:22+00:00</updated>
<author>
<name>Michael Gugino</name>
<email>mgugino@redhat.com</email>
</author>
<published>2017-12-13T17:42:32+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.ru.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=801779eeb6f6308f81ae7c48409de7686c04a0aa'/>
<id>801779eeb6f6308f81ae7c48409de7686c04a0aa</id>
<content type='text'>
This commit relocates filter_plugings to lib_utils,
changes the namespacing to prevent unintended use of
older versions that may be present in filter_plugins/
directory on existing installs.

Add lib_utils to meta depends for roles

Also consolidate some plugins into lib_utils from
various other areas.

Update rpm spec, obsolete plugin rpms.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit relocates filter_plugings to lib_utils,
changes the namespacing to prevent unintended use of
older versions that may be present in filter_plugins/
directory on existing installs.

Add lib_utils to meta depends for roles

Also consolidate some plugins into lib_utils from
various other areas.

Update rpm spec, obsolete plugin rpms.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #6369 from irozzo-1A/logging-become</title>
<updated>2017-12-13T15:13:31+00:00</updated>
<author>
<name>Russell Teague</name>
<email>rteague@redhat.com</email>
</author>
<published>2017-12-13T15:13:31+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.ru.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=60b4ff05093602811b1031b59436322ff5719a45'/>
<id>60b4ff05093602811b1031b59436322ff5719a45</id>
<content type='text'>
Do not escalate privileges in logging stack deployment task</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Do not escalate privileges in logging stack deployment task</pre>
</div>
</content>
</entry>
<entry>
<title>Include Deprecation: Convert to include_tasks</title>
<updated>2017-12-06T14:48:59+00:00</updated>
<author>
<name>Russell Teague</name>
<email>rteague@redhat.com</email>
</author>
<published>2017-12-06T14:48:59+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.ru.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=50751e3c5e8e8dca97cd27d4c93944515666c8b5'/>
<id>50751e3c5e8e8dca97cd27d4c93944515666c8b5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
