<feed xmlns='http://www.w3.org/2005/Atom'>
<title>csa/devops/ansible-patches/openshift.git/roles/openshift_master/templates/docker-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 some small items from openshift_facts</title>
<updated>2017-12-18T23:16:16+00:00</updated>
<author>
<name>Michael Gugino</name>
<email>mgugino@redhat.com</email>
</author>
<published>2017-12-18T20:21:21+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=313b15fb2668cbe6738802f913a9caa6203083b2'/>
<id>313b15fb2668cbe6738802f913a9caa6203083b2</id>
<content type='text'>
Remove some small items from openshift_facts that
don't need to be there.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove some small items from openshift_facts that
don't need to be there.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove openshift.common.service_type</title>
<updated>2017-12-07T19:37:36+00:00</updated>
<author>
<name>Michael Gugino</name>
<email>mgugino@redhat.com</email>
</author>
<published>2017-11-27T20:39:46+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=eb6b20fc9183cc2aae424c72efd1191b99110a93'/>
<id>eb6b20fc9183cc2aae424c72efd1191b99110a93</id>
<content type='text'>
This commit removes openshift.common.service_type
in favor of openshift_service_type.

This commit also removes r_openshift_excluder_service_type
from plays in favor of using the role's defaults.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit removes openshift.common.service_type
in favor of openshift_service_type.

This commit also removes r_openshift_excluder_service_type
from plays in favor of using the role's defaults.
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement container runtime role</title>
<updated>2017-12-01T17:32:39+00:00</updated>
<author>
<name>Michael Gugino</name>
<email>mgugino@redhat.com</email>
</author>
<published>2017-11-16T19:56: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=5120f8e90c0178ac7f6d911159ceb278dd87b4c9'/>
<id>5120f8e90c0178ac7f6d911159ceb278dd87b4c9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>Fix: authenticated registry support for containerized hosts</title>
<updated>2017-09-12T02:15:48+00:00</updated>
<author>
<name>Michael Gugino</name>
<email>mgugino@redhat.com</email>
</author>
<published>2017-09-11T17:07:35+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=db30a2eb386930e0b20c8106e334d605e2ae770a'/>
<id>db30a2eb386930e0b20c8106e334d605e2ae770a</id>
<content type='text'>
Currently, openshift-anisble supports authentication to
container registries to pull down openshift container images.
The openshift_verison role uses the docker cli to gather
image information from container registries before authentication
credentials are provided by openshift-ansible.

This commit creates the necessary token to authenticate to
private registries during openshift_version.  The token
is generated by the role 'docker' on all hosts where
docker is installed/configured when oreg_auth_users
is defined.

This commit also adds a read-only mount into the
openshift master and node container services.  This
mount is '/var/lib/origin/.docker:/root/.docker:ro'.
This is because the container images do not currently
read the values in '/var/lib/origin/.docker' as this
may be a bug upstream.

Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1316341
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently, openshift-anisble supports authentication to
container registries to pull down openshift container images.
The openshift_verison role uses the docker cli to gather
image information from container registries before authentication
credentials are provided by openshift-ansible.

This commit creates the necessary token to authenticate to
private registries during openshift_version.  The token
is generated by the role 'docker' on all hosts where
docker is installed/configured when oreg_auth_users
is defined.

This commit also adds a read-only mount into the
openshift master and node container services.  This
mount is '/var/lib/origin/.docker:/root/.docker:ro'.
This is because the container images do not currently
read the values in '/var/lib/origin/.docker' as this
may be a bug upstream.

Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1316341
</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>Ensure that host pki tree is mounted in containerized components</title>
<updated>2017-06-12T15:24:02+00:00</updated>
<author>
<name>Scott Dodson</name>
<email>sdodson@redhat.com</email>
</author>
<published>2017-06-12T15:24:02+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=2d780c406038a6f0b3cc4c7a2326853c09a3caa0'/>
<id>2d780c406038a6f0b3cc4c7a2326853c09a3caa0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update systemd units to use proper container service name</title>
<updated>2017-05-09T18:49:01+00:00</updated>
<author>
<name>Steve Milner</name>
<email>smilner@redhat.com</email>
</author>
<published>2017-05-09T14:43: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=b7ccac941502c93e804adf5582575ea3becf1ed8'/>
<id>b7ccac941502c93e804adf5582575ea3becf1ed8</id>
<content type='text'>
- If using a system container: container-engine
- If using a package install: docker

Ref: https://bugzilla.redhat.com/show_bug.cgi?id=1448800
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- If using a system container: container-engine
- If using a package install: docker

Ref: https://bugzilla.redhat.com/show_bug.cgi?id=1448800
</pre>
</div>
</content>
</entry>
<entry>
<title>master-api: add mount for /var/log</title>
<updated>2017-04-06T16:21:36+00:00</updated>
<author>
<name>Giuseppe Scrivano</name>
<email>gscrivan@redhat.com</email>
</author>
<published>2017-04-06T13:55:59+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=7c4cb6c44aa0cbd97e0aa4a8b832323539552db5'/>
<id>7c4cb6c44aa0cbd97e0aa4a8b832323539552db5</id>
<content type='text'>
Signed-off-by: Giuseppe Scrivano &lt;gscrivan@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Giuseppe Scrivano &lt;gscrivan@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Change HA master controller service to restart always.</title>
<updated>2016-10-27T13:48:47+00:00</updated>
<author>
<name>Devan Goodwin</name>
<email>dgoodwin@redhat.com</email>
</author>
<published>2016-10-26T15:10:48+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=9fa52e46fadb251be7fc6b07a2be8a153c3fc2fd'/>
<id>9fa52e46fadb251be7fc6b07a2be8a153c3fc2fd</id>
<content type='text'>
Restarts of systemd-journald can cause the master controllers service to
die in HA environments, due to a SIGPIPE and how it's handled.
(seemingly by default in golang)

on-failure does not trigger in this situation, instead we set to
Restart=always in the systemd unit, which matches the non-HA service
definitions as well.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Restarts of systemd-journald can cause the master controllers service to
die in HA environments, due to a SIGPIPE and how it's handled.
(seemingly by default in golang)

on-failure does not trigger in this situation, instead we set to
Restart=always in the systemd unit, which matches the non-HA service
definitions as well.
</pre>
</div>
</content>
</entry>
</feed>
