openshift-ansible.spec 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867
  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.24
  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. ln -sf %{_datadir}/ansible/inventory/multi_inventory.py %{buildroot}%{python_sitelib}/openshift_ansible/multi_inventory.py
  45. ln -sf %{_datadir}/ansible/inventory/aws %{buildroot}%{python_sitelib}/openshift_ansible/aws
  46. # openshift-ansible-docs install
  47. # -docs are currently just %doc, no install needed
  48. # openshift-ansible-inventory install
  49. mkdir -p %{buildroot}/etc/ansible
  50. mkdir -p %{buildroot}%{_datadir}/ansible/inventory
  51. mkdir -p %{buildroot}%{_datadir}/ansible/inventory/aws
  52. mkdir -p %{buildroot}%{_datadir}/ansible/inventory/gce
  53. cp -p inventory/multi_inventory.py %{buildroot}%{_datadir}/ansible/inventory
  54. cp -p inventory/multi_inventory.yaml.example %{buildroot}/etc/ansible/multi_inventory.yaml
  55. cp -p inventory/aws/hosts/ec2.py %{buildroot}%{_datadir}/ansible/inventory/aws
  56. cp -p inventory/gce/hosts/gce.py %{buildroot}%{_datadir}/ansible/inventory/gce
  57. # openshift-ansible-playbooks install
  58. cp -rp playbooks %{buildroot}%{_datadir}/ansible/%{name}/
  59. # openshift-ansible-roles install
  60. cp -rp roles %{buildroot}%{_datadir}/ansible/%{name}/
  61. # openshift-ansible-filter-plugins install
  62. cp -rp filter_plugins %{buildroot}%{_datadir}/ansible_plugins/
  63. # openshift-ansible-lookup-plugins install
  64. cp -rp lookup_plugins %{buildroot}%{_datadir}/ansible_plugins/
  65. # atomic-openshift-utils install
  66. pushd utils
  67. %{__python} setup.py install --skip-build --root %{buildroot}
  68. # Remove this line once the name change has happened
  69. mv -f %{buildroot}%{_bindir}/oo-install %{buildroot}%{_bindir}/atomic-openshift-installer
  70. mkdir -p %{buildroot}%{_datadir}/atomic-openshift-utils/
  71. cp etc/ansible.cfg %{buildroot}%{_datadir}/atomic-openshift-utils/ansible.cfg
  72. popd
  73. # Base openshift-ansible files
  74. %files
  75. %doc LICENSE.md README*
  76. %dir %{_datadir}/ansible/%{name}
  77. # ----------------------------------------------------------------------------------
  78. # openshift-ansible-bin subpackage
  79. # ----------------------------------------------------------------------------------
  80. %package bin
  81. Summary: Openshift and Atomic Enterprise Ansible Scripts for working with metadata hosts
  82. Requires: %{name} = %{version}
  83. Requires: %{name}-inventory = %{version}
  84. Requires: %{name}-playbooks = %{version}
  85. BuildRequires: python2-devel
  86. BuildArch: noarch
  87. %description bin
  88. Scripts to make it nicer when working with hosts that are defined only by metadata.
  89. %files bin
  90. %{_bindir}/*
  91. %exclude %{_bindir}/atomic-openshift-installer
  92. %{python_sitelib}/openshift_ansible/
  93. /etc/bash_completion.d/*
  94. %config(noreplace) /etc/openshift_ansible/
  95. # ----------------------------------------------------------------------------------
  96. # openshift-ansible-docs subpackage
  97. # ----------------------------------------------------------------------------------
  98. %package docs
  99. Summary: Openshift and Atomic Enterprise Ansible documents
  100. Requires: %{name} = %{version}
  101. BuildArch: noarch
  102. %description docs
  103. %{summary}.
  104. %files docs
  105. %doc docs
  106. # ----------------------------------------------------------------------------------
  107. # openshift-ansible-inventory subpackage
  108. # ----------------------------------------------------------------------------------
  109. %package inventory
  110. Summary: Openshift and Atomic Enterprise Ansible Inventories
  111. Requires: %{name} = %{version}
  112. BuildArch: noarch
  113. %description inventory
  114. Ansible Inventories used with the openshift-ansible scripts and playbooks.
  115. %files inventory
  116. %config(noreplace) /etc/ansible/*
  117. %dir %{_datadir}/ansible/inventory
  118. %{_datadir}/ansible/inventory/multi_inventory.py*
  119. %package inventory-aws
  120. Summary: Openshift and Atomic Enterprise Ansible Inventories for AWS
  121. Requires: %{name}-inventory = %{version}
  122. Requires: python-boto
  123. BuildArch: noarch
  124. %description inventory-aws
  125. Ansible Inventories for AWS used with the openshift-ansible scripts and playbooks.
  126. %files inventory-aws
  127. %{_datadir}/ansible/inventory/aws/ec2.py*
  128. %package inventory-gce
  129. Summary: Openshift and Atomic Enterprise Ansible Inventories for GCE
  130. Requires: %{name}-inventory = %{version}
  131. Requires: python-libcloud >= 0.13
  132. BuildArch: noarch
  133. %description inventory-gce
  134. Ansible Inventories for GCE used with the openshift-ansible scripts and playbooks.
  135. %files inventory-gce
  136. %{_datadir}/ansible/inventory/gce/gce.py*
  137. # ----------------------------------------------------------------------------------
  138. # openshift-ansible-playbooks subpackage
  139. # ----------------------------------------------------------------------------------
  140. %package playbooks
  141. Summary: Openshift and Atomic Enterprise Ansible Playbooks
  142. Requires: %{name} = %{version}
  143. Requires: %{name}-roles = %{version}
  144. Requires: %{name}-lookup-plugins = %{version}
  145. Requires: %{name}-filter-plugins = %{version}
  146. BuildArch: noarch
  147. %description playbooks
  148. %{summary}.
  149. %files playbooks
  150. %{_datadir}/ansible/%{name}/playbooks
  151. # ----------------------------------------------------------------------------------
  152. # openshift-ansible-roles subpackage
  153. # ----------------------------------------------------------------------------------
  154. %package roles
  155. Summary: Openshift and Atomic Enterprise Ansible roles
  156. Requires: %{name} = %{version}
  157. Requires: %{name}-lookup-plugins = %{version}
  158. Requires: %{name}-filter-plugins = %{version}
  159. BuildArch: noarch
  160. %description roles
  161. %{summary}.
  162. %files roles
  163. %{_datadir}/ansible/%{name}/roles
  164. # ----------------------------------------------------------------------------------
  165. # openshift-ansible-filter-plugins subpackage
  166. # ----------------------------------------------------------------------------------
  167. %package filter-plugins
  168. Summary: Openshift and Atomic Enterprise Ansible filter plugins
  169. Requires: %{name} = %{version}
  170. BuildArch: noarch
  171. Requires: pyOpenSSL
  172. %description filter-plugins
  173. %{summary}.
  174. %files filter-plugins
  175. %{_datadir}/ansible_plugins/filter_plugins
  176. # ----------------------------------------------------------------------------------
  177. # openshift-ansible-lookup-plugins subpackage
  178. # ----------------------------------------------------------------------------------
  179. %package lookup-plugins
  180. Summary: Openshift and Atomic Enterprise Ansible lookup plugins
  181. Requires: %{name} = %{version}
  182. BuildArch: noarch
  183. %description lookup-plugins
  184. %{summary}.
  185. %files lookup-plugins
  186. %{_datadir}/ansible_plugins/lookup_plugins
  187. # ----------------------------------------------------------------------------------
  188. # atomic-openshift-utils subpackage
  189. # ----------------------------------------------------------------------------------
  190. %package -n atomic-openshift-utils
  191. Summary: Atomic OpenShift Utilities
  192. BuildRequires: python-setuptools
  193. Requires: %{name}-playbooks >= %{version}
  194. Requires: python-click
  195. Requires: python-setuptools
  196. Requires: PyYAML
  197. BuildArch: noarch
  198. %description -n atomic-openshift-utils
  199. Atomic OpenShift Utilities includes
  200. - atomic-openshift-installer
  201. - other utilities
  202. %files -n atomic-openshift-utils
  203. %{python_sitelib}/ooinstall*
  204. %{_bindir}/atomic-openshift-installer
  205. %{_datadir}/atomic-openshift-utils/ansible.cfg
  206. %changelog
  207. * Thu Jan 07 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.24-1
  208. - Setting relative paths in the upgrade playbooks wasn't working
  209. (bleanhar@redhat.com)
  210. * Wed Jan 06 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.23-1
  211. - Move extra secret validations into openshift_facts. (abutcher@redhat.com)
  212. - Remove not is_containerized restriction on storage plugin includes.
  213. (abutcher@redhat.com)
  214. - We can't enable manageiq for installations less than OSE 3.1 or Origin 1.1
  215. (bleanhar@redhat.com)
  216. - Fix RHN subscription by explicitly attaching to the right pool
  217. (lhuard@amadeus.com)
  218. - openshift_facts validation (abutcher@redhat.com)
  219. - Secrets validation. (abutcher@redhat.com)
  220. - Clean up idempotency issues with session secrets. (abutcher@redhat.com)
  221. * Wed Jan 06 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.22-1
  222. - playbook for restarting SDN (jdiaz@redhat.com)
  223. - Stop haproxy and remove package during uninstall. (abutcher@redhat.com)
  224. - Group name as per hosts.origin.example (donovan.muller@gmail.com)
  225. - I believe the ami id changed since the initial documentation was created for
  226. AWS deployment (rcook@redhat.com)
  227. * Tue Jan 05 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.21-1
  228. - Fix osm_controller_args and osm_api_server_args settings.
  229. (abutcher@redhat.com)
  230. - Fix error in byo cluster_hosts.yml (jdetiber@redhat.com)
  231. - Cleanup and fixes for cluster_id change (jdetiber@redhat.com)
  232. - Fix typo in etcd service status fact. (abutcher@redhat.com)
  233. - Removing environment and env tags. (kwoodson@redhat.com)
  234. - Add node kubelet args to inventory examples. (abutcher@redhat.com)
  235. - Adding ManageIQ service account by default (efreiber@redhat.com)
  236. - Fixes typo assigning docker_service_status_changed which leads to
  237. misinterpretation in handler. (eric.mountain@amadeus.com)
  238. - Fix restart handlers. (abutcher@redhat.com)
  239. - Remove lb from docker hosts. (abutcher@redhat.com)
  240. - Install iptables, iptables-services when not is_aotmic (sdodson@redhat.com)
  241. - Install all xpaas streams when enabled (sdodson@redhat.com)
  242. - add the necessary URLs for logging and metrics
  243. (git001@users.noreply.github.com)
  244. - Link to Tito Home Page is Broken (lloy0076@adam.com.au)
  245. - Conditionalize for 3.1.1/1.1.1 (abutcher@redhat.com)
  246. - Use notify for workaround controllers unit. (abutcher@redhat.com)
  247. - change dns triggers to average (jdiaz@redhat.com)
  248. - add item/trigger for dns tests on all currently running containers
  249. (jdiaz@redhat.com)
  250. - Add jboss-fuse/application-templates/fis-image-streams.json
  251. (sdodson@redhat.com)
  252. - atomic-openshift-installer: Fix broken nosetest (smunilla@redhat.com)
  253. - Update from jboss-openshift/application-templates ose-v1.2.0-1
  254. (sdodson@redhat.com)
  255. - fix logic to tolerate occasional failures (jdiaz@redhat.com)
  256. - Clean up versions.sh (sdodson@redhat.com)
  257. - change ovs mount to /var/run/openvswitch will not require a container restart
  258. if openvswitch service is restarted (jdiaz@redhat.com)
  259. - split zagg.server.processor.errors into separate heartbeat and metrics error
  260. items (needed since the scripts are split now). (twiest@redhat.com)
  261. - quick installer tests (smunilla@redhat.com)
  262. - atomic-openshift-installer: Remove HA hint for 3.0 install
  263. (smunilla@redhat.com)
  264. - Add some guards to wait for images to be pulled before moving on
  265. (sdodson@redhat.com)
  266. - Install httpd-tools when not is_atomic (sdodson@redhat.com)
  267. - Properly set use_flannel fact (sbaubeau@redhat.com)
  268. - Fix containerized variable (sdodson@redhat.com)
  269. - Skip yum/dnf ops when is_containerized (sdodson@redhat.com)
  270. - Move all docker config into openshift_docker to minimize docker restarts
  271. (sdodson@redhat.com)
  272. - Create nfs host group with registry volume attachment. (abutcher@redhat.com)
  273. - Add openshift_cli role (sdodson@redhat.com)
  274. - pull docker images only if not already present (jdetiber@redhat.com)
  275. - fixes (jdetiber@redhat.com)
  276. - Containerization work by @sdodson (sdodson@redhat.com)
  277. - Initial containerization work from @ibotty (tob@butter.sh)
  278. - Add zabbix values to track docker container DNS results (jdiaz@redhat.com)
  279. - Fix registry modification for new deployment types. (dgoodwin@redhat.com)
  280. - Updates to ohi to pull cache if specified. Also require version
  281. (kwoodson@redhat.com)
  282. - Zabbix: added trigger to monitor app create over the last hour
  283. (mwoodson@redhat.com)
  284. - added 'Template Zagg Server' (twiest@redhat.com)
  285. - Fixes typo when setting facts to record whether master/node has been
  286. restarted already, to decide whether notify handler should do so or not.
  287. Currently, this causes random SDN network setup failures as openshift-node
  288. gets restarted while the setup script is running, and the subsequent start
  289. fails to configure the SDN because it thinks it's already done.
  290. (eric.mountain@amadeus.com)
  291. - Change controllers service type to simple. (abutcher@redhat.com)
  292. - Updating env-host-type to host patterns (kwoodson@redhat.com)
  293. - Add note that Fedora 23+ is acceptable deployment target for origin
  294. (admiller@redhat.com)
  295. - Enforce connection: local and become: no on all localhost plays
  296. (jdetiber@redhat.com)
  297. - Use join for the uncompress command. (jsteffan@fedoraproject.org)
  298. - Update for latest CentOS-7-x86_64-GenericCloud. - Use xz compressed image -
  299. Update sha256 for new image - Update docs to reflect new settings
  300. (jsteffan@fedoraproject.org)
  301. * Thu Dec 10 2015 Thomas Wiest <twiest@redhat.com> 3.0.20-1
  302. - Revert "Automatic commit of package [openshift-ansible] release [3.0.20-1]."
  303. (twiest@redhat.com)
  304. - Automatic commit of package [openshift-ansible] release [3.0.20-1].
  305. (twiest@redhat.com)
  306. - Install base package in openshift_common for version facts
  307. (abutcher@redhat.com)
  308. - Make the install of openshift_examples optional (jtslear@gmail.com)
  309. - add support for remote command actions no support for anything but custom
  310. scripts at this time (jdiaz@redhat.com)
  311. - Remove yum / dnf duplication (sdodson@redhat.com)
  312. - Remove hacluster user during uninstall. (abutcher@redhat.com)
  313. - Simplify session secrets overrides. (abutcher@redhat.com)
  314. - Squash pcs install into one task. (abutcher@redhat.com)
  315. - Bump ansible requirement to 1.9.4 (sdodson@redhat.com)
  316. * Wed Dec 09 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.19-1
  317. - Fix version dependent image streams (sdodson@redhat.com)
  318. - atomic-openshift-installer: Error handling on yaml loading
  319. (smunilla@redhat.com)
  320. - Betterize AWS readme (jtslear@gmail.com)
  321. * Tue Dec 08 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.18-1
  322. - Pass in and use first_master_ip as dnsIP for pre 3.1 nodes.
  323. (abutcher@redhat.com)
  324. - Fix delete state (jdiaz@redhat.com)
  325. - Require pyOpenSSL (sdodson@redhat.com)
  326. - Update sync db-templates, image-streams, and quickstart-templates
  327. (sdodson@redhat.com)
  328. - Clarify the preflight port check output (sdodson@redhat.com)
  329. - Fix missing dependency version locking (sdodson@redhat.com)
  330. * Tue Dec 08 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.17-1
  331. - Improving output when gathering facts (bleanhar@redhat.com)
  332. - Bug 1287977 - Incorrect check output from atomic-openshift-installer when
  333. working with preconfigured load balancer (bleanhar@redhat.com)
  334. - Add unique AEP, OSE, and Origin BYO inventories (sdodson@redhat.com)
  335. - bring the docker udev workaround into openshift-ansible.git
  336. (jdiaz@redhat.com)
  337. - Zabbix: put in a note about trigger prototype dependency
  338. (mwoodson@redhat.com)
  339. - Zabbix: added dependency for inode disk check (mwoodson@redhat.com)
  340. - Zabbix: added dependency for disk check (mwoodson@redhat.com)
  341. - zabbix: removed ethernet graphs (mwoodson@redhat.com)
  342. - Zabbix: added trigger dependencies to certain master checks
  343. (mwoodson@redhat.com)
  344. - ManageIQ Service Account: added role for ManageIQ service account
  345. (efreiber@redhat.com)
  346. - added the pv zabbix keys (mwoodson@redhat.com)
  347. - Refactor dns options and facts. (abutcher@redhat.com)
  348. - Fix openshift_facts playbook for yum/dnf changes (jdetiber@redhat.com)
  349. - Configured master count should be 1 for pacemaker ha. (abutcher@redhat.com)
  350. - Fedora changes: (admiller@redhat.com)
  351. - Centralize etcd/schedulability logic for each host. (dgoodwin@redhat.com)
  352. - added upgrade playbook for online (sedgar@redhat.com)
  353. - Improved installation summary. (dgoodwin@redhat.com)
  354. - Fix kubernetes service ip gathering. (abutcher@redhat.com)
  355. - added docker registry cluster check (mwoodson@redhat.com)
  356. - Add warning for HA deployments with < 3 dedicated nodes.
  357. (dgoodwin@redhat.com)
  358. - Cleanup more schedulable typos. (dgoodwin@redhat.com)
  359. - Fix validation for BasicAuthPasswordIdentityProvider (tschan@puzzle.ch)
  360. - Fix ec2 instance type lookups (jdetiber@redhat.com)
  361. - remove debug logging from scc/privileged patch command (jdetiber@redhat.com)
  362. - Set api version for oc commands (jdetiber@redhat.com)
  363. - 3.1 upgrade - use --api-version for patch commands (jdetiber@redhat.com)
  364. - Fix bug when warning on no dedicated nodes. (dgoodwin@redhat.com)
  365. - Suggest dedicated nodes for an HA deployment. (dgoodwin@redhat.com)
  366. - Error out if no load balancer specified. (dgoodwin@redhat.com)
  367. - Adjust requirement for 3 masters for HA deployments. (dgoodwin@redhat.com)
  368. - Fixing 'unscheduleable' typo (bleanhar@redhat.com)
  369. - Update IMAGE_PREFIX and IMAGE_VERSION values in hawkular template
  370. (nakayamakenjiro@gmail.com)
  371. - Improved output when re-running after editing config. (dgoodwin@redhat.com)
  372. - Print a system summary after adding each. (dgoodwin@redhat.com)
  373. - Text improvements for host specification. (dgoodwin@redhat.com)
  374. - Assert etcd section written for HA installs. (dgoodwin@redhat.com)
  375. - Breakout a test fixture to reduce module size. (dgoodwin@redhat.com)
  376. - Pylint touchups. (dgoodwin@redhat.com)
  377. - Trim assertions in HA testing. (dgoodwin@redhat.com)
  378. - Test unattended HA quick install. (dgoodwin@redhat.com)
  379. - Don't prompt to continue during unattended installs. (dgoodwin@redhat.com)
  380. - Block re-use of master/node as load balancer in attended install.
  381. (dgoodwin@redhat.com)
  382. - Add -q flag to remove unwantend output (such as mirror and cache information)
  383. (urs.breu@ergon.ch)
  384. - Uninstall: only restart docker on node hosts. (abutcher@redhat.com)
  385. - Explicitly set schedulable when masters == nodes. (dgoodwin@redhat.com)
  386. - Use admin.kubeconfig for get svc ip. (abutcher@redhat.com)
  387. - Point enterprise metrics at registry.access.redhat.com/openshift3/metrics-
  388. (sdodson@redhat.com)
  389. - Make sure that OpenSSL is installed before use (fsimonce@redhat.com)
  390. - fixes for installer wrapper scaleup (jdetiber@redhat.com)
  391. - addtl aws fixes (jdetiber@redhat.com)
  392. - Fix failure when seboolean not present (jdetiber@redhat.com)
  393. - fix addNodes.yml (jdetiber@redhat.com)
  394. - more aws support for scaleup (jdetiber@redhat.com)
  395. - start of aws scaleup (jdetiber@redhat.com)
  396. - Improve scaleup playbook (jdetiber@redhat.com)
  397. - Update openshift_repos to refresh package cache on changes
  398. (jdetiber@redhat.com)
  399. - Add etcd nodes management in OpenStack (lhuard@amadeus.com)
  400. * Tue Nov 24 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.16-1
  401. - Silencing pylint branch errors for now for the atomic-openshift-installer
  402. harness (bleanhar@redhat.com)
  403. - Properly setting scheduleability for HA Master scenarios
  404. (bleanhar@redhat.com)
  405. - added graphs (mwoodson@redhat.com)
  406. - Rework setting of hostname (jdetiber@redhat.com)
  407. - Fixed a bug in the actions. It now supports changing opconditions
  408. (kwoodson@redhat.com)
  409. - Conditionally set the nodeIP (jdetiber@redhat.com)
  410. - Bug 1284991 - "atomic-openshift-installer uninstall" error when configuration
  411. file is missing. (bleanhar@redhat.com)
  412. - Avoid printing the master and node totals in the add-a-node scenario
  413. (bleanhar@redhat.com)
  414. - Fixing tests for quick_ha (bleanhar@redhat.com)
  415. - Removing a debug line (bleanhar@redhat.com)
  416. - atomic-openshift-installer: Fix lint issue (smunilla@redhat.com)
  417. - Handling preconfigured load balancers (bleanhar@redhat.com)
  418. - atomic-openshift-installer: Rename ha_proxy (smunilla@redhat.com)
  419. - atomic-openshift-installer: Reverse version and host collection
  420. (smunilla@redhat.com)
  421. - cli_installer_tests: Add test for unattended quick HA (smunilla@redhat.com)
  422. - Breakup inventory writing (smunilla@redhat.com)
  423. - Enforce 1 or 3 masters (smunilla@redhat.com)
  424. - Add interactive test (smunilla@redhat.com)
  425. - atomic-openshift-installer: HA for quick installer (smunilla@redhat.com)
  426. - Adding zbx_graph support (kwoodson@redhat.com)
  427. - Modified step params to be in order when passed as a list
  428. (kwoodson@redhat.com)
  429. - Add serviceAccountConfig.masterCA during 3.1 upgrade (jdetiber@redhat.com)
  430. - Use the identity_providers from openshift_facts instead of always using the
  431. inventory variable (jdetiber@redhat.com)
  432. - Refactor master identity provider configuration (jdetiber@redhat.com)
  433. * Fri Nov 20 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.15-1
  434. - Fixing clone group functionality. Also separating extra_vars from
  435. extra_groups (kwoodson@redhat.com)
  436. - Check the end result on bad config file (smunilla@redhat.com)
  437. - Add some tests for a bad config (smunilla@redhat.com)
  438. - atomic-openshift-installer: connect_to error handling (smunilla@redhat.com)
  439. - atomic-openshift-installer: pylint fixes (smunilla@redhat.com)
  440. - Replace map with oo_collect to support python-jinja2 <2.7
  441. (abutcher@redhat.com)
  442. - Making the uninstall playbook more flexible (bleanhar@redhat.com)
  443. - Install version dependent image streams for v1.0 and v1.1
  444. (sdodson@redhat.com)
  445. - Do not update the hostname (jdetiber@redhat.com)
  446. - Pylint fix for long line in cli docstring. (dgoodwin@redhat.com)
  447. - Default to installing OSE 3.1 instead of 3.0. (dgoodwin@redhat.com)
  448. - Fix tests on systems with openshift-ansible rpms installed.
  449. (dgoodwin@redhat.com)
  450. * Thu Nov 19 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.14-1
  451. - added metric items to zabbix for openshift online (mwoodson@redhat.com)
  452. - Updating usergroups to accept users (kwoodson@redhat.com)
  453. - Differentiate machine types on GCE (master and nodes)
  454. (romain.dossin@amadeus.com)
  455. - Uninstall - Remove systemd wants file for node (jdetiber@redhat.com)
  456. - ec2 - force !requiretty for ssh_user (jdetiber@redhat.com)
  457. - small tweaks for adding docker volume for aws master hosts
  458. (jdetiber@redhat.com)
  459. - Created role to deploy ops host monitoring (jdiaz@redhat.com)
  460. - Update certificate paths when 'names' key is provided. (abutcher@redhat.com)
  461. - add a volume on master host, in AWS provisioning (chengcheng.mu@amadeus.com)
  462. - First attempt at adding web scenarios (kwoodson@redhat.com)
  463. - Use field numbers for all formats in bin/cluster for python 2.6
  464. (abutcher@redhat.com)
  465. - atomic-openshift-installer: Correct single master case (smunilla@redhat.com)
  466. - added copr-openshift-ansible releaser, removed old rel-eng stuff.
  467. (twiest@redhat.com)
  468. - changed counter -> count (mwoodson@redhat.com)
  469. - Updating zbx_item classes to support data types for bool.
  470. (kwoodson@redhat.com)
  471. - Fix ec2 instance type override (jdetiber@redhat.com)
  472. - updated my check to support the boolean data type (mwoodson@redhat.com)
  473. - Add additive_facts_to_overwrite instead of overwriting all additive_facts
  474. (abutcher@redhat.com)
  475. - added healthz check and more pod count checks (mwoodson@redhat.com)
  476. - updating to the latest ec2.py (and re-patching with our changes).
  477. (twiest@redhat.com)
  478. - atomic-openshift-installer: Temporarily restrict to single master
  479. (smunilla@redhat.com)
  480. - openshift-ansible: Correct variable (smunilla@redhat.com)
  481. - Refactor named certificates. (abutcher@redhat.com)
  482. - atomic-openshift-utils: Version lock playbooks (smunilla@redhat.com)
  483. - Add the native ha services and configs to uninstall (jdetiber@redhat.com)
  484. - Bug 1282336 - Add additional seboolean for gluster (jdetiber@redhat.com)
  485. - Raise lifetime to 2 weeks for dynamic AWS items (jdiaz@redhat.com)
  486. - bin/cluster fix python 2.6 issue (jdetiber@redhat.com)
  487. - cluster list: break host types by subtype (lhuard@amadeus.com)
  488. - README_AWS: Add needed dependency (c.witt.1900@gmail.com)
  489. - Fix invalid sudo command test (takayoshi@gmail.com)
  490. - Docs: Fedora: Add missing dependencies and update to dnf. (public@omeid.me)
  491. - Gate upgrade steps for 3.0 to 3.1 upgrade (jdetiber@redhat.com)
  492. - added the tito and copr_cli roles (twiest@redhat.com)
  493. - pylint openshift_facts (jdetiber@redhat.com)
  494. - Update etcd default facts setting (jdetiber@redhat.com)
  495. - Update master facts prior to upgrading incase facts are missing.
  496. (abutcher@redhat.com)
  497. - pre-upgrade-check: differentiates between port and targetPort in output
  498. (smilner@redhat.com)
  499. - Better structure the output of the list playbook (lhuard@amadeus.com)
  500. - Add the sub-host-type tag to the libvirt VMs (lhuard@amadeus.com)
  501. - atomic-openshift-installer: Update nopwd sudo test (smunilla@redhat.com)
  502. - Fix pylint import errors for utils/test/. (dgoodwin@redhat.com)
  503. - atomic-openshift-installer: Update prompts and help messages
  504. (smunilla@redhat.com)
  505. - Dependencies need to be added when a create occurs on SLA object.
  506. (kwoodson@redhat.com)
  507. - Test additions for cli_installer:get_hosts_to_install_on
  508. (bleanhar@redhat.com)
  509. - adding itservice (kwoodson@redhat.com)
  510. - remove netaddr dependency (tob@butter.sh)
  511. - Add pyOpenSSL to dependencies for Fedora. (public@omeid.me)
  512. - Vagrant RHEL registration cleanup (pep@redhat.com)
  513. - RH subscription: optional satellite and pkg update (pep@redhat.com)
  514. * Tue Nov 17 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.13-1
  515. - The aep3 images changed locations. (bleanhar@redhat.com)
  516. - atomic-openshift-installer: Correct single master case (smunilla@redhat.com)
  517. - atomic-openshift-installer: Temporarily restrict to single master
  518. (smunilla@redhat.com)
  519. * Wed Nov 11 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.12-1
  520. - Sync with the latest image streams (sdodson@redhat.com)
  521. * Wed Nov 11 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.11-1
  522. - Migrate xpaas content from pre v1.1.0 (sdodson@redhat.com)
  523. - Import latest xpaas templates and image streams (sdodson@redhat.com)
  524. * Wed Nov 11 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.10-1
  525. - Fix update error for templates that didn't previously exist
  526. (jdetiber@redhat.com)
  527. - General cleanup of v3_0_to_v3_1/upgrade.yml (jdetiber@redhat.com)
  528. - Add zabbix pieces to hold AWS S3 bucket stats (jdiaz@redhat.com)
  529. - add ansible dep to vagrant doc (jdetiber@redhat.com)
  530. - oo_filter: don't fail when attribute is not defined (tob@butter.sh)
  531. * Wed Nov 11 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.9-1
  532. - Refactor upgrade playbook(s) (jdetiber@redhat.com)
  533. * Tue Nov 10 2015 Scott Dodson <sdodson@redhat.com> 3.0.8-1
  534. - Add origin-clients to uninstall playbook. (abutcher@redhat.com)
  535. - examples: include logging and metrics infrastructure (lmeyer@redhat.com)
  536. - Add separate step to enable services during upgrade. (dgoodwin@redhat.com)
  537. - Update tests now that cli is not asking for rpm/container install
  538. (smunilla@redhat.com)
  539. - atomic-openshift-installer: Remove question for container install
  540. (smunilla@redhat.com)
  541. - Remove references to multi_ec2.py (jdetiber@redhat.com)
  542. - 1279746: Fix leftover disabled features line in config template.
  543. (dgoodwin@redhat.com)
  544. - 1279734: Ensure services are enabled after upgrade. (dgoodwin@redhat.com)
  545. - Fix missing etcd_data_dir bug. (dgoodwin@redhat.com)
  546. - Package the default ansible.cfg with atomic-openshift-utils.
  547. (dgoodwin@redhat.com)
  548. - Add ldap auth identity provider to example inventory. (abutcher@redhat.com)
  549. - Read etcd data dir from appropriate config file. (dgoodwin@redhat.com)
  550. - atomic-openshift-installer: Generate inventory off hosts_to_run_on
  551. (smunilla@redhat.com)
  552. - Various fixes related to connect_to (bleanhar@redhat.com)
  553. - Remove upgrade playbook restriction on 3.0.2. (dgoodwin@redhat.com)
  554. - Conditionals for flannel etcd client certs. (abutcher@redhat.com)
  555. - New `iptablesSyncPeriod` field in node configuration (abutcher@redhat.com)
  556. - Fix indentation on when (jdetiber@redhat.com)
  557. - Bug 1278863 - Error using openshift_pkg_version (jdetiber@redhat.com)
  558. - more cleanup of names (mwoodson@redhat.com)
  559. - Missing conditionals for api/controller sysconfig. (abutcher@redhat.com)
  560. - Updating the atomic-openshift-isntaller local connection logic for the
  561. connect_to addition. (bleanhar@redhat.com)
  562. - cleaned up network checks (mwoodson@redhat.com)
  563. - Minor upgrade improvements. (dgoodwin@redhat.com)
  564. - Wait for cluster to recover after pcs resource restart. (abutcher@redhat.com)
  565. - Bug 1278245 - Failed to add node to existing env using atomic-openshift-
  566. installer (bleanhar@redhat.com)
  567. - remove debug statement (jdetiber@redhat.com)
  568. - Fix removal of kubernetesMasterConfig.apiLevels (jdetiber@redhat.com)
  569. - atomic-openshift-installer: Better specification of ansible connection point
  570. (smunilla@redhat.com)
  571. - Fix issues related to upgrade packages being unavailable
  572. (jdetiber@redhat.com)
  573. - added network checks. also updated item prototype code to support more
  574. (mwoodson@redhat.com)
  575. - Fix data_dir for 3.0 deployments (jdetiber@redhat.com)
  576. - Fix apiLevels modifications (jdetiber@redhat.com)
  577. - Fix creation of origin symlink when dir already exists. (dgoodwin@redhat.com)
  578. - apiLevel changes (jdetiber@redhat.com)
  579. - Write new config to disk after successful upgrade. (dgoodwin@redhat.com)
  580. - Fix pylint errors with getting hosts to run on. (dgoodwin@redhat.com)
  581. - Remove v1beta3 by default for kube_nfs_volumes (jdetiber@redhat.com)
  582. - Add pre-upgrade script to be run on first master. (dgoodwin@redhat.com)
  583. - Start to handle pacemaker ha during upgrade (abutcher@redhat.com)
  584. - Fix lb group related errors (jdetiber@redhat.com)
  585. - Fix file check conditional. (abutcher@redhat.com)
  586. - Don't check for certs in data_dir just raise when they can't be found. Fix
  587. typo. (abutcher@redhat.com)
  588. - exclude atomic-openshift-installer from bin subpackage (tdawson@redhat.com)
  589. - add master_hostnames definition for upgrade (jdetiber@redhat.com)
  590. - Additional upgrade enhancements (jdetiber@redhat.com)
  591. - Handle backups for separate etcd hosts if necessary. (dgoodwin@redhat.com)
  592. - Further upgrade improvements (jdetiber@redhat.com)
  593. - Upgrade improvements (dgoodwin@redhat.com)
  594. - Bug 1278243 - Confusing prompt from atomic-openshift-installer
  595. (bleanhar@redhat.com)
  596. - Bug 1278244 - Previously there was no way to add a node in unattended mode
  597. (bleanhar@redhat.com)
  598. - Revert to defaults (abutcher@redhat.com)
  599. - Bug 1278244 - Incorrect node information gathered by atomic-openshift-
  600. installer (bleanhar@redhat.com)
  601. - atomic-openshift-installer's unattended mode wasn't work with --force for all
  602. cases (bleanhar@redhat.com)
  603. - Making it easier to use pre-release content (bleanhar@redhat.com)
  604. - The uninstall playbook needs to remove /run/openshift-sdn
  605. (bleanhar@redhat.com)
  606. - Various HA changes for pacemaker and native methods. (abutcher@redhat.com)
  607. - Bug 1274201 - Fixing non-root installations if using a local connection
  608. (bleanhar@redhat.com)
  609. - Bug 1274201 - Fixing sudo non-interactive test (bleanhar@redhat.com)
  610. - Bug 1277592 - SDN MTU has hardcoded default (jdetiber@redhat.com)
  611. - Atomic Enterprise/OpenShift Enterprise merge update (jdetiber@redhat.com)
  612. - fix dueling controllers - without controllerLeaseTTL set in config, multiple
  613. controllers will attempt to start (jdetiber@redhat.com)
  614. - default to source persistence for haproxy (jdetiber@redhat.com)
  615. - hardcode openshift binaries for now (jdetiber@redhat.com)
  616. - more tweaks (jdetiber@redhat.com)
  617. - more tweaks (jdetiber@redhat.com)
  618. - additional ha related updates (jdetiber@redhat.com)
  619. - additional native ha changes (abutcher@redhat.com)
  620. - Start of true master ha (jdetiber@redhat.com)
  621. - Atomic Enterprise related changes. (avagarwa@redhat.com)
  622. - Remove pacemaker bits. (abutcher@redhat.com)
  623. - Override hosts deployment_type fact for version we're upgrading to.
  624. (dgoodwin@redhat.com)
  625. - Pylint fixes for config upgrade module. (dgoodwin@redhat.com)
  626. - Disable proxy cert config upgrade until certs being generated.
  627. (dgoodwin@redhat.com)
  628. - remove debug line (florian.lambert@enovance.com)
  629. - [roles/openshift_master_certificates/tasks/main.yml] Fix variable
  630. openshift.master.all_hostnames to openshift.common.all_hostnames
  631. (florian.lambert@enovance.com)
  632. - Fix bug with not upgrading openshift-master to atomic-openshift-master.
  633. (dgoodwin@redhat.com)
  634. - Adding aws and gce packages to ansible-inventory (kwoodson@redhat.com)
  635. - Fix subpackage dependencies (jdetiber@redhat.com)
  636. - Refactor common group evaluation to avoid duplication (jdetiber@redhat.com)
  637. - common/openshift-cluster: Scaleup playbook (smunilla@redhat.com)
  638. - Fix bug from module rename. (dgoodwin@redhat.com)
  639. - Fix bug with default ansible playbook dir. (dgoodwin@redhat.com)
  640. - Use the base package upgrade version so we can check things earlier.
  641. (dgoodwin@redhat.com)
  642. - Skip fail if enterprise deployment type depending on version.
  643. (dgoodwin@redhat.com)
  644. - Add debug output for location of etcd backup. (dgoodwin@redhat.com)
  645. - Filter internal hostnames from the list of parsed names.
  646. (abutcher@redhat.com)
  647. - Move config upgrade to correct place, fix node facts. (dgoodwin@redhat.com)
  648. - Add custom certificates to serving info in master configuration.
  649. (abutcher@redhat.com)
  650. - Add in proxyClientInfo if missing during config upgrade.
  651. (dgoodwin@redhat.com)
  652. - Implement master-config.yaml upgrade for v1beta3 apiLevel removal.
  653. (dgoodwin@redhat.com)
  654. - Fix installer upgrade bug following pylint fix. (dgoodwin@redhat.com)
  655. - Document the new version field for installer config. (dgoodwin@redhat.com)
  656. - Remove my username from some test data. (dgoodwin@redhat.com)
  657. - Add a simple version for the installer config file. (dgoodwin@redhat.com)
  658. - Pylint fix. (dgoodwin@redhat.com)
  659. - Fix issue with master.proxy-client.{crt,key} and omit. (abutcher@redhat.com)
  660. - initial module framework (jdetiber@redhat.com)
  661. - Better info prior to initiating upgrade. (dgoodwin@redhat.com)
  662. - Fix etcd backup bug with not-yet-created /var/lib/origin symlink
  663. (dgoodwin@redhat.com)
  664. - Print info after upgrade completes. (dgoodwin@redhat.com)
  665. - Automatically upgrade legacy config files. (dgoodwin@redhat.com)
  666. - Remove devel fail and let upgrade proceed. (dgoodwin@redhat.com)
  667. - Add utils subpackage missing dep on openshift-ansible-roles.
  668. (dgoodwin@redhat.com)
  669. - Generate timestamped etcd backups. (dgoodwin@redhat.com)
  670. - Add etcd_data_dir fact. (dgoodwin@redhat.com)
  671. - Functional disk space checking for etcd backup. (dgoodwin@redhat.com)
  672. - First cut at checking available disk space for etcd backup.
  673. (dgoodwin@redhat.com)
  674. - Block upgrade if targetting enterprise deployment type. (dgoodwin@redhat.com)
  675. - Change flannel registration default values (sbaubeau@redhat.com)
  676. - Remove empty notify section (sbaubeau@redhat.com)
  677. - Check etcd certs exist for flannel when its support is enabled
  678. (sbaubeau@redhat.com)
  679. - Fix when neither use_openshift_sdn nor use_flannel are specified
  680. (sbaubeau@redhat.com)
  681. - Generate etcd certificats for flannel when is not embedded
  682. (sbaubeau@redhat.com)
  683. - Add missing 2nd true parameters to default Jinja filter (sbaubeau@redhat.com)
  684. - Use 'command' module instead of 'shell' (sbaubeau@redhat.com)
  685. - Add flannel modules documentation (sbaubeau@redhat.com)
  686. - Only remove IPv4 address from docker bridge (sbaubeau@redhat.com)
  687. - Remove multiple use_flannel fact definition (sbaubeau@redhat.com)
  688. - Ensure openshift-sdn and flannel can't be used at the same time
  689. (sbaubeau@redhat.com)
  690. - Add flannel support (sbaubeau@redhat.com)
  691. * Wed Nov 04 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.7-1
  692. - added the %%util in zabbix (mwoodson@redhat.com)
  693. - atomic-openshift-installer: Correct default playbook directory
  694. (smunilla@redhat.com)
  695. - Support for gce (kwoodson@redhat.com)
  696. - fixed a dumb naming mistake (mwoodson@redhat.com)
  697. - added disk tps checks to zabbix (mwoodson@redhat.com)
  698. - atomic-openshift-installer: Correct inaccurate prompt (smunilla@redhat.com)
  699. - atomic-openshift-installer: Add default openshift-ansible-playbook
  700. (smunilla@redhat.com)
  701. - ooinstall: Add check for nopwd sudo (smunilla@redhat.com)
  702. - ooinstall: Update local install check (smunilla@redhat.com)
  703. - oo-install: Support running on the host to be deployed (smunilla@redhat.com)
  704. - Moving to Openshift Etcd application (mmahut@redhat.com)
  705. - Add all the possible servicenames to openshift_all_hostnames for masters
  706. (sdodson@redhat.com)
  707. - Adding openshift.node.etcd items (mmahut@redhat.com)
  708. - Fix etcd cert generation when etcd_interface is defined (jdetiber@redhat.com)
  709. - get zabbix ready to start tracking status of pcp (jdiaz@redhat.com)
  710. - split inventory into subpackages (tdawson@redhat.com)
  711. - changed the cpu alert to only alert if cpu idle more than 5x. Change alert to
  712. warning (mwoodson@redhat.com)
  713. - Rename install_transactions module to openshift_ansible.
  714. (dgoodwin@redhat.com)
  715. - atomic-openshift-installer: Text improvements (smunilla@redhat.com)
  716. - Add utils subpackage missing dep on openshift-ansible-roles.
  717. (dgoodwin@redhat.com)
  718. - Disable requiretty for only the openshift user (error@ioerror.us)
  719. - Don't require tty to run sudo (error@ioerror.us)
  720. - Attempt to remove the various interfaces left over from an install
  721. (bleanhar@redhat.com)
  722. - Pulling latest gce.py module from ansible (kwoodson@redhat.com)
  723. - Disable OpenShift features if installing Atomic Enterprise
  724. (jdetiber@redhat.com)
  725. - Use default playbooks if available. (dgoodwin@redhat.com)
  726. - Add uninstall subcommand. (dgoodwin@redhat.com)
  727. - Add subcommands to CLI. (dgoodwin@redhat.com)
  728. - Remove images options in oadm command (nakayamakenjiro@gmail.com)
  729. * Fri Oct 30 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.6-1
  730. - Adding python-boto and python-libcloud to openshift-ansible-inventory
  731. dependency (kwoodson@redhat.com)
  732. - Use more specific enterprise version for version_greater_than_3_1_or_1_1.
  733. (abutcher@redhat.com)
  734. - Conditionalizing the support for the v1beta3 api (bleanhar@redhat.com)
  735. * Thu Oct 29 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.5-1
  736. - Updating multi_ec2 to support extra_vars and extra_groups
  737. (kwoodson@redhat.com)
  738. - Removing the template and doing to_nice_yaml instead (kwoodson@redhat.com)
  739. - README_AEP.md: update instructions for creating router and registry
  740. (jlebon@redhat.com)
  741. - README_AEP: Various fixes (walters@verbum.org)
  742. - Fixing for extra_vars rename. (kwoodson@redhat.com)
  743. - make storage_plugin_deps conditional on deployment_type (jdetiber@redhat.com)
  744. - remove debugging pauses (jdetiber@redhat.com)
  745. - make storage plugin dependency installation more flexible
  746. (jdetiber@redhat.com)
  747. - Install storage plugin dependencies (jdetiber@redhat.com)
  748. * Wed Oct 28 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.4-1
  749. - Removing spec files. (kwoodson@redhat.com)
  750. - Updated example (kwoodson@redhat.com)
  751. - Automatic commit of package [openshift-ansible-inventory] release [0.0.11-1].
  752. (kwoodson@redhat.com)
  753. - Automatic commit of package [openshift-ansible-bin] release [0.0.21-1].
  754. (kwoodson@redhat.com)
  755. - Automatic commit of package [openshift-ansible-inventory] release [0.0.10-1].
  756. (kwoodson@redhat.com)
  757. - Automatic commit of package [openshift-ansible-bin] release [0.0.20-1].
  758. (kwoodson@redhat.com)
  759. - Adding tito releasers configuration (bleanhar@redhat.com)
  760. - Bug fixes for the uninstall playbook (bleanhar@redhat.com)
  761. - Adding clone vars and groups. Renamed hostvars to extra_vars.
  762. (kwoodson@redhat.com)
  763. - Start tracking docker info execution time (jdiaz@redhat.com)
  764. - The uninstall playbook should remove the kubeconfig for non-root installs
  765. (bleanhar@redhat.com)
  766. - Adding uninstall support for Atomic Host (bleanhar@redhat.com)
  767. - add examples for SDN configuration (jdetiber@redhat.com)
  768. * Tue Oct 27 2015 Troy Dawson <tdawson@redhat.com> 3.0.3-1
  769. - Pylint fixes and ignores for incoming oo-install code. (dgoodwin@redhat.com)
  770. - Pylint fixes (abutcher@redhat.com)
  771. - Adding zabbix type and fixing zabbix agent vars (kwoodson@redhat.com)
  772. - Add atomic-openshift-utils add atomic-openshift-utils to openshift-
  773. ansible.spec file (tdawson@redhat.com)
  774. - Fix quotes (spinolacastro@gmail.com)
  775. - Use standard library for version comparison. (abutcher@redhat.com)
  776. - added docker info to the end of docker loop to direct lvm playbook.
  777. (twiest@redhat.com)
  778. - Add missing quotes (spinolacastro@gmail.com)
  779. - Adding Docker Log Options capabilities (epo@jemba.net)
  780. - Move version greater_than_fact into openshift_facts (abutcher@redhat.com)
  781. - Don't include proxy client cert when <3.1 or <1.1 (abutcher@redhat.com)
  782. - Add proxy client certs to master config. (abutcher@redhat.com)
  783. - Update imagestreams and quickstarts from origin (sdodson@redhat.com)
  784. - Get default values from openshift_facts (spinolacastro@gmail.com)
  785. - Cleanup (spinolacastro@gmail.com)
  786. - Add missing inventory example (spinolacastro@gmail.com)
  787. - Custom Project Config (spinolacastro@gmail.com)
  788. * Mon Oct 19 2015 Troy Dawson <tdawson@redhat.com> 3.0.2-1
  789. - Initial Package