openshift-ansible.spec 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524
  1. # %commit is intended to be set by tito custom builders provided
  2. # in the .tito/lib directory. The values in this spec file will not be kept up to date.
  3. %{!?commit:
  4. %global commit c64d09e528ca433832c6b6e6f5c7734a9cc8ee6f
  5. }
  6. Name: openshift-ansible
  7. Version: 3.0.84
  8. Release: 1%{?dist}
  9. Summary: Openshift and Atomic Enterprise Ansible
  10. License: ASL 2.0
  11. URL: https://github.com/openshift/openshift-ansible
  12. Source0: https://github.com/openshift/openshift-ansible/archive/%{commit}/%{name}-%{version}.tar.gz
  13. BuildArch: noarch
  14. Requires: ansible >= 1.9.4
  15. Requires: python2
  16. Requires: openshift-ansible-docs = %{version}-%{release}
  17. %description
  18. Openshift and Atomic Enterprise Ansible
  19. This repo contains Ansible code and playbooks
  20. for Openshift and Atomic Enterprise.
  21. %prep
  22. %setup -q
  23. %build
  24. # atomic-openshift-utils install
  25. pushd utils
  26. %{__python} setup.py build
  27. popd
  28. %install
  29. # Base openshift-ansible install
  30. mkdir -p %{buildroot}%{_datadir}/%{name}
  31. mkdir -p %{buildroot}%{_datadir}/ansible/%{name}
  32. mkdir -p %{buildroot}%{_datadir}/ansible_plugins
  33. # openshift-ansible-bin install
  34. mkdir -p %{buildroot}%{_bindir}
  35. mkdir -p %{buildroot}%{python_sitelib}/openshift_ansible
  36. mkdir -p %{buildroot}/etc/bash_completion.d
  37. mkdir -p %{buildroot}/etc/openshift_ansible
  38. # Fix links
  39. rm -f %{buildroot}%{python_sitelib}/openshift_ansible/aws
  40. rm -f %{buildroot}%{python_sitelib}/openshift_ansible/gce
  41. # openshift-ansible-docs install
  42. # Install example inventory into docs/examples
  43. mkdir -p docs/example-inventories
  44. cp inventory/byo/* docs/example-inventories/
  45. # openshift-ansible-playbooks install
  46. cp -rp playbooks %{buildroot}%{_datadir}/ansible/%{name}/
  47. # openshift-ansible-roles install
  48. cp -rp roles %{buildroot}%{_datadir}/ansible/%{name}/
  49. # openshift-ansible-filter-plugins install
  50. cp -rp filter_plugins %{buildroot}%{_datadir}/ansible_plugins/
  51. # openshift-ansible-lookup-plugins install
  52. cp -rp lookup_plugins %{buildroot}%{_datadir}/ansible_plugins/
  53. # atomic-openshift-utils install
  54. pushd utils
  55. %{__python} setup.py install --skip-build --root %{buildroot}
  56. # Remove this line once the name change has happened
  57. mv -f %{buildroot}%{_bindir}/oo-install %{buildroot}%{_bindir}/atomic-openshift-installer
  58. mkdir -p %{buildroot}%{_datadir}/atomic-openshift-utils/
  59. cp etc/ansible.cfg %{buildroot}%{_datadir}/atomic-openshift-utils/ansible.cfg
  60. popd
  61. # Base openshift-ansible files
  62. %files
  63. %doc LICENSE.md README*
  64. %dir %{_datadir}/ansible/%{name}
  65. # ----------------------------------------------------------------------------------
  66. # openshift-ansible-docs subpackage
  67. # ----------------------------------------------------------------------------------
  68. %package docs
  69. Summary: Openshift and Atomic Enterprise Ansible documents
  70. Requires: %{name} = %{version}
  71. BuildArch: noarch
  72. %description docs
  73. %{summary}.
  74. %files docs
  75. %doc docs
  76. # ----------------------------------------------------------------------------------
  77. # openshift-ansible-playbooks subpackage
  78. # ----------------------------------------------------------------------------------
  79. %package playbooks
  80. Summary: Openshift and Atomic Enterprise Ansible Playbooks
  81. Requires: %{name} = %{version}
  82. Requires: %{name}-roles = %{version}
  83. Requires: %{name}-lookup-plugins = %{version}
  84. Requires: %{name}-filter-plugins = %{version}
  85. BuildArch: noarch
  86. %description playbooks
  87. %{summary}.
  88. %files playbooks
  89. %{_datadir}/ansible/%{name}/playbooks
  90. # ----------------------------------------------------------------------------------
  91. # openshift-ansible-roles subpackage
  92. # ----------------------------------------------------------------------------------
  93. %package roles
  94. Summary: Openshift and Atomic Enterprise Ansible roles
  95. Requires: %{name} = %{version}
  96. Requires: %{name}-lookup-plugins = %{version}
  97. Requires: %{name}-filter-plugins = %{version}
  98. BuildArch: noarch
  99. %description roles
  100. %{summary}.
  101. %files roles
  102. %{_datadir}/ansible/%{name}/roles
  103. # ----------------------------------------------------------------------------------
  104. # openshift-ansible-filter-plugins subpackage
  105. # ----------------------------------------------------------------------------------
  106. %package filter-plugins
  107. Summary: Openshift and Atomic Enterprise Ansible filter plugins
  108. Requires: %{name} = %{version}
  109. BuildArch: noarch
  110. Requires: pyOpenSSL
  111. %description filter-plugins
  112. %{summary}.
  113. %files filter-plugins
  114. %{_datadir}/ansible_plugins/filter_plugins
  115. # ----------------------------------------------------------------------------------
  116. # openshift-ansible-lookup-plugins subpackage
  117. # ----------------------------------------------------------------------------------
  118. %package lookup-plugins
  119. Summary: Openshift and Atomic Enterprise Ansible lookup plugins
  120. Requires: %{name} = %{version}
  121. BuildArch: noarch
  122. %description lookup-plugins
  123. %{summary}.
  124. %files lookup-plugins
  125. %{_datadir}/ansible_plugins/lookup_plugins
  126. # ----------------------------------------------------------------------------------
  127. # atomic-openshift-utils subpackage
  128. # ----------------------------------------------------------------------------------
  129. %package -n atomic-openshift-utils
  130. Summary: Atomic OpenShift Utilities
  131. BuildRequires: python-setuptools
  132. Requires: %{name}-playbooks >= %{version}
  133. Requires: python-click
  134. Requires: python-setuptools
  135. Requires: PyYAML
  136. BuildArch: noarch
  137. %description -n atomic-openshift-utils
  138. Atomic OpenShift Utilities includes
  139. - atomic-openshift-installer
  140. - other utilities
  141. %files -n atomic-openshift-utils
  142. %{python_sitelib}/ooinstall*
  143. %{_bindir}/atomic-openshift-installer
  144. %{_datadir}/atomic-openshift-utils/ansible.cfg
  145. %changelog
  146. * Fri Apr 22 2016 Troy Dawson <tdawson@redhat.com> 3.0.84-1
  147. - Fix for docker not present (jdetiber@redhat.com)
  148. - Reconcile roles in additive-only mode on upgrade (jliggitt@redhat.com)
  149. - Set etcd_hostname and etcd_ip for masters w/ external etcd.
  150. (abutcher@redhat.com)
  151. * Thu Apr 21 2016 Troy Dawson <tdawson@redhat.com> 3.0.83-1
  152. - a-o-i: Correct bug with default storage host (smunilla@redhat.com)
  153. - Only add new sccs (bleanhar@redhat.com)
  154. - Fix bug after portal_net move from master to common role.
  155. (dgoodwin@redhat.com)
  156. - Sync latest content (sdodson@redhat.com)
  157. - Use xpaas 1.3.0-1, use enterprise content for metrics (sdodson@redhat.com)
  158. - Support configurable admin user and password for the enterprise Prefix
  159. changes for admin and password with nuage_master (abhat@nuagenetworks.net)
  160. * Wed Apr 20 2016 Troy Dawson <tdawson@redhat.com> 3.0.82-1
  161. - Use a JSON list for docker log options. (dgoodwin@redhat.com)
  162. - Fix legacy cli_docker_* vars not migrating. (dgoodwin@redhat.com)
  163. - Fix use of older image tag version during upgrade. (dgoodwin@redhat.com)
  164. - Remove etcd_interface variable. Remove openshift_docker dependency from the
  165. etcd role. (abutcher@redhat.com)
  166. - Use openshift_hostname/openshift_ip values for etcd configuration and
  167. certificates. (abutcher@redhat.com)
  168. - added new openshift-metrics service (j.david.nieto@gmail.com)
  169. - Translate legacy facts within the oo_openshift_env filter.
  170. (abutcher@redhat.com)
  171. - Remove empty facts from nested dictionaries. (abutcher@redhat.com)
  172. - Fix router selector fact migration and match multiple selectors when counting
  173. nodes. (abutcher@redhat.com)
  174. - Fixing the spec for PR 1734 (bleanhar@redhat.com)
  175. - Add openshift_node_dnsmasq (sdodson@redhat.com)
  176. - Promote portal_net to openshift.common, add kube_svc_ip (sdodson@redhat.com)
  177. - Add example inventories to docs, install docs by default (sdodson@redhat.com)
  178. - Fix use of JSON inventory vars with raw booleans. (dgoodwin@redhat.com)
  179. - cleanup roles after roles move to openshift-tools (jdiaz@redhat.com)
  180. - Reference Setup for Origin and Ose from up-to-date docs.openshift.[com|org]
  181. instead of local README_[origin|OSE].md (jchaloup@redhat.com)
  182. * Mon Apr 18 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.81-1
  183. - IMAGE_PREFIX=openshift3/ for enterprise logging/metrics (sdodson@redhat.com)
  184. - a-o-i: Don't assume storage on 1st master (smunilla@redhat.com)
  185. - Bug 1320829 - Handle OSE 3.0 installs (bleanhar@redhat.com)
  186. * Fri Apr 15 2016 Troy Dawson <tdawson@redhat.com> 3.0.80-1
  187. - Refactor docker failed state cleanup (sdodson@redhat.com)
  188. - Support mixed RPM/container installs (bleanhar@redhat.com)
  189. - The openshift_docker role must set the version facts for containerized
  190. installs (bleanhar@redhat.com)
  191. - start it, check for failure, reset it, start again (sdodson@redhat.com)
  192. - Enable docker before potentially resetting the failure (sdodson@redhat.com)
  193. - Fix mappingMethod option in identity provider. (abutcher@redhat.com)
  194. - Support setting imagePolicyConfig JSON in inventory. (dgoodwin@redhat.com)
  195. * Tue Apr 12 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.79-1
  196. - Bug 1324728 - Ansible should not downgrade docker when installing 3.2
  197. containerized env (bleanhar@redhat.com)
  198. - Fixing non-HA master restart conditional (bleanhar@redhat.com)
  199. - Fetching the current version a little more carefully (bleanhar@redhat.com)
  200. - Make sure Docker is restarted after we have correctly configured the
  201. containerized systemd units (bleanhar@redhat.com)
  202. - use RestartSec to avoid default rate limit in systemd (bleanhar@redhat.com)
  203. - Convert image_tag on masters (smunilla@redhat.com)
  204. - Installs and upgrades from authenticated registries are not supported for now
  205. (bleanhar@redhat.com)
  206. - Handle cases where the pacemaker variables aren't set (bleanhar@redhat.com)
  207. - Containerized installs on RHEL were downgrading docker unnecessarily
  208. (bleanhar@redhat.com)
  209. * Tue Apr 12 2016 Troy Dawson <tdawson@redhat.com> 3.0.78-1
  210. - Add support for creating secure router. (abutcher@redhat.com)
  211. * Mon Apr 11 2016 Troy Dawson <tdawson@redhat.com> 3.0.77-1
  212. - Fix a docker-storage sysconfig bug. (dgoodwin@redhat.com)
  213. - update bootstrap-fedora to include python2-firewall for F24+
  214. (maxamillion@fedoraproject.org)
  215. - Merge openshift_env hostvars. (abutcher@redhat.com)
  216. - Add openshift_hosted_facts role and remove hosted facts from
  217. openshift_common. (abutcher@redhat.com)
  218. * Fri Apr 08 2016 Troy Dawson <tdawson@redhat.com> 3.0.76-1
  219. - a-o-i: Support openshift_image_tag (smunilla@redhat.com)
  220. - Bug 1324729 - Import xPaas image streams failed during 3.2 installation
  221. (bleanhar@redhat.com)
  222. - Test docker_version_result.stdout when determining if docker should be
  223. installed/downgraded. (abutcher@redhat.com)
  224. * Thu Apr 07 2016 Troy Dawson <tdawson@redhat.com> 3.0.75-1
  225. - First attempt at oadm router module (kwoodson@redhat.com)
  226. - Remove openshift_common dep from openshift_storage_nfs (abutcher@redhat.com)
  227. - Add cloudprovider config dir to docker options. (abutcher@redhat.com)
  228. - Check for kind in cloudprovider facts prior to accessing.
  229. (abutcher@redhat.com)
  230. * Wed Apr 06 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.74-1
  231. - Add support for configuring oauth templates. (dgoodwin@redhat.com)
  232. - Add support for templating master admissionConfig. (dgoodwin@redhat.com)
  233. * Wed Apr 06 2016 Troy Dawson <tdawson@redhat.com> 3.0.73-1
  234. - Replace unused Dockerfile with one used for official builds.
  235. (dgoodwin@redhat.com)
  236. - Update for zbx_user refresh (kwoodson@redhat.com)
  237. - Docker 1.9 is actually cool starting in origin 1.1.4 (sdodson@redhat.com)
  238. - Unmask services (bleanhar@redhat.com)
  239. - XPAAS v1.3 for OSE 3.2 (sdodson@redhat.com)
  240. - XPAAS 1.3 content for OSE 3.1 (sdodson@redhat.com)
  241. - Bug 1322788 - The IMAGE_VERSION wasn't added to atomic-openshift-master-api
  242. and atomic-openshift-master-controllers (bleanhar@redhat.com)
  243. - Bug 1323123 - upgrade failed to containerized OSE on RHEL Host without ose3.2
  244. repo (bleanhar@redhat.com)
  245. - Write inventory to same directory as quick install config.
  246. (dgoodwin@redhat.com)
  247. - Add --gen-inventory command to atomic-openshift-installer.
  248. (dgoodwin@redhat.com)
  249. * Tue Apr 05 2016 Troy Dawson <tdawson@redhat.com> 3.0.72-1
  250. - when docker is installed, make it 1.8.2 to avoid issues (mwoodson@redhat.com)
  251. - Downgrade to docker 1.8.2 if installing OSE < 3.2 (sdodson@redhat.com)
  252. - Pacemaker is unsupported for 3.2 (bleanhar@redhat.com)
  253. - Fixing regexp. Periods are no longer allowed (kwoodson@redhat.com)
  254. - We require docker 1.9 for the 3.2 upgrade (bleanhar@redhat.com)
  255. * Mon Apr 04 2016 Troy Dawson <tdawson@redhat.com> 3.0.71-1
  256. - Fixed oc_edit by requiring name and content (kwoodson@redhat.com)
  257. - add higher severity trigger if no heartbeat for 1 hour (jdiaz@redhat.com)
  258. - Yedit enhancements (kwoodson@redhat.com)
  259. * Fri Apr 01 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.70-1
  260. - Enable Ansible ssh pipelining to speedup deployment (lhuard@amadeus.com)
  261. - Allow for overriding scheduler config (jdetiber@redhat.com)
  262. - a-o-i: Add 3.2 to list of supported versions (smunilla@redhat.com)
  263. - a-o-i: Support for unattended upgrades (smunilla@redhat.com)
  264. - a-o-i: More flexible upgrade mappings (smunilla@redhat.com)
  265. - a-o-i: OSE/AEP 3.2 product option (smunilla@redhat.com)
  266. - a-o-i: Error out early if callback_facts is None (smunilla@redhat.com)
  267. * Thu Mar 31 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.69-1
  268. - Bug 1320829 - Ensure docker installed for facts (jdetiber@redhat.com)
  269. - Bug 1322788 - The IMAGE_VERSION wasn't added to atomic-openshift-master-api
  270. and atomic-openshift-master-controllers (bleanhar@redhat.com)
  271. - Fixed generate header. (kwoodson@redhat.com)
  272. - Bug 1322335 - The package name is wrong for rpm upgrade (bleanhar@redhat.com)
  273. - Add AWS cloud provider support. (abutcher@redhat.com)
  274. * Wed Mar 30 2016 Troy Dawson <tdawson@redhat.com> 3.0.68-1
  275. - Moving generation of ansible module side by side with module.
  276. (kwoodson@redhat.com)
  277. - Bug 1322338 - The upgrade should keep the option insecure-
  278. registry=172.30.0.0/16 (bleanhar@redhat.com)
  279. * Tue Mar 29 2016 Troy Dawson <tdawson@redhat.com> 3.0.67-1
  280. - The systemd unit for atomic-openshift-master wasn't not being created
  281. (bleanhar@redhat.com)
  282. - Use openshift.master.ha instead of duplicating the logic
  283. (bleanhar@redhat.com)
  284. - Workaround for authenticated registries (bleanhar@redhat.com)
  285. - First pass at systemd unit refactor (bleanhar@redhat.com)
  286. - fix the key name for the dynamic item of avalable (zhizhang@zhizhang-laptop-
  287. nay.redhat.com)
  288. - make docker service want ose containerized services (sjenning@redhat.com)
  289. * Mon Mar 28 2016 Troy Dawson <tdawson@redhat.com> 3.0.66-1
  290. - Fixed error message to add valid yaml (kwoodson@redhat.com)
  291. - added admin binary varibale usage as well as specifying kubeconfig copy to be
  292. used (jkwiatko@redhat.com)
  293. - Sync latest db-templates and qucikstart-templates (sdodson@redhat.com)
  294. - adding playbook (jkwiatko@redhat.com)
  295. - Tested of refactored code (jkwiatko@redhat.com)
  296. - fix some typo (zhizhang@use-tower1.ops.rhcloud.com)
  297. - add the total and available space item (zhizhang@use-tower1.ops.rhcloud.com)
  298. - add dynamic pv count (zhizhang@use-tower1.ops.rhcloud.com)
  299. - revised and restructured logging role (jkwiatko@redhat.com)
  300. - Adding openshift_efk role (jkwiatko@redhat.com)
  301. - Attempt to fix error validating when extraScopes and extraAuthorizeParameters
  302. are not present (jdetiber@redhat.com)
  303. * Thu Mar 24 2016 Troy Dawson <tdawson@redhat.com> 3.0.65-1
  304. - Adding deployment config and refactored. (kwoodson@redhat.com)
  305. - ManageIQ SA: Adding image-puller role (efreiber@redhat.com)
  306. * Wed Mar 23 2016 Troy Dawson <tdawson@redhat.com> 3.0.64-1
  307. - Latest cli updates from generated files (kwoodson@redhat.com)
  308. - Add /dev to node containers (sdodson@redhat.com)
  309. - Fix indention (whearn@redhat.com)
  310. - Support setting local storage perFSGroup quota in node config.
  311. (dgoodwin@redhat.com)
  312. - Fix line break (whearn@redhat.com)
  313. - Lock down permissions on named certificates (elyscape@gmail.com)
  314. - Add namespace flag to oc create (whearn@redhat.com)
  315. * Mon Mar 21 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.63-1
  316. - Modified group selectors for muliple clusters per account
  317. (kwoodson@redhat.com)
  318. * Fri Mar 18 2016 Troy Dawson <tdawson@redhat.com> 3.0.62-1
  319. - Yaml editor first attempt (kwoodson@redhat.com)
  320. - libvirt cluster variables cleanup (pep@redhat.com)
  321. * Thu Mar 17 2016 Troy Dawson <tdawson@redhat.com> 3.0.61-1
  322. - Bug 1317755 - Set insecure-registry for internal registry by default
  323. (jdetiber@redhat.com)
  324. * Wed Mar 16 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.60-1
  325. - Fall back to deployment_type in openshift_facts. (abutcher@redhat.com)
  326. - Fixing undefined variable check (kwoodson@redhat.com)
  327. - Fix path to cacert on /healthz/ready check (sdodson@redhat.com)
  328. - Load environment files in containerized installs (sdodson@redhat.com)
  329. - change type to value_type (zhizhang@zhizhang-laptop-nay.redhat.com)
  330. - change time from int to float (zhizhang@zhizhang-laptop-nay.redhat.com)
  331. - change the check time from 1 hour to 2 hour (zhizhang@zhizhang-laptop-
  332. nay.redhat.com)
  333. - add item of time cost a app build and app create (zhizhang@zhizhang-laptop-
  334. nay.redhat.com)
  335. - add trigger for app creation with build process (zhizhang@zhizhang-laptop-
  336. nay.redhat.com)
  337. - add key of openshift.master.app.build.create (zhizhang@zhizhang-laptop-
  338. nay.redhat.com)
  339. * Wed Mar 16 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.59-1
  340. - Only mask etcd service for containerized installls when it's installed
  341. (sdodson@redhat.com)
  342. - Provide cacert when performing health checks (abutcher@redhat.com)
  343. * Tue Mar 15 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.58-1
  344. - Group selector feature added (kwoodson@redhat.com)
  345. - nfs: replace yum with dnf (efreiber@redhat.com)
  346. - Move common common facts to openshift_facts (jdetiber@redhat.com)
  347. - perform oc client config tasks only once when ansible_ssh_user is root
  348. (jdetiber@redhat.com)
  349. - OSE/Origin < 3.2/1.2 should not get Docker 1.9 (sdodson@redhat.com)
  350. * Mon Mar 14 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.57-1
  351. - Docker stderr can break this script if ansible executes it remotely
  352. (bleanhar@redhat.com)
  353. - Handle HA master case (bleanhar@redhat.com)
  354. - Bug 1315564 - Containerized installs require a running environment
  355. (bleanhar@redhat.com)
  356. - Updating the docker registry variables to use the new name
  357. (bleanhar@redhat.com)
  358. - Bug 1316761 - Skip the available version check if openshift_image_tag is
  359. defined. (bleanhar@redhat.com)
  360. - Ansible module to manage secrets for openshift api (kwoodson@redhat.com)
  361. * Mon Mar 14 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.56-1
  362. - Updating our metadata tooling to work without env (kwoodson@redhat.com)
  363. - improve ordering of systemd units (jdetiber@redhat.com)
  364. - Docker role refactor (jdetiber@redhat.com)
  365. - Ensure is_containerized is cast as bool. (abutcher@redhat.com)
  366. - Sync latest to v1.2 (sdodson@redhat.com)
  367. - Sync with latest image stream and templates (sdodson@redhat.com)
  368. - Allow origin version to be passed in as an argument (sdodson@redhat.com)
  369. - Add support for Openstack integration (sbaubeau@redhat.com)
  370. - Expose log level on the monitor (abhat@nuagenetworks.net)
  371. - openshift_facts: Safe cast additional bools (smunilla@redhat.com)
  372. - openshift-ansible: Wrap boolean facts (smunilla@redhat.com)
  373. - fixed copr releasers file (twiest@redhat.com)
  374. - Libvirt provider fixes (jdetiber@redhat.com)
  375. - Support log level configuration for plugin (abhat@nuagenetworks.net)
  376. * Wed Mar 09 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.55-1
  377. - Bug 1315564 - upgrade to ose3.2 failed on Atomic Hosts (bleanhar@redhat.com)
  378. - Bug 1315563 - Upgrade failed to containerized install OSE 3.1 on RHEL
  379. (bleanhar@redhat.com)
  380. - a-o-i: Fix NFS storage tests (smunilla@redhat.com)
  381. - First attempt at NFS setup (smunilla@redhat.com)
  382. - reverting back to pre-pulling the master image (bleanhar@redhat.com)
  383. - Use /healthz/ready when verifying api (abutcher@redhat.com)
  384. - Formatting error (Viet.atx@gmail.com)
  385. - Introduce origin-metrics playbook (vnguyen@redhat.com)
  386. * Tue Mar 08 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.54-1
  387. - Bug 1315563 - stdout IO redirection wasn't working as expected over SSH
  388. connections (bleanhar@redhat.com)
  389. - Bug 1315637 - The docker wasn't upgraded on node during upgrade
  390. (bleanhar@redhat.com)
  391. - Bug 1315564 - upgrade to ose3.2 failed on Atomic Hosts (bleanhar@redhat.com)
  392. - Fix issue when there are no infra nodes (lhuard@amadeus.com)
  393. - Stop the etcd container during uninstall (bleanhar@redhat.com)
  394. * Mon Mar 07 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.53-1
  395. - Don't enable cockpit-ws for containerized installs (bleanhar@redhat.com)
  396. - Support openshift_image_tag (bleanhar@redhat.com)
  397. - Set g_new_master_hosts in upgrade playbooks. (abutcher@redhat.com)
  398. - Add setting for configuring nofile limit for haproxy (jdetiber@redhat.com)
  399. * Mon Mar 07 2016 Joel Diaz <jdiaz@redhat.com> 3.0.52-1
  400. - fixed monitoring containers to restart (sten@redhat.com)
  401. - Lock down generated certs dir (sdodson@redhat.com)
  402. - package up lib_zabbix into its own subpackage (jdiaz@redhat.com)
  403. * Fri Mar 04 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.51-1
  404. - Bug 1314645 - Upgrade failed with "One or more undefined variables 'dict
  405. object' has no attribute 'stdout'" (bleanhar@redhat.com)
  406. - EBS storage does not support Recycle (sedgar@redhat.com)
  407. - Remove cockpit and kubernetes-client packages in uninstall playbook.
  408. (abutcher@redhat.com)
  409. - Update README_origin.md (trond.hapnes@gmail.com)
  410. - Add cockpit-docker package by default (nakayamakenjiro@gmail.com)
  411. * Thu Mar 03 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.50-1
  412. - change lib_zabbix's import to new pathing (jdiaz@redhat.com)
  413. - upgrade README fixes (bleanhar@redhat.com)
  414. - A few images weren't being uninstalled (bleanhar@redhat.com)
  415. - Adding support for v1.2 examples (bleanhar@redhat.com)
  416. - Adding templates for v1.2 (bleanhar@redhat.com)
  417. - Adding verify_upgrade_version variable for upgrade debugging
  418. (bleanhar@redhat.com)
  419. - Correctly set the image tag for containerized installs (and upgrades)
  420. (bleanhar@redhat.com)
  421. - Adding newly required variable (bleanhar@redhat.com)
  422. - Updating the containerized cli wrapper to work for both docker 1.8 and 1.9
  423. (bleanhar@redhat.com)
  424. - uninstall the QE images (bleanhar@redhat.com)
  425. - First past at the upgrade process (bleanhar@redhat.com)
  426. - Check for is_containerized value when setting binary locations.
  427. (abutcher@redhat.com)
  428. - Bug 1313169 - Ansible installer tries to enable etcd_container service even
  429. though containerized=false (bleanhar@redhat.com)
  430. - Fix logging infra template version mismatch. (dgoodwin@redhat.com)
  431. - Changes required for Nuage monitor REST server
  432. (vishal.patil@nuagenetworks.net)
  433. - disable http-server-close option (jdetiber@redhat.com)
  434. - change [HEAL] to [Heal] to match with v2 (jdiaz@redhat.com)
  435. - Increase maxconn settings for haproxy lb (jdetiber@redhat.com)
  436. * Tue Mar 01 2016 Matt Woodson <mwoodson@redhat.com> 3.0.49-1
  437. - fixed error in awsutil.py (mwoodson@redhat.com)
  438. * Tue Mar 01 2016 Matt Woodson <mwoodson@redhat.com> 3.0.48-1
  439. - ohi: added subtype searching (mwoodson@redhat.com)
  440. - make heal remote actions generic for all [HEAL] triggers (jdiaz@redhat.com)
  441. - added extra steps to ensure docker starts up (mwoodson@redhat.com)
  442. - role_removal: docker_storage; This is the old way, no longer used
  443. (mwoodson@redhat.com)
  444. - role: added docker_storage_setup (mwoodson@redhat.com)
  445. - Use inventory_hostname for openshift master certs to sync.
  446. (abutcher@redhat.com)
  447. - Adding a symlink to making loading the examples more convenient
  448. (bleanhar@redhat.com)
  449. - docs: Explain a bit more how to expand Atomic Host rootfs
  450. (walters@verbum.org)
  451. - a-o-i: Rename osm_default_subdomain (smunilla@redhat.com)
  452. - Updating tito config for OSE 3.2 (bleanhar@redhat.com)
  453. - Synchronize master kube configs (abutcher@redhat.com)
  454. - added os_utils, os_reboot_server role; removed containerization stuff from
  455. the updated (mwoodson@redhat.com)
  456. - Add warnings to bin/cluster and READMEs (abutcher@redhat.com)
  457. - Add host subnet length example. (abutcher@redhat.com)
  458. - Upgrade -1510 to CentOS-7-x86_64-GenericCloud-1602. (cben@redhat.com)
  459. - Pin down CentOS-7-x86_64-GenericCloud-1510.qcow2.xz version, which the
  460. checksum currently expects (#1384). (cben@redhat.com)
  461. - Change is_atomic to is_containerized (florian.lambert@enovance.com)
  462. - Rename variable to openshift_master_default_subdomain with backwards
  463. compatibility. (jstuever@redhat.com)
  464. - lib_dyn: more updates to the lib_dyn module. Made the TTL more flexible
  465. (mwoodson@redhat.com)
  466. - remote heal action for OVS down (jdiaz@redhat.com)
  467. - Pass registry claim to openshift_registry. (abutcher@redhat.com)
  468. - Refactor - increase retries instead of delay in "Wait for Node Registration"
  469. (david.mat@archimiddle.com)
  470. - Better diagnostic messages when an OpenStack heat stack creation fails
  471. (lhuard@amadeus.com)
  472. - made some changes to lib_dyn update (mwoodson@redhat.com)
  473. - Increase timeout on Wait for Node Registration (david.mat@archimiddle.com)
  474. - Fix typo in oscp (agrimm@redhat.com)
  475. - Add correct parsing of ec2_security_groups env variable
  476. (david.mat@archimiddle.com)
  477. - changed oso_host_monitoring to use the oo_ vars (twiest@redhat.com)
  478. - Add quotes around src argument to support paths with spaces
  479. (david.mat@archimiddle.com)
  480. - Add missing is_atomic condition on upgrade package
  481. (florian.lambert@enovance.com)
  482. - configure debug_level for master and node from cli (jawed.khelil@amadeus.com)
  483. - remove version requirement from etcd, shouldn't be needed anymore
  484. (maxamillion@fedoraproject.org)
  485. - Add ansible.cfg to .gitignore (jdetiber@redhat.com)
  486. - added node-secgroup to master_nodes (j.david.nieto@gmail.com)
  487. - Document setting the VPC subnet (puiterwijk@redhat.com)
  488. - Update the AMIs used in README_AWS (puiterwijk@redhat.com)
  489. - Add byo examples for network cidr and api/console ports.
  490. (abutcher@redhat.com)
  491. - Add openshift_docker roles to master/node scaleup. (abutcher@redhat.com)
  492. - Fail when master.master_count descreases or master.ha changes.
  493. (abutcher@redhat.com)
  494. - Protected facts. (abutcher@redhat.com)
  495. - Add modify_yaml module. (abutcher@redhat.com)
  496. - Re-arrange scaleup playbooks. (abutcher@redhat.com)
  497. - Move additional master configuration into a separate master playbook.
  498. (abutcher@redhat.com)
  499. - Generate each master's certificates separately. (abutcher@redhat.com)
  500. - Add new_masters to scaleup playbook. (abutcher@redhat.com)
  501. * Wed Feb 24 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.47-1
  502. - a-o-i: Double safety check on master_lb (smunilla@redhat.com)
  503. - a-o-i: Better method for identifying master_lb (smunilla@redhat.com)
  504. * Tue Feb 23 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.46-1
  505. - a-o-i: Exception checking around master_lb (smunilla@redhat.com)
  506. * Mon Feb 22 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.45-1
  507. - Do not monitor for etcd watchers (mmahut@redhat.com)
  508. - remove old master registry item/triggers (jdiaz@redhat.com)
  509. - a-o-i: Redo logic for detecting master_lb (smunilla@redhat.com)
  510. - Fix 1.2 version check (jdetiber@redhat.com)
  511. - Fix pv/c creation failed_when. (abutcher@redhat.com)
  512. - Rename variable to delete temporary file, add configurable path.
  513. (hrosnet@redhat.com)
  514. - Add /var/log to containerized node mounts (sdodson@redhat.com)
  515. - Add extra parameters for S3 registry: delete file, create bucket.
  516. (hrosnet@redhat.com)
  517. - Don't make config files world readable (sdodson@redhat.com)
  518. - Fix requiring state and providing a default (rharriso@redhat.com)
  519. - bind in /etc/origin/node for non-master monitoring to be able to talk with
  520. master (jdiaz@redhat.com)
  521. - a-o-i: pylint fixes related to too-long lines (smunilla@redhat.com)
  522. * Wed Feb 17 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.44-1
  523. - create registry items/triggers under Openshift Node (jdiaz@redhat.com)
  524. - a-o-i: Change method for counting master_lb as installed
  525. (smunilla@redhat.com)
  526. * Tue Feb 16 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.43-1
  527. - Add default to state param (rharriso@redhat.com)
  528. - Add type to record_type param (rharriso@redhat.com)
  529. - Add types to module params (rharriso@redhat.com)
  530. - Adding examples to the dyn_record module (rharriso@redhat.com)
  531. - add item to track docker-registry pings (jdiaz@redhat.com)
  532. - Handle case where the user already had access to the scc
  533. (bleanhar@redhat.com)
  534. - Refactoring the add-scc-to-user logic (bleanhar@redhat.com)
  535. - Apply openshift_docker to nodes during scaleup. (abutcher@redhat.com)
  536. - Change etcd deamon name for atomic-host (florian.lambert@enovance.com)
  537. * Tue Feb 16 2016 Joel Diaz <jdiaz@redhat.com> 3.0.42-1
  538. - Add gce softlink for openshift-ansible-bin
  539. * Mon Feb 15 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.41-1
  540. - Bug 1308411 - Fail to install OSE 3.0 for no add-scc-to-user command
  541. (bleanhar@redhat.com)
  542. - Add openshift_docker_options to append arbitrary options to
  543. /etc/sysconfig/docker OPTIONS (sdodson@redhat.com)
  544. - oo_filter: added custom fitler to return hosts group info
  545. (mwoodson@redhat.com)
  546. - add gce softlink for openshift-ansible-bin RPM (jdiaz@redhat.com)
  547. - a-o-i: Count nativeha hosts as "installed" for scaleup (smunilla@redhat.com)
  548. - a-o-i: Add master_routingconfig_subdomain to PERSIST_SETTINGS
  549. (smunilla@redhat.com)
  550. - Bug 1308412 - Fail to install containerized HA master env on RHEL7
  551. (bleanhar@redhat.com)
  552. - Bug 1308314 - Failed to continue installation when pressing CTRL-C
  553. (bleanhar@redhat.com)
  554. - Updating the 3.1.1 router to match the new liveness probe configuration
  555. (bleanhar@redhat.com)
  556. - Don't automatically give additional permissions to all OAuth users on upgrade
  557. (jliggitt@redhat.com)
  558. - Fix adhoc boostrap fedora playbook (jdetiber@redhat.com)
  559. - Fix libvirt cluster creation (lhuard@amadeus.com)
  560. - Add missing `type` node labels on OpenStack and libvirt (lhuard@amadeus.com)
  561. - a-o-i: Prompts to allow minor upgrades (smunilla@redhat.com)
  562. - conditionalize loopback config on v >= 3.2/1.2 (jdetiber@redhat.com)
  563. - Fixes pv/pvc creation for latest builds (jdetiber@redhat.com)
  564. - Bug 1302970 - update script does not patch router if name is different from
  565. default (bleanhar@redhat.com)
  566. - Fix loopback cluster name, context name, and user (jdetiber@redhat.com)
  567. - Changes for new Nuage RPMS (vishal.patil@nuagenetworks.net)
  568. - Make the GCE image_name and the machine_type configurable from the CLI
  569. (lhuard@amadeus.com)
  570. - Better structure the output of the list playbook (lhuard@amadeus.com)
  571. - Fix issue when there are no infra nodes (lhuard@amadeus.com)
  572. - Remove fluentd_master and fluentd_node roles. (abutcher@redhat.com)
  573. - Remove etcd up checks from fluentd_master. (abutcher@redhat.com)
  574. * Thu Feb 11 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.40-1
  575. - Bug 1306665 - [metrics] update metrics-deployer template to use latest image
  576. versions (bleanhar@redhat.com)
  577. - Add organizations attribute to github identity provider (jdetiber@redhat.com)
  578. - use correct dict key (jdiaz@redhat.com)
  579. - handle being passed an empty group list (jdiaz@redhat.com)
  580. - fix default value (jdetiber@redhat.com)
  581. - removed notscheduleable trigger, it just makes noise in its current
  582. incarnation (sten@redhat.com)
  583. - trigger on two successive bad pid counts (jdiaz@redhat.com)
  584. - added nodes not ready and nodes not schedulable triggers (sten@redhat.com)
  585. - Enable selection of kubeproxy mode (vishal.patil@nuagenetworks.net)
  586. - add default storage plugins to 'origin' deployment_type
  587. (rvanveelen@tremorvideo.com)
  588. - added nodes not ready and nodes not schedulable triggers (sten@redhat.com)
  589. - Don't mask master service on atomic. (abutcher@redhat.com)
  590. - update defaults and examples w/ iscsi plugin (rvanveelen@tremorvideo.com)
  591. - add iscsi storage_plugin dependency (rvanveelen@tremorvideo.com)
  592. - Add gte check for 3.2, update version checks to gte (jdetiber@redhat.com)
  593. - Specify default namespace when creating router (pat2man@gmail.com)
  594. - add missing connection:local (jdetiber@redhat.com)
  595. - consolidate oo_first_master post-config a bit, fix some roles that use
  596. openshift_facts without declaring a dependency (jdetiber@redhat.com)
  597. - openshift_serviceaccounts updates (jdetiber@redhat.com)
  598. - Fix infra_node deployment (jdetiber@redhat.com)
  599. - changed registry checks to alert based on number of registries with problems
  600. (sten@redhat.com)
  601. - Fix a bug with existing CNAME records (rharriso@redhat.com)
  602. - Fix HA typo in example AEP/OSE/Origin inventories (adellape@redhat.com)
  603. - Updated the key for app create (kwoodson@redhat.com)
  604. - Add missing atomic- and openshift-enterprise (pep@redhat.com)
  605. - Fix enabling iptables for latest rhel versions (jdetiber@redhat.com)
  606. - Make pod_eviction_timeout configurable from cli (jawed.khelil@amadeus.com)
  607. * Tue Feb 09 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.39-1
  608. - Bug 1304150 - Can't upgrade atomic-openshift to specified version
  609. (bleanhar@redhat.com)
  610. - Mask master service when using native ha (jdetiber@redhat.com)
  611. - aoi: Safer check for master_routingconfig_subdomain (smunilla@redhat.com)
  612. - Add a DNS server on OpenStack clusters (lhuard@amadeus.com)
  613. - renamed /etc/openshift to /etc/origin (sten@redhat.com)
  614. - gitignore : .tag* (atom editor tag files) (sdodson@redhat.com)
  615. - Add an early check to ensure that node names resolve to an interface on the
  616. host (sdodson@redhat.com)
  617. - Allow compression option to be set to empty for non compressed QCow images
  618. Support tgz and gzip compressed images (akram@free.fr)
  619. - Replace status_changed bool (abutcher@redhat.com)
  620. - Improve docs and consistency of setting the ssh_user (jdetiber@redhat.com)
  621. - remove outdated comments (jdetiber@redhat.com)
  622. - add etcd hosts for gce playbooks (jdetiber@redhat.com)
  623. - GCE cloud provider updates (jdetiber@redhat.com)
  624. - Remove extra nfs configuration. (abutcher@redhat.com)
  625. - Do not apply the etcd_certificates role during node playbook.
  626. (abutcher@redhat.com)
  627. - Add g_new_node_hosts to cluster_hosts. (abutcher@redhat.com)
  628. - Updating examples to use /etc/origin/master/htpasswd (jstuever@redhat.com)
  629. - Refactor registry storage options. (abutcher@redhat.com)
  630. - Additional overrides for cloud provider playbooks (jdetiber@redhat.com)
  631. - Bring first etcd server up before others. (dgoodwin@redhat.com)
  632. * Tue Feb 02 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.38-1
  633. - aoi: Ask for osm_default_subdomain in interactive mode (smunilla@redhat.com)
  634. - add item to hold number of stray OVS rules found/removed (jdiaz@redhat.com)
  635. - changed adhoc playbook to match new host monitoring container
  636. (mwoodson@redhat.com)
  637. - Multi-master fixes for provider playbooks (jdetiber@redhat.com)
  638. - zabbix: added master local api items and triggers (mwoodson@redhat.com)
  639. - Added docs around oo_nodes_with_label (jdetiber@redhat.com)
  640. - fix for terminate (jdetiber@redhat.com)
  641. - Fix node tags for aws provider (jdetiber@redhat.com)
  642. - use yaml for loading lable info instead of json (jdetiber@redhat.com)
  643. - infra_node fixes (jdetiber@redhat.com)
  644. - removing extraneous comments (rharriso@redhat.com)
  645. - Remove commented lines and fix pylint check (rharriso@redhat.com)
  646. - Cleaning up the dyn ansible module for merging (rharriso@redhat.com)
  647. - Fix missing bool filter (sdodson@redhat.com)
  648. - Sync platest imagestreams (sdodson@redhat.com)
  649. - Fixing last pylint error (rharriso@redhat.com)
  650. - Fix hostname for aws cloud provider (jdetiber@redhat.com)
  651. - Fixing pylint errors (rharriso@redhat.com)
  652. - Give openvswitch container some time to start (jprovazn@redhat.com)
  653. - s3_registry no filter named 'lookup' (florian.lambert@enovance.com)
  654. - WIP adding the lib_dyn role for the dyn_record module (rharriso@redhat.com)
  655. * Fri Jan 29 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.37-1
  656. - Adding ip address option (kwoodson@redhat.com)
  657. - Enable cockpit when not is_atomic. (abutcher@redhat.com)
  658. - Explicitly restart the atomic node service after configuring it for nuage
  659. (vishal.patil@nuagenetworks.net)
  660. - Fix for bug 1298 (vishal.patil@nuagenetworks.net)
  661. - fixing logic for skipping symlinks (kwoodson@redhat.com)
  662. - Allow to have custom bucket name and region (florian.lambert@enovance.com)
  663. - Add inventory example for logrotate_scripts (abutcher@redhat.com)
  664. - Minor readme cleanup for Bug 1271566 (bleanhar@redhat.com)
  665. - fix template trigger calc (jdiaz@redhat.com)
  666. - Configure logrotate on atomic. (abutcher@redhat.com)
  667. - Comparing zbx_host interfaces and removing duplicate hostgroup_names
  668. (kwoodson@redhat.com)
  669. - Dockerfile: Require pyOpenSSL (gscrivan@redhat.com)
  670. - replace yum with dnf (spartacus06@gmail.com)
  671. - Install cockpit, logrotate and fluentd unless host is atomic.
  672. (abutcher@redhat.com)
  673. - zabbix: added the skydns items and triggers (mwoodson@redhat.com)
  674. - fix pkg_version (spinolacastro@gmail.com)
  675. - Expose data_dir (spinolacastro@gmail.com)
  676. - Fix checking for update package availability (nikolai@prokoschenko.de)
  677. - Fix oo_pretty_print_cluster following the renaming of `env` into `clusterid`
  678. (lhuard@amadeus.com)
  679. - Ensure openssl present for etcd_ca (jdetiber@redhat.com)
  680. - Update Docs and test for testing ansible version (jdetiber@redhat.com)
  681. - Add Nuage support to openshift ansible (vishpat@gmail.com)
  682. - Updating for host monitoring HA masters (kwoodson@redhat.com)
  683. - adhoc s3 registry - add auth part in the registry config sample
  684. (gael.lambert@enovance.com)
  685. - Move the `is_atomic` check from `update_repos_and_packages.yml` to
  686. `rhel_subscribe` (lhuard@amadeus.com)
  687. - Increase OpenStack stack creation/deletion timeout (lhuard@amadeus.com)
  688. * Mon Jan 25 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.36-1
  689. - Fixing awsutil to support aliases and v3 (kwoodson@redhat.com)
  690. - Fail when master restart playbook finds no active masters rather than any
  691. failed masters. (abutcher@redhat.com)
  692. - Skipping any symlinks for the yaml validation check (kwoodson@redhat.com)
  693. - Added template for config loop. (twiest@redhat.com)
  694. - Test validate_pcs_cluster input is basestring instead of str.
  695. (abutcher@redhat.com)
  696. - Fix error when oo_masters_to_config is empty (jdetiber@redhat.com)
  697. - Update inventory examples for console customization (spinolacastro@gmail.com)
  698. - Expose console config for customization (spinolacastro@gmail.com)
  699. - oso_host_monitoring: added environment as a var to the host monitoring
  700. systemd script (mwoodson@redhat.com)
  701. - Check master certificates during upgrade. (abutcher@redhat.com)
  702. - Use haproxy frontend port for os_firewall. (abutcher@redhat.com)
  703. - Fix native master api sysconfig. (abutcher@redhat.com)
  704. - Enable kubernetes master config of podEvictionTimeout from ansible
  705. (jstuever@redhat.com)
  706. - Fix wrapper pathing for non-root user install. (abutcher@redhat.com)
  707. - Remove camel case for bin/cluster addNodes (jdetiber@redhat.com)
  708. - Update cluster_hosts.yml for cloud providers (jdetiber@redhat.com)
  709. - Removing ruby scripts and replacing with python. (kwoodson@redhat.com)
  710. - Fixed a logic bug and yaml load (kwoodson@redhat.com)
  711. - Fixing yaml validation in python. Inputs behave differently as does glob
  712. (kwoodson@redhat.com)
  713. - oso_monitoring: add the zabbix libs (mwoodson@redhat.com)
  714. - Removing removing scripts and moving to python. (kwoodson@redhat.com)
  715. - add ability to disable ztriggers and disable new container dns check
  716. (jdiaz@redhat.com)
  717. - Remove default disable of SDN for GCE (jdetiber@redhat.com)
  718. - Fix hardcoded api_port in openshift_master_cluster (jdetiber@redhat.com)
  719. - Use local address for loopback kubeconfig (jdetiber@redhat.com)
  720. - consolidate steps and cleanup template dir (jdetiber@redhat.com)
  721. - v3_0_to_v3_1_upgrade: Remove is_atomic check for upgrades
  722. (smunilla@redhat.com)
  723. - v3_0_to_v3_1_upgrade: Copy tasks rather than including from the playbook
  724. (smunilla@redhat.com)
  725. - v3_0_to_v3_1_upgrade: Install storage packages (smunilla@redhat.com)
  726. - Controllers_port and firewall rules (spinolacastro@gmail.com)
  727. - Fix bind address/port when isn't default (spinolacastro@gmail.com)
  728. - Add ability to disable os_firewall (jdetiber@redhat.com)
  729. * Mon Jan 18 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.35-1
  730. - added the lib_timedate role (mwoodson@redhat.com)
  731. - added chrony (mwoodson@redhat.com)
  732. - added oso_moniotoring tools role (mwoodson@redhat.com)
  733. - Improve pacemaker 'is-active' check. (abutcher@redhat.com)
  734. * Mon Jan 18 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.34-1
  735. - clean up too-many-branches / logic (jdiaz@redhat.com)
  736. - atomic-openshift-installer: add containerized to inventory
  737. (smunilla@redhat.com)
  738. - Add 'unknown' to possible output for the is-active check.
  739. (abutcher@redhat.com)
  740. - Fix cluster_method conditional in master restart playbook.
  741. (abutcher@redhat.com)
  742. - Use IdentityFile instead of PrivateKey (donovan.muller@gmail.com)
  743. - atomic-openshift-installer: Remove containerized install for 3.0
  744. (smunilla@redhat.com)
  745. - Host group should be OSEv3 not OSv3 (donovan.muller@gmail.com)
  746. - Remove pause after haproxy start (abutcher@redhat.com)
  747. - Ensure nfs-utils installed for non-atomic hosts. (abutcher@redhat.com)
  748. * Fri Jan 15 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.33-1
  749. - Configure nodes which are also masters prior to nodes in containerized
  750. install. (abutcher@redhat.com)
  751. - Call attention to openshift_master_rolling_restart_mode variable in restart
  752. prompt. (abutcher@redhat.com)
  753. - Added anchors for rules in style_guide.adoc in order to make it easier to
  754. reference specific rules in PRs. (twiest@redhat.com)
  755. - Update ec2.ini (jdetiber@redhat.com)
  756. * Thu Jan 14 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.32-1
  757. - Uninstall remove containerized wrapper and symlinks (abutcher@redhat.com)
  758. * Thu Jan 14 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.31-1
  759. - Check api prior to starting node. (abutcher@redhat.com)
  760. - added anchors (twiest@redhat.com)
  761. * Wed Jan 13 2016 Joel Diaz <jdiaz@redhat.com> 3.0.30-1
  762. - Add -A and detail --v3 flags
  763. * Wed Jan 13 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.29-1
  764. - 3.1.1 upgrade playbook (bleanhar@redhat.com)
  765. - Updated help menu for v3 flag (kwoodson@redhat.com)
  766. - Add wait in between api and controllers start for native ha.
  767. (abutcher@redhat.com)
  768. - atomic-openshift-installer: Error handling for unicode hostnames
  769. (smunilla@redhat.com)
  770. - Update api verification. (abutcher@redhat.com)
  771. - Add a Verify API Server handler that waits for the API server to become
  772. available (sdodson@redhat.com)
  773. - Add -A parameter to forward ssh agent (jdiaz@redhat.com)
  774. - Validate pacemaker cluster members. (abutcher@redhat.com)
  775. - Removed atomic host check (kwoodson@redhat.com)
  776. - Add is_containerized inputs to nosetests. (abutcher@redhat.com)
  777. - Add wait for API before starting controllers w/ native ha install.
  778. (abutcher@redhat.com)
  779. - Fix for to_padded_yaml filter (jdetiber@redhat.com)
  780. - - sqashed to one commit (llange@redhat.com)
  781. - Switch to using hostnamectl as it works on atomic and rhel7
  782. (sdodson@redhat.com)
  783. - Update rolling restart playbook for pacemaker support. Replace fail with a
  784. warn and prompt if running ansible from a host that will be rebooted. Re-
  785. organize playbooks. (abutcher@redhat.com)
  786. - Implement simple master rolling restarts. (dgoodwin@redhat.com)
  787. - re-enable containerize installs (sdodson@redhat.com)
  788. - Set portal net in master playbook (jdetiber@redhat.com)
  789. - Set the cli image to match osm_image in openshift_cli role
  790. (sdodson@redhat.com)
  791. - atomic-openshift-installer: Populate new_nodes group (smunilla@redhat.com)
  792. - Always pull docker images (sdodson@redhat.com)
  793. * Mon Jan 11 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.28-1
  794. - added the rhe7-host-monitoring service file (mwoodson@redhat.com)
  795. - Fixing tab completion for latest metadata changes (kwoodson@redhat.com)
  796. - Removing some internal hostnames (bleanhar@redhat.com)
  797. - Fixing tab completion for latest metadata changes (kwoodson@redhat.com)
  798. - Make bin/cluster able to spawn OSE 3.1 clusters (lhuard@amadeus.com)
  799. - oso_host_monitoring role: removed the f22 and zagg client, replaced it with
  800. oso-rhel7-host-monitoring container (mwoodson@redhat.com)
  801. * Fri Jan 08 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.27-1
  802. - Update to metadata tooling. (kwoodson@redhat.com)
  803. - Fix VM drive cleanup during terminate on libvirt (lhuard@amadeus.com)
  804. * Fri Jan 08 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.26-1
  805. - Bug 1296388 - fixing typo (bleanhar@redhat.com)
  806. * Thu Jan 07 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.25-1
  807. - Bug 1296388 - The playbook still configure ManageIQ when
  808. openshift_use_manageiq is false (bleanhar@redhat.com)
  809. - Add a banner to CLI wrapper instructing users that it's only for
  810. bootstrapping (sdodson@redhat.com)
  811. - Rename env into clusterid and add environment in the OpenStack VMs tags
  812. (lhuard@amadeus.com)
  813. - Fix terminate.yml on OpenStack (lhuard@amadeus.com)
  814. - Install gluster and ceph packages when containerized but not atomic
  815. (sdodson@redhat.com)
  816. - Update openshift_facts config_base for Online deployments (whearn@redhat.com)
  817. - Fix multi-word arguments & cli wrapper stdin plumbing (sdodson@redhat.com)
  818. - Improve 3.1/1.1 upgrade check (jdetiber@redhat.com)
  819. * Thu Jan 07 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.24-1
  820. - Setting relative paths in the upgrade playbooks wasn't working
  821. (bleanhar@redhat.com)
  822. * Wed Jan 06 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.23-1
  823. - Move extra secret validations into openshift_facts. (abutcher@redhat.com)
  824. - Remove not is_containerized restriction on storage plugin includes.
  825. (abutcher@redhat.com)
  826. - We can't enable manageiq for installations less than OSE 3.1 or Origin 1.1
  827. (bleanhar@redhat.com)
  828. - Fix RHN subscription by explicitly attaching to the right pool
  829. (lhuard@amadeus.com)
  830. - openshift_facts validation (abutcher@redhat.com)
  831. - Secrets validation. (abutcher@redhat.com)
  832. - Clean up idempotency issues with session secrets. (abutcher@redhat.com)
  833. * Wed Jan 06 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.22-1
  834. - playbook for restarting SDN (jdiaz@redhat.com)
  835. - Stop haproxy and remove package during uninstall. (abutcher@redhat.com)
  836. - Group name as per hosts.origin.example (donovan.muller@gmail.com)
  837. - I believe the ami id changed since the initial documentation was created for
  838. AWS deployment (rcook@redhat.com)
  839. * Tue Jan 05 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.21-1
  840. - Fix osm_controller_args and osm_api_server_args settings.
  841. (abutcher@redhat.com)
  842. - Fix error in byo cluster_hosts.yml (jdetiber@redhat.com)
  843. - Cleanup and fixes for cluster_id change (jdetiber@redhat.com)
  844. - Fix typo in etcd service status fact. (abutcher@redhat.com)
  845. - Removing environment and env tags. (kwoodson@redhat.com)
  846. - Add node kubelet args to inventory examples. (abutcher@redhat.com)
  847. - Adding ManageIQ service account by default (efreiber@redhat.com)
  848. - Fixes typo assigning docker_service_status_changed which leads to
  849. misinterpretation in handler. (eric.mountain@amadeus.com)
  850. - Fix restart handlers. (abutcher@redhat.com)
  851. - Remove lb from docker hosts. (abutcher@redhat.com)
  852. - Install iptables, iptables-services when not is_aotmic (sdodson@redhat.com)
  853. - Install all xpaas streams when enabled (sdodson@redhat.com)
  854. - add the necessary URLs for logging and metrics
  855. (git001@users.noreply.github.com)
  856. - Link to Tito Home Page is Broken (lloy0076@adam.com.au)
  857. - Conditionalize for 3.1.1/1.1.1 (abutcher@redhat.com)
  858. - Use notify for workaround controllers unit. (abutcher@redhat.com)
  859. - change dns triggers to average (jdiaz@redhat.com)
  860. - add item/trigger for dns tests on all currently running containers
  861. (jdiaz@redhat.com)
  862. - Add jboss-fuse/application-templates/fis-image-streams.json
  863. (sdodson@redhat.com)
  864. - atomic-openshift-installer: Fix broken nosetest (smunilla@redhat.com)
  865. - Update from jboss-openshift/application-templates ose-v1.2.0-1
  866. (sdodson@redhat.com)
  867. - fix logic to tolerate occasional failures (jdiaz@redhat.com)
  868. - Clean up versions.sh (sdodson@redhat.com)
  869. - change ovs mount to /var/run/openvswitch will not require a container restart
  870. if openvswitch service is restarted (jdiaz@redhat.com)
  871. - split zagg.server.processor.errors into separate heartbeat and metrics error
  872. items (needed since the scripts are split now). (twiest@redhat.com)
  873. - quick installer tests (smunilla@redhat.com)
  874. - atomic-openshift-installer: Remove HA hint for 3.0 install
  875. (smunilla@redhat.com)
  876. - Add some guards to wait for images to be pulled before moving on
  877. (sdodson@redhat.com)
  878. - Install httpd-tools when not is_atomic (sdodson@redhat.com)
  879. - Properly set use_flannel fact (sbaubeau@redhat.com)
  880. - Fix containerized variable (sdodson@redhat.com)
  881. - Skip yum/dnf ops when is_containerized (sdodson@redhat.com)
  882. - Move all docker config into openshift_docker to minimize docker restarts
  883. (sdodson@redhat.com)
  884. - Create nfs host group with registry volume attachment. (abutcher@redhat.com)
  885. - Add openshift_cli role (sdodson@redhat.com)
  886. - pull docker images only if not already present (jdetiber@redhat.com)
  887. - fixes (jdetiber@redhat.com)
  888. - Containerization work by @sdodson (sdodson@redhat.com)
  889. - Initial containerization work from @ibotty (tob@butter.sh)
  890. - Add zabbix values to track docker container DNS results (jdiaz@redhat.com)
  891. - Fix registry modification for new deployment types. (dgoodwin@redhat.com)
  892. - Updates to ohi to pull cache if specified. Also require version
  893. (kwoodson@redhat.com)
  894. - Zabbix: added trigger to monitor app create over the last hour
  895. (mwoodson@redhat.com)
  896. - added 'Template Zagg Server' (twiest@redhat.com)
  897. - Fixes typo when setting facts to record whether master/node has been
  898. restarted already, to decide whether notify handler should do so or not.
  899. Currently, this causes random SDN network setup failures as openshift-node
  900. gets restarted while the setup script is running, and the subsequent start
  901. fails to configure the SDN because it thinks it's already done.
  902. (eric.mountain@amadeus.com)
  903. - Change controllers service type to simple. (abutcher@redhat.com)
  904. - Updating env-host-type to host patterns (kwoodson@redhat.com)
  905. - Add note that Fedora 23+ is acceptable deployment target for origin
  906. (admiller@redhat.com)
  907. - Enforce connection: local and become: no on all localhost plays
  908. (jdetiber@redhat.com)
  909. - Use join for the uncompress command. (jsteffan@fedoraproject.org)
  910. - Update for latest CentOS-7-x86_64-GenericCloud. - Use xz compressed image -
  911. Update sha256 for new image - Update docs to reflect new settings
  912. (jsteffan@fedoraproject.org)
  913. * Thu Dec 10 2015 Thomas Wiest <twiest@redhat.com> 3.0.20-1
  914. - Revert "Automatic commit of package [openshift-ansible] release [3.0.20-1]."
  915. (twiest@redhat.com)
  916. - Automatic commit of package [openshift-ansible] release [3.0.20-1].
  917. (twiest@redhat.com)
  918. - Install base package in openshift_common for version facts
  919. (abutcher@redhat.com)
  920. - Make the install of openshift_examples optional (jtslear@gmail.com)
  921. - add support for remote command actions no support for anything but custom
  922. scripts at this time (jdiaz@redhat.com)
  923. - Remove yum / dnf duplication (sdodson@redhat.com)
  924. - Remove hacluster user during uninstall. (abutcher@redhat.com)
  925. - Simplify session secrets overrides. (abutcher@redhat.com)
  926. - Squash pcs install into one task. (abutcher@redhat.com)
  927. - Bump ansible requirement to 1.9.4 (sdodson@redhat.com)
  928. * Wed Dec 09 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.19-1
  929. - Fix version dependent image streams (sdodson@redhat.com)
  930. - atomic-openshift-installer: Error handling on yaml loading
  931. (smunilla@redhat.com)
  932. - Betterize AWS readme (jtslear@gmail.com)
  933. * Tue Dec 08 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.18-1
  934. - Pass in and use first_master_ip as dnsIP for pre 3.1 nodes.
  935. (abutcher@redhat.com)
  936. - Fix delete state (jdiaz@redhat.com)
  937. - Require pyOpenSSL (sdodson@redhat.com)
  938. - Update sync db-templates, image-streams, and quickstart-templates
  939. (sdodson@redhat.com)
  940. - Clarify the preflight port check output (sdodson@redhat.com)
  941. - Fix missing dependency version locking (sdodson@redhat.com)
  942. * Tue Dec 08 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.17-1
  943. - Improving output when gathering facts (bleanhar@redhat.com)
  944. - Bug 1287977 - Incorrect check output from atomic-openshift-installer when
  945. working with preconfigured load balancer (bleanhar@redhat.com)
  946. - Add unique AEP, OSE, and Origin BYO inventories (sdodson@redhat.com)
  947. - bring the docker udev workaround into openshift-ansible.git
  948. (jdiaz@redhat.com)
  949. - Zabbix: put in a note about trigger prototype dependency
  950. (mwoodson@redhat.com)
  951. - Zabbix: added dependency for inode disk check (mwoodson@redhat.com)
  952. - Zabbix: added dependency for disk check (mwoodson@redhat.com)
  953. - zabbix: removed ethernet graphs (mwoodson@redhat.com)
  954. - Zabbix: added trigger dependencies to certain master checks
  955. (mwoodson@redhat.com)
  956. - ManageIQ Service Account: added role for ManageIQ service account
  957. (efreiber@redhat.com)
  958. - added the pv zabbix keys (mwoodson@redhat.com)
  959. - Refactor dns options and facts. (abutcher@redhat.com)
  960. - Fix openshift_facts playbook for yum/dnf changes (jdetiber@redhat.com)
  961. - Configured master count should be 1 for pacemaker ha. (abutcher@redhat.com)
  962. - Fedora changes: (admiller@redhat.com)
  963. - Centralize etcd/schedulability logic for each host. (dgoodwin@redhat.com)
  964. - added upgrade playbook for online (sedgar@redhat.com)
  965. - Improved installation summary. (dgoodwin@redhat.com)
  966. - Fix kubernetes service ip gathering. (abutcher@redhat.com)
  967. - added docker registry cluster check (mwoodson@redhat.com)
  968. - Add warning for HA deployments with < 3 dedicated nodes.
  969. (dgoodwin@redhat.com)
  970. - Cleanup more schedulable typos. (dgoodwin@redhat.com)
  971. - Fix validation for BasicAuthPasswordIdentityProvider (tschan@puzzle.ch)
  972. - Fix ec2 instance type lookups (jdetiber@redhat.com)
  973. - remove debug logging from scc/privileged patch command (jdetiber@redhat.com)
  974. - Set api version for oc commands (jdetiber@redhat.com)
  975. - 3.1 upgrade - use --api-version for patch commands (jdetiber@redhat.com)
  976. - Fix bug when warning on no dedicated nodes. (dgoodwin@redhat.com)
  977. - Suggest dedicated nodes for an HA deployment. (dgoodwin@redhat.com)
  978. - Error out if no load balancer specified. (dgoodwin@redhat.com)
  979. - Adjust requirement for 3 masters for HA deployments. (dgoodwin@redhat.com)
  980. - Fixing 'unscheduleable' typo (bleanhar@redhat.com)
  981. - Update IMAGE_PREFIX and IMAGE_VERSION values in hawkular template
  982. (nakayamakenjiro@gmail.com)
  983. - Improved output when re-running after editing config. (dgoodwin@redhat.com)
  984. - Print a system summary after adding each. (dgoodwin@redhat.com)
  985. - Text improvements for host specification. (dgoodwin@redhat.com)
  986. - Assert etcd section written for HA installs. (dgoodwin@redhat.com)
  987. - Breakout a test fixture to reduce module size. (dgoodwin@redhat.com)
  988. - Pylint touchups. (dgoodwin@redhat.com)
  989. - Trim assertions in HA testing. (dgoodwin@redhat.com)
  990. - Test unattended HA quick install. (dgoodwin@redhat.com)
  991. - Don't prompt to continue during unattended installs. (dgoodwin@redhat.com)
  992. - Block re-use of master/node as load balancer in attended install.
  993. (dgoodwin@redhat.com)
  994. - Add -q flag to remove unwantend output (such as mirror and cache information)
  995. (urs.breu@ergon.ch)
  996. - Uninstall: only restart docker on node hosts. (abutcher@redhat.com)
  997. - Explicitly set schedulable when masters == nodes. (dgoodwin@redhat.com)
  998. - Use admin.kubeconfig for get svc ip. (abutcher@redhat.com)
  999. - Point enterprise metrics at registry.access.redhat.com/openshift3/metrics-
  1000. (sdodson@redhat.com)
  1001. - Make sure that OpenSSL is installed before use (fsimonce@redhat.com)
  1002. - fixes for installer wrapper scaleup (jdetiber@redhat.com)
  1003. - addtl aws fixes (jdetiber@redhat.com)
  1004. - Fix failure when seboolean not present (jdetiber@redhat.com)
  1005. - fix addNodes.yml (jdetiber@redhat.com)
  1006. - more aws support for scaleup (jdetiber@redhat.com)
  1007. - start of aws scaleup (jdetiber@redhat.com)
  1008. - Improve scaleup playbook (jdetiber@redhat.com)
  1009. - Update openshift_repos to refresh package cache on changes
  1010. (jdetiber@redhat.com)
  1011. - Add etcd nodes management in OpenStack (lhuard@amadeus.com)
  1012. * Tue Nov 24 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.16-1
  1013. - Silencing pylint branch errors for now for the atomic-openshift-installer
  1014. harness (bleanhar@redhat.com)
  1015. - Properly setting scheduleability for HA Master scenarios
  1016. (bleanhar@redhat.com)
  1017. - added graphs (mwoodson@redhat.com)
  1018. - Rework setting of hostname (jdetiber@redhat.com)
  1019. - Fixed a bug in the actions. It now supports changing opconditions
  1020. (kwoodson@redhat.com)
  1021. - Conditionally set the nodeIP (jdetiber@redhat.com)
  1022. - Bug 1284991 - "atomic-openshift-installer uninstall" error when configuration
  1023. file is missing. (bleanhar@redhat.com)
  1024. - Avoid printing the master and node totals in the add-a-node scenario
  1025. (bleanhar@redhat.com)
  1026. - Fixing tests for quick_ha (bleanhar@redhat.com)
  1027. - Removing a debug line (bleanhar@redhat.com)
  1028. - atomic-openshift-installer: Fix lint issue (smunilla@redhat.com)
  1029. - Handling preconfigured load balancers (bleanhar@redhat.com)
  1030. - atomic-openshift-installer: Rename ha_proxy (smunilla@redhat.com)
  1031. - atomic-openshift-installer: Reverse version and host collection
  1032. (smunilla@redhat.com)
  1033. - cli_installer_tests: Add test for unattended quick HA (smunilla@redhat.com)
  1034. - Breakup inventory writing (smunilla@redhat.com)
  1035. - Enforce 1 or 3 masters (smunilla@redhat.com)
  1036. - Add interactive test (smunilla@redhat.com)
  1037. - atomic-openshift-installer: HA for quick installer (smunilla@redhat.com)
  1038. - Adding zbx_graph support (kwoodson@redhat.com)
  1039. - Modified step params to be in order when passed as a list
  1040. (kwoodson@redhat.com)
  1041. - Add serviceAccountConfig.masterCA during 3.1 upgrade (jdetiber@redhat.com)
  1042. - Use the identity_providers from openshift_facts instead of always using the
  1043. inventory variable (jdetiber@redhat.com)
  1044. - Refactor master identity provider configuration (jdetiber@redhat.com)
  1045. * Fri Nov 20 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.15-1
  1046. - Fixing clone group functionality. Also separating extra_vars from
  1047. extra_groups (kwoodson@redhat.com)
  1048. - Check the end result on bad config file (smunilla@redhat.com)
  1049. - Add some tests for a bad config (smunilla@redhat.com)
  1050. - atomic-openshift-installer: connect_to error handling (smunilla@redhat.com)
  1051. - atomic-openshift-installer: pylint fixes (smunilla@redhat.com)
  1052. - Replace map with oo_collect to support python-jinja2 <2.7
  1053. (abutcher@redhat.com)
  1054. - Making the uninstall playbook more flexible (bleanhar@redhat.com)
  1055. - Install version dependent image streams for v1.0 and v1.1
  1056. (sdodson@redhat.com)
  1057. - Do not update the hostname (jdetiber@redhat.com)
  1058. - Pylint fix for long line in cli docstring. (dgoodwin@redhat.com)
  1059. - Default to installing OSE 3.1 instead of 3.0. (dgoodwin@redhat.com)
  1060. - Fix tests on systems with openshift-ansible rpms installed.
  1061. (dgoodwin@redhat.com)
  1062. * Thu Nov 19 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.14-1
  1063. - added metric items to zabbix for openshift online (mwoodson@redhat.com)
  1064. - Updating usergroups to accept users (kwoodson@redhat.com)
  1065. - Differentiate machine types on GCE (master and nodes)
  1066. (romain.dossin@amadeus.com)
  1067. - Uninstall - Remove systemd wants file for node (jdetiber@redhat.com)
  1068. - ec2 - force !requiretty for ssh_user (jdetiber@redhat.com)
  1069. - small tweaks for adding docker volume for aws master hosts
  1070. (jdetiber@redhat.com)
  1071. - Created role to deploy ops host monitoring (jdiaz@redhat.com)
  1072. - Update certificate paths when 'names' key is provided. (abutcher@redhat.com)
  1073. - add a volume on master host, in AWS provisioning (chengcheng.mu@amadeus.com)
  1074. - First attempt at adding web scenarios (kwoodson@redhat.com)
  1075. - Use field numbers for all formats in bin/cluster for python 2.6
  1076. (abutcher@redhat.com)
  1077. - atomic-openshift-installer: Correct single master case (smunilla@redhat.com)
  1078. - added copr-openshift-ansible releaser, removed old rel-eng stuff.
  1079. (twiest@redhat.com)
  1080. - changed counter -> count (mwoodson@redhat.com)
  1081. - Updating zbx_item classes to support data types for bool.
  1082. (kwoodson@redhat.com)
  1083. - Fix ec2 instance type override (jdetiber@redhat.com)
  1084. - updated my check to support the boolean data type (mwoodson@redhat.com)
  1085. - Add additive_facts_to_overwrite instead of overwriting all additive_facts
  1086. (abutcher@redhat.com)
  1087. - added healthz check and more pod count checks (mwoodson@redhat.com)
  1088. - updating to the latest ec2.py (and re-patching with our changes).
  1089. (twiest@redhat.com)
  1090. - atomic-openshift-installer: Temporarily restrict to single master
  1091. (smunilla@redhat.com)
  1092. - openshift-ansible: Correct variable (smunilla@redhat.com)
  1093. - Refactor named certificates. (abutcher@redhat.com)
  1094. - atomic-openshift-utils: Version lock playbooks (smunilla@redhat.com)
  1095. - Add the native ha services and configs to uninstall (jdetiber@redhat.com)
  1096. - Bug 1282336 - Add additional seboolean for gluster (jdetiber@redhat.com)
  1097. - Raise lifetime to 2 weeks for dynamic AWS items (jdiaz@redhat.com)
  1098. - bin/cluster fix python 2.6 issue (jdetiber@redhat.com)
  1099. - cluster list: break host types by subtype (lhuard@amadeus.com)
  1100. - README_AWS: Add needed dependency (c.witt.1900@gmail.com)
  1101. - Fix invalid sudo command test (takayoshi@gmail.com)
  1102. - Docs: Fedora: Add missing dependencies and update to dnf. (public@omeid.me)
  1103. - Gate upgrade steps for 3.0 to 3.1 upgrade (jdetiber@redhat.com)
  1104. - added the tito and copr_cli roles (twiest@redhat.com)
  1105. - pylint openshift_facts (jdetiber@redhat.com)
  1106. - Update etcd default facts setting (jdetiber@redhat.com)
  1107. - Update master facts prior to upgrading incase facts are missing.
  1108. (abutcher@redhat.com)
  1109. - pre-upgrade-check: differentiates between port and targetPort in output
  1110. (smilner@redhat.com)
  1111. - Better structure the output of the list playbook (lhuard@amadeus.com)
  1112. - Add the sub-host-type tag to the libvirt VMs (lhuard@amadeus.com)
  1113. - atomic-openshift-installer: Update nopwd sudo test (smunilla@redhat.com)
  1114. - Fix pylint import errors for utils/test/. (dgoodwin@redhat.com)
  1115. - atomic-openshift-installer: Update prompts and help messages
  1116. (smunilla@redhat.com)
  1117. - Dependencies need to be added when a create occurs on SLA object.
  1118. (kwoodson@redhat.com)
  1119. - Test additions for cli_installer:get_hosts_to_install_on
  1120. (bleanhar@redhat.com)
  1121. - adding itservice (kwoodson@redhat.com)
  1122. - remove netaddr dependency (tob@butter.sh)
  1123. - Add pyOpenSSL to dependencies for Fedora. (public@omeid.me)
  1124. - Vagrant RHEL registration cleanup (pep@redhat.com)
  1125. - RH subscription: optional satellite and pkg update (pep@redhat.com)
  1126. * Tue Nov 17 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.13-1
  1127. - The aep3 images changed locations. (bleanhar@redhat.com)
  1128. - atomic-openshift-installer: Correct single master case (smunilla@redhat.com)
  1129. - atomic-openshift-installer: Temporarily restrict to single master
  1130. (smunilla@redhat.com)
  1131. * Wed Nov 11 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.12-1
  1132. - Sync with the latest image streams (sdodson@redhat.com)
  1133. * Wed Nov 11 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.11-1
  1134. - Migrate xpaas content from pre v1.1.0 (sdodson@redhat.com)
  1135. - Import latest xpaas templates and image streams (sdodson@redhat.com)
  1136. * Wed Nov 11 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.10-1
  1137. - Fix update error for templates that didn't previously exist
  1138. (jdetiber@redhat.com)
  1139. - General cleanup of v3_0_to_v3_1/upgrade.yml (jdetiber@redhat.com)
  1140. - Add zabbix pieces to hold AWS S3 bucket stats (jdiaz@redhat.com)
  1141. - add ansible dep to vagrant doc (jdetiber@redhat.com)
  1142. - oo_filter: don't fail when attribute is not defined (tob@butter.sh)
  1143. * Wed Nov 11 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.9-1
  1144. - Refactor upgrade playbook(s) (jdetiber@redhat.com)
  1145. * Tue Nov 10 2015 Scott Dodson <sdodson@redhat.com> 3.0.8-1
  1146. - Add origin-clients to uninstall playbook. (abutcher@redhat.com)
  1147. - examples: include logging and metrics infrastructure (lmeyer@redhat.com)
  1148. - Add separate step to enable services during upgrade. (dgoodwin@redhat.com)
  1149. - Update tests now that cli is not asking for rpm/container install
  1150. (smunilla@redhat.com)
  1151. - atomic-openshift-installer: Remove question for container install
  1152. (smunilla@redhat.com)
  1153. - Remove references to multi_ec2.py (jdetiber@redhat.com)
  1154. - 1279746: Fix leftover disabled features line in config template.
  1155. (dgoodwin@redhat.com)
  1156. - 1279734: Ensure services are enabled after upgrade. (dgoodwin@redhat.com)
  1157. - Fix missing etcd_data_dir bug. (dgoodwin@redhat.com)
  1158. - Package the default ansible.cfg with atomic-openshift-utils.
  1159. (dgoodwin@redhat.com)
  1160. - Add ldap auth identity provider to example inventory. (abutcher@redhat.com)
  1161. - Read etcd data dir from appropriate config file. (dgoodwin@redhat.com)
  1162. - atomic-openshift-installer: Generate inventory off hosts_to_run_on
  1163. (smunilla@redhat.com)
  1164. - Various fixes related to connect_to (bleanhar@redhat.com)
  1165. - Remove upgrade playbook restriction on 3.0.2. (dgoodwin@redhat.com)
  1166. - Conditionals for flannel etcd client certs. (abutcher@redhat.com)
  1167. - New `iptablesSyncPeriod` field in node configuration (abutcher@redhat.com)
  1168. - Fix indentation on when (jdetiber@redhat.com)
  1169. - Bug 1278863 - Error using openshift_pkg_version (jdetiber@redhat.com)
  1170. - more cleanup of names (mwoodson@redhat.com)
  1171. - Missing conditionals for api/controller sysconfig. (abutcher@redhat.com)
  1172. - Updating the atomic-openshift-isntaller local connection logic for the
  1173. connect_to addition. (bleanhar@redhat.com)
  1174. - cleaned up network checks (mwoodson@redhat.com)
  1175. - Minor upgrade improvements. (dgoodwin@redhat.com)
  1176. - Wait for cluster to recover after pcs resource restart. (abutcher@redhat.com)
  1177. - Bug 1278245 - Failed to add node to existing env using atomic-openshift-
  1178. installer (bleanhar@redhat.com)
  1179. - remove debug statement (jdetiber@redhat.com)
  1180. - Fix removal of kubernetesMasterConfig.apiLevels (jdetiber@redhat.com)
  1181. - atomic-openshift-installer: Better specification of ansible connection point
  1182. (smunilla@redhat.com)
  1183. - Fix issues related to upgrade packages being unavailable
  1184. (jdetiber@redhat.com)
  1185. - added network checks. also updated item prototype code to support more
  1186. (mwoodson@redhat.com)
  1187. - Fix data_dir for 3.0 deployments (jdetiber@redhat.com)
  1188. - Fix apiLevels modifications (jdetiber@redhat.com)
  1189. - Fix creation of origin symlink when dir already exists. (dgoodwin@redhat.com)
  1190. - apiLevel changes (jdetiber@redhat.com)
  1191. - Write new config to disk after successful upgrade. (dgoodwin@redhat.com)
  1192. - Fix pylint errors with getting hosts to run on. (dgoodwin@redhat.com)
  1193. - Remove v1beta3 by default for kube_nfs_volumes (jdetiber@redhat.com)
  1194. - Add pre-upgrade script to be run on first master. (dgoodwin@redhat.com)
  1195. - Start to handle pacemaker ha during upgrade (abutcher@redhat.com)
  1196. - Fix lb group related errors (jdetiber@redhat.com)
  1197. - Fix file check conditional. (abutcher@redhat.com)
  1198. - Don't check for certs in data_dir just raise when they can't be found. Fix
  1199. typo. (abutcher@redhat.com)
  1200. - exclude atomic-openshift-installer from bin subpackage (tdawson@redhat.com)
  1201. - add master_hostnames definition for upgrade (jdetiber@redhat.com)
  1202. - Additional upgrade enhancements (jdetiber@redhat.com)
  1203. - Handle backups for separate etcd hosts if necessary. (dgoodwin@redhat.com)
  1204. - Further upgrade improvements (jdetiber@redhat.com)
  1205. - Upgrade improvements (dgoodwin@redhat.com)
  1206. - Bug 1278243 - Confusing prompt from atomic-openshift-installer
  1207. (bleanhar@redhat.com)
  1208. - Bug 1278244 - Previously there was no way to add a node in unattended mode
  1209. (bleanhar@redhat.com)
  1210. - Revert to defaults (abutcher@redhat.com)
  1211. - Bug 1278244 - Incorrect node information gathered by atomic-openshift-
  1212. installer (bleanhar@redhat.com)
  1213. - atomic-openshift-installer's unattended mode wasn't work with --force for all
  1214. cases (bleanhar@redhat.com)
  1215. - Making it easier to use pre-release content (bleanhar@redhat.com)
  1216. - The uninstall playbook needs to remove /run/openshift-sdn
  1217. (bleanhar@redhat.com)
  1218. - Various HA changes for pacemaker and native methods. (abutcher@redhat.com)
  1219. - Bug 1274201 - Fixing non-root installations if using a local connection
  1220. (bleanhar@redhat.com)
  1221. - Bug 1274201 - Fixing sudo non-interactive test (bleanhar@redhat.com)
  1222. - Bug 1277592 - SDN MTU has hardcoded default (jdetiber@redhat.com)
  1223. - Atomic Enterprise/OpenShift Enterprise merge update (jdetiber@redhat.com)
  1224. - fix dueling controllers - without controllerLeaseTTL set in config, multiple
  1225. controllers will attempt to start (jdetiber@redhat.com)
  1226. - default to source persistence for haproxy (jdetiber@redhat.com)
  1227. - hardcode openshift binaries for now (jdetiber@redhat.com)
  1228. - more tweaks (jdetiber@redhat.com)
  1229. - more tweaks (jdetiber@redhat.com)
  1230. - additional ha related updates (jdetiber@redhat.com)
  1231. - additional native ha changes (abutcher@redhat.com)
  1232. - Start of true master ha (jdetiber@redhat.com)
  1233. - Atomic Enterprise related changes. (avagarwa@redhat.com)
  1234. - Remove pacemaker bits. (abutcher@redhat.com)
  1235. - Override hosts deployment_type fact for version we're upgrading to.
  1236. (dgoodwin@redhat.com)
  1237. - Pylint fixes for config upgrade module. (dgoodwin@redhat.com)
  1238. - Disable proxy cert config upgrade until certs being generated.
  1239. (dgoodwin@redhat.com)
  1240. - remove debug line (florian.lambert@enovance.com)
  1241. - [roles/openshift_master_certificates/tasks/main.yml] Fix variable
  1242. openshift.master.all_hostnames to openshift.common.all_hostnames
  1243. (florian.lambert@enovance.com)
  1244. - Fix bug with not upgrading openshift-master to atomic-openshift-master.
  1245. (dgoodwin@redhat.com)
  1246. - Adding aws and gce packages to ansible-inventory (kwoodson@redhat.com)
  1247. - Fix subpackage dependencies (jdetiber@redhat.com)
  1248. - Refactor common group evaluation to avoid duplication (jdetiber@redhat.com)
  1249. - common/openshift-cluster: Scaleup playbook (smunilla@redhat.com)
  1250. - Fix bug from module rename. (dgoodwin@redhat.com)
  1251. - Fix bug with default ansible playbook dir. (dgoodwin@redhat.com)
  1252. - Use the base package upgrade version so we can check things earlier.
  1253. (dgoodwin@redhat.com)
  1254. - Skip fail if enterprise deployment type depending on version.
  1255. (dgoodwin@redhat.com)
  1256. - Add debug output for location of etcd backup. (dgoodwin@redhat.com)
  1257. - Filter internal hostnames from the list of parsed names.
  1258. (abutcher@redhat.com)
  1259. - Move config upgrade to correct place, fix node facts. (dgoodwin@redhat.com)
  1260. - Add custom certificates to serving info in master configuration.
  1261. (abutcher@redhat.com)
  1262. - Add in proxyClientInfo if missing during config upgrade.
  1263. (dgoodwin@redhat.com)
  1264. - Implement master-config.yaml upgrade for v1beta3 apiLevel removal.
  1265. (dgoodwin@redhat.com)
  1266. - Fix installer upgrade bug following pylint fix. (dgoodwin@redhat.com)
  1267. - Document the new version field for installer config. (dgoodwin@redhat.com)
  1268. - Remove my username from some test data. (dgoodwin@redhat.com)
  1269. - Add a simple version for the installer config file. (dgoodwin@redhat.com)
  1270. - Pylint fix. (dgoodwin@redhat.com)
  1271. - Fix issue with master.proxy-client.{crt,key} and omit. (abutcher@redhat.com)
  1272. - initial module framework (jdetiber@redhat.com)
  1273. - Better info prior to initiating upgrade. (dgoodwin@redhat.com)
  1274. - Fix etcd backup bug with not-yet-created /var/lib/origin symlink
  1275. (dgoodwin@redhat.com)
  1276. - Print info after upgrade completes. (dgoodwin@redhat.com)
  1277. - Automatically upgrade legacy config files. (dgoodwin@redhat.com)
  1278. - Remove devel fail and let upgrade proceed. (dgoodwin@redhat.com)
  1279. - Add utils subpackage missing dep on openshift-ansible-roles.
  1280. (dgoodwin@redhat.com)
  1281. - Generate timestamped etcd backups. (dgoodwin@redhat.com)
  1282. - Add etcd_data_dir fact. (dgoodwin@redhat.com)
  1283. - Functional disk space checking for etcd backup. (dgoodwin@redhat.com)
  1284. - First cut at checking available disk space for etcd backup.
  1285. (dgoodwin@redhat.com)
  1286. - Block upgrade if targetting enterprise deployment type. (dgoodwin@redhat.com)
  1287. - Change flannel registration default values (sbaubeau@redhat.com)
  1288. - Remove empty notify section (sbaubeau@redhat.com)
  1289. - Check etcd certs exist for flannel when its support is enabled
  1290. (sbaubeau@redhat.com)
  1291. - Fix when neither use_openshift_sdn nor use_flannel are specified
  1292. (sbaubeau@redhat.com)
  1293. - Generate etcd certificats for flannel when is not embedded
  1294. (sbaubeau@redhat.com)
  1295. - Add missing 2nd true parameters to default Jinja filter (sbaubeau@redhat.com)
  1296. - Use 'command' module instead of 'shell' (sbaubeau@redhat.com)
  1297. - Add flannel modules documentation (sbaubeau@redhat.com)
  1298. - Only remove IPv4 address from docker bridge (sbaubeau@redhat.com)
  1299. - Remove multiple use_flannel fact definition (sbaubeau@redhat.com)
  1300. - Ensure openshift-sdn and flannel can't be used at the same time
  1301. (sbaubeau@redhat.com)
  1302. - Add flannel support (sbaubeau@redhat.com)
  1303. * Wed Nov 04 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.7-1
  1304. - added the %%util in zabbix (mwoodson@redhat.com)
  1305. - atomic-openshift-installer: Correct default playbook directory
  1306. (smunilla@redhat.com)
  1307. - Support for gce (kwoodson@redhat.com)
  1308. - fixed a dumb naming mistake (mwoodson@redhat.com)
  1309. - added disk tps checks to zabbix (mwoodson@redhat.com)
  1310. - atomic-openshift-installer: Correct inaccurate prompt (smunilla@redhat.com)
  1311. - atomic-openshift-installer: Add default openshift-ansible-playbook
  1312. (smunilla@redhat.com)
  1313. - ooinstall: Add check for nopwd sudo (smunilla@redhat.com)
  1314. - ooinstall: Update local install check (smunilla@redhat.com)
  1315. - oo-install: Support running on the host to be deployed (smunilla@redhat.com)
  1316. - Moving to Openshift Etcd application (mmahut@redhat.com)
  1317. - Add all the possible servicenames to openshift_all_hostnames for masters
  1318. (sdodson@redhat.com)
  1319. - Adding openshift.node.etcd items (mmahut@redhat.com)
  1320. - Fix etcd cert generation when etcd_interface is defined (jdetiber@redhat.com)
  1321. - get zabbix ready to start tracking status of pcp (jdiaz@redhat.com)
  1322. - split inventory into subpackages (tdawson@redhat.com)
  1323. - changed the cpu alert to only alert if cpu idle more than 5x. Change alert to
  1324. warning (mwoodson@redhat.com)
  1325. - Rename install_transactions module to openshift_ansible.
  1326. (dgoodwin@redhat.com)
  1327. - atomic-openshift-installer: Text improvements (smunilla@redhat.com)
  1328. - Add utils subpackage missing dep on openshift-ansible-roles.
  1329. (dgoodwin@redhat.com)
  1330. - Disable requiretty for only the openshift user (error@ioerror.us)
  1331. - Don't require tty to run sudo (error@ioerror.us)
  1332. - Attempt to remove the various interfaces left over from an install
  1333. (bleanhar@redhat.com)
  1334. - Pulling latest gce.py module from ansible (kwoodson@redhat.com)
  1335. - Disable OpenShift features if installing Atomic Enterprise
  1336. (jdetiber@redhat.com)
  1337. - Use default playbooks if available. (dgoodwin@redhat.com)
  1338. - Add uninstall subcommand. (dgoodwin@redhat.com)
  1339. - Add subcommands to CLI. (dgoodwin@redhat.com)
  1340. - Remove images options in oadm command (nakayamakenjiro@gmail.com)
  1341. * Fri Oct 30 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.6-1
  1342. - Adding python-boto and python-libcloud to openshift-ansible-inventory
  1343. dependency (kwoodson@redhat.com)
  1344. - Use more specific enterprise version for version_greater_than_3_1_or_1_1.
  1345. (abutcher@redhat.com)
  1346. - Conditionalizing the support for the v1beta3 api (bleanhar@redhat.com)
  1347. * Thu Oct 29 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.5-1
  1348. - Updating multi_ec2 to support extra_vars and extra_groups
  1349. (kwoodson@redhat.com)
  1350. - Removing the template and doing to_nice_yaml instead (kwoodson@redhat.com)
  1351. - README_AEP.md: update instructions for creating router and registry
  1352. (jlebon@redhat.com)
  1353. - README_AEP: Various fixes (walters@verbum.org)
  1354. - Fixing for extra_vars rename. (kwoodson@redhat.com)
  1355. - make storage_plugin_deps conditional on deployment_type (jdetiber@redhat.com)
  1356. - remove debugging pauses (jdetiber@redhat.com)
  1357. - make storage plugin dependency installation more flexible
  1358. (jdetiber@redhat.com)
  1359. - Install storage plugin dependencies (jdetiber@redhat.com)
  1360. * Wed Oct 28 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.4-1
  1361. - Removing spec files. (kwoodson@redhat.com)
  1362. - Updated example (kwoodson@redhat.com)
  1363. - Automatic commit of package [openshift-ansible-inventory] release [0.0.11-1].
  1364. (kwoodson@redhat.com)
  1365. - Automatic commit of package [openshift-ansible-bin] release [0.0.21-1].
  1366. (kwoodson@redhat.com)
  1367. - Automatic commit of package [openshift-ansible-inventory] release [0.0.10-1].
  1368. (kwoodson@redhat.com)
  1369. - Automatic commit of package [openshift-ansible-bin] release [0.0.20-1].
  1370. (kwoodson@redhat.com)
  1371. - Adding tito releasers configuration (bleanhar@redhat.com)
  1372. - Bug fixes for the uninstall playbook (bleanhar@redhat.com)
  1373. - Adding clone vars and groups. Renamed hostvars to extra_vars.
  1374. (kwoodson@redhat.com)
  1375. - Start tracking docker info execution time (jdiaz@redhat.com)
  1376. - The uninstall playbook should remove the kubeconfig for non-root installs
  1377. (bleanhar@redhat.com)
  1378. - Adding uninstall support for Atomic Host (bleanhar@redhat.com)
  1379. - add examples for SDN configuration (jdetiber@redhat.com)
  1380. * Tue Oct 27 2015 Troy Dawson <tdawson@redhat.com> 3.0.3-1
  1381. - Pylint fixes and ignores for incoming oo-install code. (dgoodwin@redhat.com)
  1382. - Pylint fixes (abutcher@redhat.com)
  1383. - Adding zabbix type and fixing zabbix agent vars (kwoodson@redhat.com)
  1384. - Add atomic-openshift-utils add atomic-openshift-utils to openshift-
  1385. ansible.spec file (tdawson@redhat.com)
  1386. - Fix quotes (spinolacastro@gmail.com)
  1387. - Use standard library for version comparison. (abutcher@redhat.com)
  1388. - added docker info to the end of docker loop to direct lvm playbook.
  1389. (twiest@redhat.com)
  1390. - Add missing quotes (spinolacastro@gmail.com)
  1391. - Adding Docker Log Options capabilities (epo@jemba.net)
  1392. - Move version greater_than_fact into openshift_facts (abutcher@redhat.com)
  1393. - Don't include proxy client cert when <3.1 or <1.1 (abutcher@redhat.com)
  1394. - Add proxy client certs to master config. (abutcher@redhat.com)
  1395. - Update imagestreams and quickstarts from origin (sdodson@redhat.com)
  1396. - Get default values from openshift_facts (spinolacastro@gmail.com)
  1397. - Cleanup (spinolacastro@gmail.com)
  1398. - Add missing inventory example (spinolacastro@gmail.com)
  1399. - Custom Project Config (spinolacastro@gmail.com)
  1400. * Mon Oct 19 2015 Troy Dawson <tdawson@redhat.com> 3.0.2-1
  1401. - Initial Package