openshift-ansible.spec 58 KB

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