openshift-ansible.spec 64 KB

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