<feed xmlns='http://www.w3.org/2005/Atom'>
<title>csa/devops/ansible-patches/openshift.git/playbooks/adhoc/upgrades, 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>Refactor upgrade playbook(s)</title>
<updated>2015-11-11T03:35:29+00:00</updated>
<author>
<name>Jason DeTiberus</name>
<email>jdetiber@redhat.com</email>
</author>
<published>2015-11-06T21:56:37+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=4c1b0dd4ab8f3a5d4fcfa4ba1501ed374793e77a'/>
<id>4c1b0dd4ab8f3a5d4fcfa4ba1501ed374793e77a</id>
<content type='text'>
- Split playbooks into two, one for 3.0 minor upgrades and one for 3.0 to 3.1
  upgrades
- Move upgrade playbooks to common/openshift/cluster/upgrades from adhoc
- Added a byo wrapper playbooks to set the groups based on the byo
  conventions, other providers will need similar playbooks added eventually
- installer wrapper updates for refactored upgrade playbooks
  - call new 3.0 to 3.1 upgrade playbook
  - various fixes for edge cases I hit with a really old config laying
    around.
  - fix output of host facts to show connect_to value.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Split playbooks into two, one for 3.0 minor upgrades and one for 3.0 to 3.1
  upgrades
- Move upgrade playbooks to common/openshift/cluster/upgrades from adhoc
- Added a byo wrapper playbooks to set the groups based on the byo
  conventions, other providers will need similar playbooks added eventually
- installer wrapper updates for refactored upgrade playbooks
  - call new 3.0 to 3.1 upgrade playbook
  - various fixes for edge cases I hit with a really old config laying
    around.
  - fix output of host facts to show connect_to value.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add separate step to enable services during upgrade.</title>
<updated>2015-11-10T19:08:46+00:00</updated>
<author>
<name>Devan Goodwin</name>
<email>dgoodwin@redhat.com</email>
</author>
<published>2015-11-10T17:39: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=28d601beeebaacd5e79b3fec336a283c8bf20e68'/>
<id>28d601beeebaacd5e79b3fec336a283c8bf20e68</id>
<content type='text'>
Instead of combining this with tasks to restart services, add a separate
started+enabled play for masters and nodes at the end of the playbook.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of combining this with tasks to restart services, add a separate
started+enabled play for masters and nodes at the end of the playbook.
</pre>
</div>
</content>
</entry>
<entry>
<title>1279734: Ensure services are enabled after upgrade.</title>
<updated>2015-11-10T14:02:41+00:00</updated>
<author>
<name>Devan Goodwin</name>
<email>dgoodwin@redhat.com</email>
</author>
<published>2015-11-10T13:46:13+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=fa67d37245d53f4ea7222b0d4d970ede48fee94b'/>
<id>fa67d37245d53f4ea7222b0d4d970ede48fee94b</id>
<content type='text'>
With the openshift to atomic-openshift renames, some services were not enabled
after upgrade. Added enabled directives to all service restart lines in the
upgrade playbook.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
With the openshift to atomic-openshift renames, some services were not enabled
after upgrade. Added enabled directives to all service restart lines in the
upgrade playbook.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #848 from dgoodwin/drop-302-req</title>
<updated>2015-11-09T20:07:45+00:00</updated>
<author>
<name>Brenton Leanhardt</name>
<email>bleanhar@redhat.com</email>
</author>
<published>2015-11-09T20:07:45+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=34fcfa446a871cfdf268153de7682d7fd909cbda'/>
<id>34fcfa446a871cfdf268153de7682d7fd909cbda</id>
<content type='text'>
Remove upgrade playbook restriction on 3.0.2.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove upgrade playbook restriction on 3.0.2.</pre>
</div>
</content>
</entry>
<entry>
<title>Read etcd data dir from appropriate config file.</title>
<updated>2015-11-09T18:51:28+00:00</updated>
<author>
<name>Devan Goodwin</name>
<email>dgoodwin@redhat.com</email>
</author>
<published>2015-11-09T17:01:30+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=ca8a5abf71bd885a80f15f3d743eddfc6371af13'/>
<id>ca8a5abf71bd885a80f15f3d743eddfc6371af13</id>
<content type='text'>
Rather than assuming the etcd data dir, we now read if from master-config.yaml
if using embedded etcd, otherwise from etcd.conf.

Doing so now required use of PyYAML to parse config file when gathering facts.

Fixed discrepancy with data_dir fact and openshift-enterprise deployment_type.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Rather than assuming the etcd data dir, we now read if from master-config.yaml
if using embedded etcd, otherwise from etcd.conf.

Doing so now required use of PyYAML to parse config file when gathering facts.

Fixed discrepancy with data_dir fact and openshift-enterprise deployment_type.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove upgrade playbook restriction on 3.0.2.</title>
<updated>2015-11-09T14:25:45+00:00</updated>
<author>
<name>Devan Goodwin</name>
<email>dgoodwin@redhat.com</email>
</author>
<published>2015-11-09T14:25:45+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=eba9772a02c1c228c2720e7c298c30c7dc078049'/>
<id>eba9772a02c1c228c2720e7c298c30c7dc078049</id>
<content type='text'>
This is blocking 3.0.1 upgrades to 3.1 incorrectly, which is a scenario we
should support.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is blocking 3.0.1 upgrades to 3.1 incorrectly, which is a scenario we
should support.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix indentation on when</title>
<updated>2015-11-06T21:32:00+00:00</updated>
<author>
<name>Jason DeTiberus</name>
<email>jdetiber@redhat.com</email>
</author>
<published>2015-11-06T21:32: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=5e62f5590f0c478da8b11b3d41b563b87cc385dd'/>
<id>5e62f5590f0c478da8b11b3d41b563b87cc385dd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'dgoodwin/pre-upgrade' into upgradeFix2</title>
<updated>2015-11-06T20:59:29+00:00</updated>
<author>
<name>Jason DeTiberus</name>
<email>jdetiber@redhat.com</email>
</author>
<published>2015-11-06T20:59:29+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.master.suren.me/cgit/csa/devops/ansible-patches/openshift.git/commit/?id=e38eae135ac4957576b263c3cc8f50e9805ea937'/>
<id>e38eae135ac4957576b263c3cc8f50e9805ea937</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Minor upgrade improvements.</title>
<updated>2015-11-06T19:28:57+00:00</updated>
<author>
<name>Devan Goodwin</name>
<email>dgoodwin@redhat.com</email>
</author>
<published>2015-11-06T18:33: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=0cfb416780b9e86c26eafd62ee6b99cd2a46b7cd'/>
<id>0cfb416780b9e86c26eafd62ee6b99cd2a46b7cd</id>
<content type='text'>
Skip some 3.1 checks if doing a 3.0.x to 3.0.2 upgrade.

Improve error message when oc whoami fails (i.e. openshift is down) during
pre-upgrade checks, rather than assuming the binary doesn't exist.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Skip some 3.1 checks if doing a 3.0.x to 3.0.2 upgrade.

Improve error message when oc whoami fails (i.e. openshift is down) during
pre-upgrade checks, rather than assuming the binary doesn't exist.
</pre>
</div>
</content>
</entry>
<entry>
<title>Wait for cluster to recover after pcs resource restart.</title>
<updated>2015-11-06T19:20:52+00:00</updated>
<author>
<name>Andrew Butcher</name>
<email>abutcher@redhat.com</email>
</author>
<published>2015-11-06T19:20: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=e1aa8fb073349f44cc9b3f2b6133969b01f63c5b'/>
<id>e1aa8fb073349f44cc9b3f2b6133969b01f63c5b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
