<feed xmlns='http://www.w3.org/2005/Atom'>
<title>csa/devops/ansible-patches/openshift.git/roles/openshift_node_upgrade/templates, 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>Combine openshift_node and openshift_node_upgrade</title>
<updated>2017-11-16T14:03:35+00:00</updated>
<author>
<name>Michael Gugino</name>
<email>mgugino@redhat.com</email>
</author>
<published>2017-11-09T22:00:00+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=afa4fd5799b0ff43d625d061e4c2bde66b5fb86a'/>
<id>afa4fd5799b0ff43d625d061e4c2bde66b5fb86a</id>
<content type='text'>
Currently, having openshift_node and openshift_node_upgrade
as two distinct roles has created a duplication across
handlers, templates, and some tasks.

This commit combines the roles to reduce duplication
and bugs encountered by not putting code in both places.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently, having openshift_node and openshift_node_upgrade
as two distinct roles has created a duplication across
handlers, templates, and some tasks.

This commit combines the roles to reduce duplication
and bugs encountered by not putting code in both places.
</pre>
</div>
</content>
</entry>
<entry>
<title>node: make node service PartOf=openvswitch.service when openshift-sdn is used</title>
<updated>2017-10-05T18:15:03+00:00</updated>
<author>
<name>Dan Williams</name>
<email>dcbw@redhat.com</email>
</author>
<published>2017-07-20T20:42:07+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=0164d95a2457dccc61163fde984abf7c80456624'/>
<id>0164d95a2457dccc61163fde984abf7c80456624</id>
<content type='text'>
Commit 7f805f9a0c41477365dd88b0ac73f0d221bd654a causes the behavior seen in
https://bugzilla.redhat.com/show_bug.cgi?id=1453113 because openshift-node
is no longer restarted when openvswitch is, due to the change from Requires
to Wants.

Turns out that making the openshift node service PartOf the OVS service
can achieve the same result and ensure openshift-node gets restarted whenever
OVS does, which ensures that networking doesn't break underneath the node.

Suggested by Giuseppe Scrivano
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Commit 7f805f9a0c41477365dd88b0ac73f0d221bd654a causes the behavior seen in
https://bugzilla.redhat.com/show_bug.cgi?id=1453113 because openshift-node
is no longer restarted when openvswitch is, due to the change from Requires
to Wants.

Turns out that making the openshift node service PartOf the OVS service
can achieve the same result and ensure openshift-node gets restarted whenever
OVS does, which ensures that networking doesn't break underneath the node.

Suggested by Giuseppe Scrivano
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #5205 from mgugino-upstream-stage/docker-etc-containers-regs</title>
<updated>2017-09-25T18:17:16+00:00</updated>
<author>
<name>OpenShift Merge Robot</name>
<email>openshift-merge-robot@users.noreply.github.com</email>
</author>
<published>2017-09-25T18:17:16+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=4ceb4bd931fa48b1f666d2258fff763b29bffba8'/>
<id>4ceb4bd931fa48b1f666d2258fff763b29bffba8</id>
<content type='text'>
Automatic merge from submit-queue

Move additional/block/insecure registires to /etc/containers/...

Move additional/block/insecure registires to /etc/containers/registries.conf

This commit moves additional/block/insecure registries to
/etc/containers/registries.conf and comments existing lines in
/etc/sysconfig/docker.

Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1460930</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Automatic merge from submit-queue

Move additional/block/insecure registires to /etc/containers/...

Move additional/block/insecure registires to /etc/containers/registries.conf

This commit moves additional/block/insecure registries to
/etc/containers/registries.conf and comments existing lines in
/etc/sysconfig/docker.

Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1460930</pre>
</div>
</content>
</entry>
<entry>
<title>Fix registry_auth logic for upgrades</title>
<updated>2017-09-22T14:42:24+00:00</updated>
<author>
<name>Michael Gugino</name>
<email>mgugino@redhat.com</email>
</author>
<published>2017-09-22T14:37:54+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=3d9af759fe9e69f0b4a83e69e16d7a5bd0d56b6f'/>
<id>3d9af759fe9e69f0b4a83e69e16d7a5bd0d56b6f</id>
<content type='text'>
Currently, the logic for registry authentication is
not implemented correctly to account for upgrades of
containerized hosts.

Additionally, the logic to account for multiple runs
of openshift-ansible might cause registry authentication
credentials to not be mounted inside of containerized hosts.

This commit adds the necessary logic to ensure containerized
hosts retain registry credentials.

Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1494470
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently, the logic for registry authentication is
not implemented correctly to account for upgrades of
containerized hosts.

Additionally, the logic to account for multiple runs
of openshift-ansible might cause registry authentication
credentials to not be mounted inside of containerized hosts.

This commit adds the necessary logic to ensure containerized
hosts retain registry credentials.

Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1494470
</pre>
</div>
</content>
</entry>
<entry>
<title>Move additional/block/insecure registires to /etc/containers/registries.conf</title>
<updated>2017-09-21T19:27:28+00:00</updated>
<author>
<name>Michael Gugino</name>
<email>mgugino@redhat.com</email>
</author>
<published>2017-08-24T21:24:41+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=b35272a794a572f60034293dd8cb7f057cf3fc8c'/>
<id>b35272a794a572f60034293dd8cb7f057cf3fc8c</id>
<content type='text'>
This commit moves additional/block/insecure registries to
/etc/containers/registries.conf and comments existing lines in
/etc/sysconfig/docker.

Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1460930
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit moves additional/block/insecure registries to
/etc/containers/registries.conf and comments existing lines in
/etc/sysconfig/docker.

Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1460930
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove openshift-common</title>
<updated>2017-09-06T17:59:38+00:00</updated>
<author>
<name>Michael Gugino</name>
<email>mgugino@redhat.com</email>
</author>
<published>2017-08-25T04:10:54+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=8bf97723ceaca02fe12b86466f8383aa211ead5e'/>
<id>8bf97723ceaca02fe12b86466f8383aa211ead5e</id>
<content type='text'>
Most of this role's purpose was to set facts.  The vast majority
of these facts were simply redefining user-supplied variables.

This commit also removes various artifacts leftover from
previous versions, as well as variables that seem to be
entirely unused.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Most of this role's purpose was to set facts.  The vast majority
of these facts were simply redefining user-supplied variables.

This commit also removes various artifacts leftover from
previous versions, as well as variables that seem to be
entirely unused.
</pre>
</div>
</content>
</entry>
<entry>
<title>Set TimeoutStartSec=300</title>
<updated>2017-07-25T19:26:10+00:00</updated>
<author>
<name>Scott Dodson</name>
<email>sdodson@redhat.com</email>
</author>
<published>2017-07-25T19:26:10+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=46d9ba942e49e4b6953dc8fa47e38d6ea98ec122'/>
<id>46d9ba942e49e4b6953dc8fa47e38d6ea98ec122</id>
<content type='text'>
On nodes with thousands of services it may take a very long time to
establish all of the network routing rules. The longest we've seen is
about 180s
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On nodes with thousands of services it may take a very long time to
establish all of the network routing rules. The longest we've seen is
about 180s
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "set KillMode to process in node service file"</title>
<updated>2017-07-25T18:32:56+00:00</updated>
<author>
<name>Scott Dodson</name>
<email>sdodson@redhat.com</email>
</author>
<published>2017-07-25T18:32: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=9d7afaacc0c053f04a596753e28d7382ec0b629d'/>
<id>9d7afaacc0c053f04a596753e28d7382ec0b629d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>set KillMode to process in node service file</title>
<updated>2017-07-13T14:50:08+00:00</updated>
<author>
<name>Jan Chaloupka</name>
<email>jchaloup@redhat.com</email>
</author>
<published>2017-07-13T14:50: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=bf723d2dcd84e13ae3856538df04c767433df984'/>
<id>bf723d2dcd84e13ae3856538df04c767433df984</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use default ports for dnsmasq and node dns</title>
<updated>2017-06-30T20:22:53+00:00</updated>
<author>
<name>Scott Dodson</name>
<email>sdodson@redhat.com</email>
</author>
<published>2017-06-30T12:06:17+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=d9c30f08cebe462a62e9c5131b6e3cec6b01e80a'/>
<id>d9c30f08cebe462a62e9c5131b6e3cec6b01e80a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
