<feed xmlns='http://www.w3.org/2005/Atom'>
<title>csa/devops/ansible-patches/openshift.git/playbooks/openstack/openshift-cluster, branch ands</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/'/>
<entry>
<title>Remove cluster_facts.yml from the install.yml</title>
<updated>2018-02-12T15:58:51+00:00</updated>
<author>
<name>Tomas Sedovic</name>
<email>tomas@sedovic.cz</email>
</author>
<published>2018-02-12T15:58:51+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=abd62c5613d47a58ea3a5ef636eb79563d02b8f6'/>
<id>abd62c5613d47a58ea3a5ef636eb79563d02b8f6</id>
<content type='text'>
It was moved there by accident. There's no reason to have it there
explicitly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It was moved there by accident. There's no reason to have it there
explicitly.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix OpenStack playbooks</title>
<updated>2018-02-12T10:17:02+00:00</updated>
<author>
<name>Tomas Sedovic</name>
<email>tomas@sedovic.cz</email>
</author>
<published>2018-01-31T13:42:58+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=d9c87eaa322c3422d679bcd36422a613278f6345'/>
<id>d9c87eaa322c3422d679bcd36422a613278f6345</id>
<content type='text'>
This shuffles a few playbooks around to fix the ordering between various
facts and prerequisites.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This shuffles a few playbooks around to fix the ordering between various
facts and prerequisites.
</pre>
</div>
</content>
</entry>
<entry>
<title>Install base_packages earlier</title>
<updated>2018-01-22T16:43:10+00:00</updated>
<author>
<name>Michael Gugino</name>
<email>mgugino@redhat.com</email>
</author>
<published>2018-01-22T16:02:12+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=7b33ab6dad2f9775a4e206ec90bc10ce46ae02f6'/>
<id>7b33ab6dad2f9775a4e206ec90bc10ce46ae02f6</id>
<content type='text'>
Currently, openshift_facts requires pyyaml to be installed.
This package is installed via init/base_packages.yml, which
is currently called after init/facts.yml.  This results
in a situation where installs will fail due to missing
python dependency.

This commit splits init/facts.yml into two, and
allows base_packages.yml to be run before the
openshift_facts.py plugin is executed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently, openshift_facts requires pyyaml to be installed.
This package is installed via init/base_packages.yml, which
is currently called after init/facts.yml.  This results
in a situation where installs will fail due to missing
python dependency.

This commit splits init/facts.yml into two, and
allows base_packages.yml to be run before the
openshift_facts.py plugin is executed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #6580 from tomassedovic/openstack-fixes</title>
<updated>2018-01-08T20:46:52+00:00</updated>
<author>
<name>OpenShift Merge Robot</name>
<email>openshift-merge-robot@users.noreply.github.com</email>
</author>
<published>2018-01-08T20:46:52+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=74294d8258a4812752434feaf4cd4b512a992af8'/>
<id>74294d8258a4812752434feaf4cd4b512a992af8</id>
<content type='text'>
Automatic merge from submit-queue.

Openstack fixes

This includes a few fixes for the OpenStack provider.

It should fix #6555 and possibly also #6560.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Automatic merge from submit-queue.

Openstack fixes

This includes a few fixes for the OpenStack provider.

It should fix #6555 and possibly also #6560.</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.master.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>Import prerequisites.yml for OpenStack</title>
<updated>2018-01-02T15:14:01+00:00</updated>
<author>
<name>Tomas Sedovic</name>
<email>tomas@sedovic.cz</email>
</author>
<published>2018-01-02T15:14:01+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=b7833d6684a238713821cc5e0eb2fa7be99c8197'/>
<id>b7833d6684a238713821cc5e0eb2fa7be99c8197</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>set repos after registration: convert to match task -&gt; import_role model.</title>
<updated>2017-12-18T20:31:09+00:00</updated>
<author>
<name>Mark Lamourine</name>
<email>markllama@gmail.com</email>
</author>
<published>2017-12-18T18:53:09+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=0c0cdae27567f65e38be4c56d0c2060dc821d156'/>
<id>0c0cdae27567f65e38be4c56d0c2060dc821d156</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix rhel_subscribe boolean</title>
<updated>2017-12-15T14:33:28+00:00</updated>
<author>
<name>Michael Gugino</name>
<email>mgugino@redhat.com</email>
</author>
<published>2017-12-15T14:33:28+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=34139ef4ef095aaf0be2a9c44e7379731f56a4e7'/>
<id>34139ef4ef095aaf0be2a9c44e7379731f56a4e7</id>
<content type='text'>
This commit fixes a variable name to it's correct
name used in a when condition.

Also makes use of 'is defined' consistent.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit fixes a variable name to it's correct
name used in a when condition.

Also makes use of 'is defined' consistent.
</pre>
</div>
</content>
</entry>
<entry>
<title>Include Deprecation: Convert to import_playbook</title>
<updated>2017-12-07T17:30:17+00:00</updated>
<author>
<name>Russell Teague</name>
<email>rteague@redhat.com</email>
</author>
<published>2017-12-06T14:27:18+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=e64462aa1dfedbdc9b0bc3fae22e3fcca8f5b83b'/>
<id>e64462aa1dfedbdc9b0bc3fae22e3fcca8f5b83b</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 #6361 from mtnbikenc/consolidate-deploy-cluster</title>
<updated>2017-12-07T17:05:34+00:00</updated>
<author>
<name>Scott Dodson</name>
<email>sdodson@redhat.com</email>
</author>
<published>2017-12-07T17:05:34+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=9ee49e03676be3bc51c0f3ec341b1c4f6c1b0008'/>
<id>9ee49e03676be3bc51c0f3ec341b1c4f6c1b0008</id>
<content type='text'>
Playbook Consolidation - byo/config.yml</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Playbook Consolidation - byo/config.yml</pre>
</div>
</content>
</entry>
</feed>
