<feed xmlns='http://www.w3.org/2005/Atom'>
<title>csa/devops/ansible-patches/openshift.git/playbooks/common/openshift-cluster/upgrades/files, 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>Force reconciliation of role for 3.6</title>
<updated>2017-10-10T17:32:01+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2017-10-02T14:23:40+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=c69638d33c799ebc7ea862b1251c06e7effcf6c6'/>
<id>c69638d33c799ebc7ea862b1251c06e7effcf6c6</id>
<content type='text'>
This is needed because in 3.6 we cannot reconcile non-cluster roles in the
bootstrap reconciliation code.
In 3.7 this is taken care of in code.

Signed-off-by: Simo Sorce &lt;simo@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is needed because in 3.6 we cannot reconcile non-cluster roles in the
bootstrap reconciliation code.
In 3.7 this is taken care of in code.

Signed-off-by: Simo Sorce &lt;simo@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor docker upgrade playbooks</title>
<updated>2017-04-10T13:39:51+00:00</updated>
<author>
<name>Russell Teague</name>
<email>rteague@redhat.com</email>
</author>
<published>2017-04-07T20:16:14+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=b4c2a7507ced4c47732a20b819d2e34bf4ca129c'/>
<id>b4c2a7507ced4c47732a20b819d2e34bf4ca129c</id>
<content type='text'>
The playbooks were crossing byo/common boundaries for task includes.
This moves all 'common' files/tasks into the 'common' folder.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The playbooks were crossing byo/common boundaries for task includes.
This moves all 'common' files/tasks into the 'common' folder.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unused file</title>
<updated>2017-01-09T10:44:22+00:00</updated>
<author>
<name>Rodolfo Carvalho</name>
<email>rhcarvalho@gmail.com</email>
</author>
<published>2017-01-09T10:44:22+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=eab0e00d36b5853a096adbe55b3c0937724c0f53'/>
<id>eab0e00d36b5853a096adbe55b3c0937724c0f53</id>
<content type='text'>
All references to it were removed in
b89c835e3235f2628b37de15713c311d1b5a4bad
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
All references to it were removed in
b89c835e3235f2628b37de15713c311d1b5a4bad
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unused file</title>
<updated>2017-01-09T10:36:47+00:00</updated>
<author>
<name>Rodolfo Carvalho</name>
<email>rhcarvalho@gmail.com</email>
</author>
<published>2017-01-09T10:36:47+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=c17133745e58d4e33eca551217484abb9a423e6b'/>
<id>c17133745e58d4e33eca551217484abb9a423e6b</id>
<content type='text'>
All references to it were removed in
739ad9de2a11bb8c67d77641a86cfd39e4594542
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
All references to it were removed in
739ad9de2a11bb8c67d77641a86cfd39e4594542
</pre>
</div>
</content>
</entry>
<entry>
<title>Improvements for Docker 1.10+ upgrade image nuking.</title>
<updated>2016-08-11T14:30:19+00:00</updated>
<author>
<name>Devan Goodwin</name>
<email>dgoodwin@redhat.com</email>
</author>
<published>2016-08-11T14:30:19+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=b89c835e3235f2628b37de15713c311d1b5a4bad'/>
<id>b89c835e3235f2628b37de15713c311d1b5a4bad</id>
<content type='text'>
In a parallel step prior to real upgrade tasks, clear out all unused
Docker images on all hosts. This should be relatively safe to interrupt
as no real upgrade steps have taken place.

Once into actual upgrade, we again clear all images only this time with
force, and after stopping and removing all containers.

Both rmi commands use a new and hopefully less error prone command to do
the removal, this should avoid missed orphans as we were hitting before.

Added some logging around the current image count before and after this
step, most of them are only printed if we're crossing the 1.10 boundary
but one does not, just for additional information in your ansible log.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In a parallel step prior to real upgrade tasks, clear out all unused
Docker images on all hosts. This should be relatively safe to interrupt
as no real upgrade steps have taken place.

Once into actual upgrade, we again clear all images only this time with
force, and after stopping and removing all containers.

Both rmi commands use a new and hopefully less error prone command to do
the removal, this should avoid missed orphans as we were hitting before.

Added some logging around the current image count before and after this
step, most of them are only printed if we're crossing the 1.10 boundary
but one does not, just for additional information in your ansible log.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'aoi-32-up' into upgrade33</title>
<updated>2016-07-08T13:16:42+00:00</updated>
<author>
<name>Devan Goodwin</name>
<email>dgoodwin@redhat.com</email>
</author>
<published>2016-07-08T13:16:42+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=7480a0e06a9a1da029c6564e1e4d7ef60131e6e2'/>
<id>7480a0e06a9a1da029c6564e1e4d7ef60131e6e2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix dnf variant of rpm_versions.sh</title>
<updated>2016-07-05T17:39:08+00:00</updated>
<author>
<name>Scott Dodson</name>
<email>sdodson@redhat.com</email>
</author>
<published>2016-07-05T17:39:08+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=7ebdbd1e74a38fb892cd0d3ee0ba47ec47c8b010'/>
<id>7ebdbd1e74a38fb892cd0d3ee0ba47ec47c8b010</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' into upgrade33</title>
<updated>2016-07-04T13:10:04+00:00</updated>
<author>
<name>Devan Goodwin</name>
<email>dgoodwin@redhat.com</email>
</author>
<published>2016-07-04T13:10:04+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=7f04025263b19ac07c27198f8c1e3358a6206fd5'/>
<id>7f04025263b19ac07c27198f8c1e3358a6206fd5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Switch to repoquery, enable plugins for satellite support</title>
<updated>2016-06-29T13:51:54+00:00</updated>
<author>
<name>Scott Dodson</name>
<email>sdodson@redhat.com</email>
</author>
<published>2016-06-29T13:46:53+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=c64bd9065511bc6cb508750d167ab9d8a03b182f'/>
<id>c64bd9065511bc6cb508750d167ab9d8a03b182f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor 3.2 upgrade to avoid killing nodes without evac.</title>
<updated>2016-06-23T13:42:47+00:00</updated>
<author>
<name>Devan Goodwin</name>
<email>dgoodwin@redhat.com</email>
</author>
<published>2016-06-21T18:01: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=82f4e4eaeaaf3059013e9ea23d87dcf89fd8455e'/>
<id>82f4e4eaeaaf3059013e9ea23d87dcf89fd8455e</id>
<content type='text'>
We now handle the two pieces of upgrade that require a node evac in the
same play. (docker, and node itself)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We now handle the two pieces of upgrade that require a node evac in the
same play. (docker, and node itself)
</pre>
</div>
</content>
</entry>
</feed>
