openshift-ansible.spec 66 KB

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