openshift-ansible.spec 57 KB

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