openshift-ansible.spec 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166
  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.3.13
  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 >= 2.1.0.0
  15. Requires: python2
  16. Requires: openshift-ansible-docs = %{version}-%{release}
  17. %description
  18. Openshift and Atomic Enterprise Ansible
  19. This repo contains Ansible code and playbooks
  20. for Openshift and Atomic Enterprise.
  21. %prep
  22. %setup -q
  23. %build
  24. # atomic-openshift-utils install
  25. pushd utils
  26. %{__python} setup.py build
  27. popd
  28. %install
  29. # Base openshift-ansible install
  30. mkdir -p %{buildroot}%{_datadir}/%{name}
  31. mkdir -p %{buildroot}%{_datadir}/ansible/%{name}
  32. mkdir -p %{buildroot}%{_datadir}/ansible_plugins
  33. cp -rp library %{buildroot}%{_datadir}/ansible/%{name}/
  34. # openshift-ansible-bin install
  35. mkdir -p %{buildroot}%{_bindir}
  36. mkdir -p %{buildroot}%{python_sitelib}/openshift_ansible
  37. mkdir -p %{buildroot}/etc/bash_completion.d
  38. mkdir -p %{buildroot}/etc/openshift_ansible
  39. # Fix links
  40. rm -f %{buildroot}%{python_sitelib}/openshift_ansible/aws
  41. rm -f %{buildroot}%{python_sitelib}/openshift_ansible/gce
  42. # openshift-ansible-docs install
  43. # Install example inventory into docs/examples
  44. mkdir -p docs/example-inventories
  45. cp inventory/byo/* docs/example-inventories/
  46. # openshift-ansible-playbooks install
  47. cp -rp playbooks %{buildroot}%{_datadir}/ansible/%{name}/
  48. # BZ1330091
  49. find -L %{buildroot}%{_datadir}/ansible/%{name}/playbooks -name lookup_plugins -type l -delete
  50. find -L %{buildroot}%{_datadir}/ansible/%{name}/playbooks -name filter_plugins -type l -delete
  51. # openshift-ansible-roles install
  52. cp -rp roles %{buildroot}%{_datadir}/ansible/%{name}/
  53. # openshift-ansible-filter-plugins install
  54. cp -rp filter_plugins %{buildroot}%{_datadir}/ansible_plugins/
  55. # openshift-ansible-lookup-plugins install
  56. cp -rp lookup_plugins %{buildroot}%{_datadir}/ansible_plugins/
  57. # create symlinks from /usr/share/ansible/plugins/lookup ->
  58. # /usr/share/ansible_plugins/lookup_plugins
  59. pushd %{buildroot}%{_datadir}
  60. mkdir -p ansible/plugins
  61. pushd ansible/plugins
  62. ln -s ../../ansible_plugins/lookup_plugins lookup
  63. ln -s ../../ansible_plugins/filter_plugins filter
  64. popd
  65. popd
  66. # atomic-openshift-utils install
  67. pushd utils
  68. %{__python} setup.py install --skip-build --root %{buildroot}
  69. # Remove this line once the name change has happened
  70. mv -f %{buildroot}%{_bindir}/oo-install %{buildroot}%{_bindir}/atomic-openshift-installer
  71. mkdir -p %{buildroot}%{_datadir}/atomic-openshift-utils/
  72. cp etc/ansible.cfg %{buildroot}%{_datadir}/atomic-openshift-utils/ansible.cfg
  73. popd
  74. # Base openshift-ansible files
  75. %files
  76. %doc LICENSE.md README*
  77. %dir %{_datadir}/ansible/%{name}
  78. %{_datadir}/ansible/%{name}/library
  79. %ghost %{_datadir}/ansible/%{name}/playbooks/common/openshift-master/library.rpmmoved
  80. # ----------------------------------------------------------------------------------
  81. # openshift-ansible-docs subpackage
  82. # ----------------------------------------------------------------------------------
  83. %package docs
  84. Summary: Openshift and Atomic Enterprise Ansible documents
  85. Requires: %{name} = %{version}
  86. BuildArch: noarch
  87. %description docs
  88. %{summary}.
  89. %files docs
  90. %doc docs
  91. # ----------------------------------------------------------------------------------
  92. # openshift-ansible-playbooks subpackage
  93. # ----------------------------------------------------------------------------------
  94. %package playbooks
  95. Summary: Openshift and Atomic Enterprise Ansible Playbooks
  96. Requires: %{name} = %{version}
  97. Requires: %{name}-roles = %{version}
  98. Requires: %{name}-lookup-plugins = %{version}
  99. Requires: %{name}-filter-plugins = %{version}
  100. BuildArch: noarch
  101. %description playbooks
  102. %{summary}.
  103. %files playbooks
  104. %{_datadir}/ansible/%{name}/playbooks
  105. # We moved playbooks/common/openshift-master/library up to the top and replaced
  106. # it with a symlink. RPM doesn't handle this so we have to do some pre-transaction
  107. # magic. See https://fedoraproject.org/wiki/Packaging:Directory_Replacement
  108. %pretrans playbooks -p <lua>
  109. -- Define the path to directory being replaced below.
  110. -- DO NOT add a trailing slash at the end.
  111. path = "/usr/share/ansible/openshift-ansible/playbooks/common/openshift-master/library"
  112. st = posix.stat(path)
  113. if st and st.type == "directory" then
  114. status = os.rename(path, path .. ".rpmmoved")
  115. if not status then
  116. suffix = 0
  117. while not status do
  118. suffix = suffix + 1
  119. status = os.rename(path .. ".rpmmoved", path .. ".rpmmoved." .. suffix)
  120. end
  121. os.rename(path, path .. ".rpmmoved")
  122. end
  123. end
  124. %package roles
  125. # ----------------------------------------------------------------------------------
  126. # openshift-ansible-roles subpackage
  127. # ----------------------------------------------------------------------------------
  128. Summary: Openshift and Atomic Enterprise Ansible roles
  129. Requires: %{name} = %{version}
  130. Requires: %{name}-lookup-plugins = %{version}
  131. Requires: %{name}-filter-plugins = %{version}
  132. BuildArch: noarch
  133. %description roles
  134. %{summary}.
  135. %files roles
  136. %{_datadir}/ansible/%{name}/roles
  137. # ----------------------------------------------------------------------------------
  138. # openshift-ansible-filter-plugins subpackage
  139. # ----------------------------------------------------------------------------------
  140. %package filter-plugins
  141. Summary: Openshift and Atomic Enterprise Ansible filter plugins
  142. Requires: %{name} = %{version}
  143. BuildArch: noarch
  144. Requires: pyOpenSSL
  145. %description filter-plugins
  146. %{summary}.
  147. %files filter-plugins
  148. %{_datadir}/ansible_plugins/filter_plugins
  149. %{_datadir}/ansible/plugins/filter
  150. # ----------------------------------------------------------------------------------
  151. # openshift-ansible-lookup-plugins subpackage
  152. # ----------------------------------------------------------------------------------
  153. %package lookup-plugins
  154. Summary: Openshift and Atomic Enterprise Ansible lookup plugins
  155. Requires: %{name} = %{version}
  156. BuildArch: noarch
  157. %description lookup-plugins
  158. %{summary}.
  159. %files lookup-plugins
  160. %{_datadir}/ansible_plugins/lookup_plugins
  161. %{_datadir}/ansible/plugins/lookup
  162. # ----------------------------------------------------------------------------------
  163. # atomic-openshift-utils subpackage
  164. # ----------------------------------------------------------------------------------
  165. %package -n atomic-openshift-utils
  166. Summary: Atomic OpenShift Utilities
  167. BuildRequires: python-setuptools
  168. Requires: %{name}-playbooks >= %{version}
  169. Requires: python-click
  170. Requires: python-setuptools
  171. Requires: PyYAML
  172. BuildArch: noarch
  173. %description -n atomic-openshift-utils
  174. Atomic OpenShift Utilities includes
  175. - atomic-openshift-installer
  176. - other utilities
  177. %files -n atomic-openshift-utils
  178. %{python_sitelib}/ooinstall*
  179. %{_bindir}/atomic-openshift-installer
  180. %{_datadir}/atomic-openshift-utils/ansible.cfg
  181. %changelog
  182. * Fri Aug 19 2016 Troy Dawson <tdawson@redhat.com> 3.3.13-1
  183. - Fix warnings in OpenStack provider with ansible 2.1 (lhuard@amadeus.com)
  184. - Mount /sys rw (sdodson@redhat.com)
  185. - Update uninstall.yml (sdodson@redhat.com)
  186. - Fix padding on registry config (sdodson@redhat.com)
  187. * Wed Aug 17 2016 Troy Dawson <tdawson@redhat.com> 3.3.12-1
  188. - Fixes to typos, grammar, and product branding in cli_installer
  189. (tpoitras@redhat.com)
  190. - Reconcile roles after master upgrade, but before nodes. (dgoodwin@redhat.com)
  191. - a-o-i: Fix nosetests after removing 3.2 from installer (smunilla@redhat.com)
  192. - Bug 1367323 - the "OpenShift Container Platform 3.2" variant is still listed
  193. when quick install ose-3.3 (smunilla@redhat.com)
  194. - Bug 1367199 - iptablesSyncPeriod should default to 30s OOTB
  195. (smunilla@redhat.com)
  196. - Sync remaining content (sdodson@redhat.com)
  197. - XPaas 1.3.3 (sdodson@redhat.com)
  198. - a-o-i: Fix broken tests from installed hosts check (smunilla@redhat.com)
  199. - Add clientCommonNames to RequestHeaderProvider optional items
  200. (sdodson@redhat.com)
  201. - a-o-i: Mapping for 3.2 Upgrades (smunilla@redhat.com)
  202. - a-o-i: fix bz#1329455 (ghuang@redhat.com)
  203. - Add nfs group to OSEv3:vars (sdodson@redhat.com)
  204. - fixing openshift key error in case of node failure during run (ssh issue)
  205. (jawed.khelil@amadeus.com)
  206. - add 3.3 to installer (rmeggins@redhat.com)
  207. * Mon Aug 15 2016 Troy Dawson <tdawson@redhat.com> 3.3.11-1
  208. - Ensure etcd user exists in etcd_server_certificates by installing etcd.
  209. (abutcher@redhat.com)
  210. - a-o-i: Fix broken upgrades (smunilla@redhat.com)
  211. * Fri Aug 12 2016 Troy Dawson <tdawson@redhat.com> 3.3.10-1
  212. - Reference tmpdir from first master hostvars when evacuating nodes.
  213. (abutcher@redhat.com)
  214. - Support for redeploying certificates. (abutcher@redhat.com)
  215. - qps typo (deads@redhat.com)
  216. - a-o-i: Automatically Label Nodes as Infra (smunilla@redhat.com)
  217. - Improvements for Docker 1.10+ upgrade image nuking. (dgoodwin@redhat.com)
  218. - a-o-i: Restrict installed host check (smunilla@redhat.com)
  219. - Shutdown Docker before upgrading the rpm. (dgoodwin@redhat.com)
  220. - Restrict the middleware stanza contains 'registry' and 'storage' at least on
  221. 3.3 (ghuang@redhat.com)
  222. - docker-registry's middleware stanza should contain 'registry' and 'storage'
  223. by default (ghuang@redhat.com)
  224. * Wed Aug 10 2016 Troy Dawson <tdawson@redhat.com> 3.3.9-1
  225. - Enable 'NoVolumeZoneConflict' policy for scheduler (abutcher@redhat.com)
  226. - a-o-i: Update nosetests for ansible_ssh_user (smunilla@redhat.com)
  227. - move ansible_ssh_user to deployment, remove ansible_config and
  228. ansible_log_path (ghuang@redhat.com)
  229. - Labeling nodes only (ghuang@redhat.com)
  230. - Set become=no for etcd server certificates temporary directory.
  231. (abutcher@redhat.com)
  232. - Move storage includes up to main. (abutcher@redhat.com)
  233. - Support gathering ansible 2.1/2.2 system facts (abutcher@redhat.com)
  234. - Try/except urlparse calls. (abutcher@redhat.com)
  235. - with_fileglob no longer supports wildcard prefixes. (abutcher@redhat.com)
  236. - BUILD.md lies (jmainguy@redhat.com)
  237. - Migrate ca.crt to ca-bundle.crt (sdodson@redhat.com)
  238. - Upgrade configs for protobuf support. (dgoodwin@redhat.com)
  239. - Fixed a bug in modify_yaml module. (dgoodwin@redhat.com)
  240. - make the improved log formatter work with ansible 2.1 (rmeggins@redhat.com)
  241. - Convert ansible facts callback to v2. (abutcher@redhat.com)
  242. - Add 3.3 protobuf config stanzas for master/node config. (dgoodwin@redhat.com)
  243. - Introduce 1.3/3.3 upgrade path. (dgoodwin@redhat.com)
  244. * Mon Aug 08 2016 Troy Dawson <tdawson@redhat.com> 3.3.8-1
  245. - Fix little mistake in openshift_master_htpasswd_users value .
  246. (jmferrer@paradigmatecnologico.com)
  247. * Fri Aug 05 2016 Troy Dawson <tdawson@redhat.com> 3.3.7-1
  248. - Call relocated openshift-loadbalancer playbook in master scaleup.
  249. (abutcher@redhat.com)
  250. - [openshift_ca] correct check for missing CA. (abutcher@redhat.com)
  251. - a-o-i: Rename OSE in Install Menu (smunilla@redhat.com)
  252. - a-o-i: Allow Arbitrary Deployment Variables (smunilla@redhat.com)
  253. - Add knobs for disabling router/registry management. (abutcher@redhat.com)
  254. - Restore missing etcd_image fact. (abutcher@redhat.com)
  255. - Add options for specifying named ca certificates to be added to the openshift
  256. ca bundle. (abutcher@redhat.com)
  257. - oo_collect can be ran against dicts where key isn't present.
  258. (abutcher@redhat.com)
  259. - Don't set a networkPluginName in 3.3 installs (sdodson@redhat.com)
  260. * Wed Aug 03 2016 Troy Dawson <tdawson@redhat.com> 3.3.6-1
  261. - Rename router and registry node list variables. (abutcher@redhat.com)
  262. - a-o-i: Fix broken uninstall (smunilla@redhat.com)
  263. - Refactor etcd certificates roles. (abutcher@redhat.com)
  264. * Mon Aug 01 2016 Troy Dawson <tdawson@redhat.com> 3.3.5-1
  265. - Update for issue#2244 (kunallimaye@gmail.com)
  266. - Update for issue-2244 (kunallimaye@gmail.com)
  267. - a-o-i: Remove AEP, OSE 3.0, and OSE 3.2 choices (smunilla@redhat.com)
  268. - Move role dependencies to playbooks. (abutcher@redhat.com)
  269. - Fix xpaas_templates_base (sdodson@redhat.com)
  270. - a-o-i: Better inventory group handling (smunilla@redhat.com)
  271. - Add dotnet image stream to enterprise installs (sdodson@redhat.com)
  272. - Fix haproxy logs (sdodson@redhat.com)
  273. - update bootstrap-fedora playbook with new python crypto deps
  274. (maxamillion@fedoraproject.org)
  275. - Remove old sso70-basic templates (sdodson@redhat.com)
  276. - xPaaS v1.3.2 release (sdodson@redhat.com)
  277. * Fri Jul 29 2016 Troy Dawson <tdawson@redhat.com> 3.3.4-1
  278. - a-o-i: Set roles on standalone storage (smunilla@redhat.com)
  279. - Disable too many branches pylint (sdodson@redhat.com)
  280. - a-o-i: write missing openshift_node_labels (dkorn@redhat.com)
  281. - a-o-i: Support for arbitrary host-level variables (smunilla@redhat.com)
  282. - Beautiful -v output from ansible (jamespic@gmail.com)
  283. - a-o-i: Move inventory vars to the correct location (smunilla@redhat.com)
  284. - Fix registry/router being created despite no infra nodes.
  285. (dgoodwin@redhat.com)
  286. - Document openshift_portal_net (sdodson@redhat.com)
  287. - Stagger the start of master services. (abutcher@redhat.com)
  288. - make rpm-q module pylint warning-free (tob@butter.sh)
  289. - add rpm_q module to query rpm database (tob@butter.sh)
  290. * Wed Jul 27 2016 Troy Dawson <tdawson@redhat.com> 3.3.3-1
  291. - Template named certificates with_items. (abutcher@redhat.com)
  292. - Replace master_cert_config_dir with common config_base fact.
  293. (abutcher@redhat.com)
  294. - remove outdated openshift_cluster_metrics role (jdetiber@redhat.com)
  295. - Fix "deloyment" typo in deployment types doc (lxia@redhat.com)
  296. - Add missing nuke_images.sh symlink. (dgoodwin@redhat.com)
  297. - a-o-i: Persist Roles Variables (smunilla@redhat.com)
  298. - Default nodes matching selectors when not collected. (abutcher@redhat.com)
  299. - Copy openshift binaries instead of using wrapper script.
  300. (dgoodwin@redhat.com)
  301. - Correct relative include for ansible version check. (abutcher@redhat.com)
  302. - Fix libvirt provider for Ansible 2.1.0.0 (lhuard@amadeus.com)
  303. - Re-arrange master and node role dependencies. (abutcher@redhat.com)
  304. - Refactor openshift certificates roles. (abutcher@redhat.com)
  305. - Check ansible version prior to evaluating cluster hosts and groups.
  306. (abutcher@redhat.com)
  307. - Stop reporting changes when docker pull is already up to date.
  308. (dgoodwin@redhat.com)
  309. - a-o-i: Write Role variable groups (smunilla@redhat.com)
  310. - Slight modification to error when using mismatched openshift_release.
  311. (dgoodwin@redhat.com)
  312. - fix "databcase" typo in example roles (lxia@redhat.com)
  313. - Secure router only when openshift.hosted.router.certificate.contents exists.
  314. (abutcher@redhat.com)
  315. - Add jenkinstemplate (sdodson@redhat.com)
  316. - Fix bugs with origin 1.2 rpm based upgrades. (dgoodwin@redhat.com)
  317. - Sync latest image streams and templates (sdodson@redhat.com)
  318. - Ensure 'oo_nfs_to_config' in groups prior to checking group length when nfs
  319. host unset. (abutcher@redhat.com)
  320. - We have proper ansible support and requirements in place now, de-revert this
  321. commit (tbielawa@redhat.com)
  322. - Skip docker upgrades on Atomic. (dgoodwin@redhat.com)
  323. - Resolve some deprecation warnings. (abutcher@redhat.com)
  324. - a-o-i: Looser facts requirements for unattended (smunilla@redhat.com)
  325. - Temporarily link registry config templates for ansible 1.9.x support.
  326. (abutcher@redhat.com)
  327. - Remove relative lookup for registry config and check for skipped update in
  328. registry redeploy conditional. (abutcher@redhat.com)
  329. - Arbitrary Installer yaml (smunilla@redhat.com)
  330. - Check for existence of sebooleans prior to setting. (abutcher@redhat.com)
  331. - Require ansible-2.1 (abutcher@redhat.com)
  332. * Sun Jul 17 2016 Scott Dodson <sdodson@redhat.com> 3.3.2-1
  333. - Convert openshift_release and openshift_version to strings for startswith
  334. (sdodson@redhat.com)
  335. - Symlink ansible 2.x locations to ansible 1.9 locations (sdodson@redhat.com)
  336. - Clarify message when old docker pre-installed but 1.10+ requested.
  337. (dgoodwin@redhat.com)
  338. - Fix quick install 3.2 upgrade path. (dgoodwin@redhat.com)
  339. - Fix upgrade with docker_version set. (dgoodwin@redhat.com)
  340. - Move the bash completion into the cli role. Only add when not containerized
  341. (tbielawa@redhat.com)
  342. - [master] add support for setting auditConfig (jdetiber@redhat.com)
  343. - Remove too recent pylint option keys. (dgoodwin@redhat.com)
  344. - pylint fixes (dgoodwin@redhat.com)
  345. - Install bash-completion package for the oc/oadm tools (tbielawa@redhat.com)
  346. - Fix more docker role logic. (dgoodwin@redhat.com)
  347. - Add checks to docker role for 1.9.1+. (dgoodwin@redhat.com)
  348. - Make libvirt’s VM use virtio-scsi insteal of virtio-blk
  349. (lhuard@amadeus.com)
  350. - Fix erroneous pylint error (smunilla@redhat.com)
  351. - Remove 3.0 and 3.1 upgrade sub-dirs. (dgoodwin@redhat.com)
  352. - Rename upgrade to just v3_2 as it's now major and minor.
  353. (dgoodwin@redhat.com)
  354. - Set registry replicas = 1 when no storage specified. (abutcher@redhat.com)
  355. - Re-align the OpenStack firewall rules with the iptables rules
  356. (lhuard@amadeus.com)
  357. - Fix bin/cluster openstack related error (lhuard@amadeus.com)
  358. - Fix upgrades with an openshift_image_tag set. (dgoodwin@redhat.com)
  359. - ops-docker-loopback-to-direct-lvm.yml: fix typo on the variable name
  360. "cli_name vs cli_host" (gael.lambert@redhat.com)
  361. - Remove cleanup code from 1.0 to 1.1 upgrade era (sdodson@redhat.com)
  362. - Move repoquery_cmd fact setting into a more logical place.
  363. (dgoodwin@redhat.com)
  364. - Add dependency on docker to openshift_docker role. (dgoodwin@redhat.com)
  365. - Enable pullthrough by default in registry config for object storage.
  366. (abutcher@redhat.com)
  367. - Fix gpg key path (sdodson@redhat.com)
  368. - Use proper startswith. (dgoodwin@redhat.com)
  369. - Sync latest image stream content (sdodson@redhat.com)
  370. - Role dependency cleanup (abutcher@redhat.com)
  371. - Fix up some broken markdown formatting (mostly tables) (tbielawa@redhat.com)
  372. - Rename things to avoid conflicts with paas sig release rpms
  373. (sdodson@redhat.com)
  374. - Remove/update TODOs. (dgoodwin@redhat.com)
  375. - Remove all debug used during devel of openshift_version.
  376. (dgoodwin@redhat.com)
  377. - Update quick upgrade to remove unsupported options. (dgoodwin@redhat.com)
  378. - Don't special case origin on centos (sdodson@redhat.com)
  379. - Various hosted component improvements (abutcher@redhat.com)
  380. - Move repoquery fact definition to openshift_common. (dgoodwin@redhat.com)
  381. - Clean up some deprecation warnings (tbielawa@redhat.com)
  382. - Add CentOS PaaS SIG repos for RHEL (sdodson@redhat.com)
  383. - Remove Origin 1.1 as an option (smunilla@redhat.com)
  384. - Make /var/lib/origin mounted rslave (sdodson@redhat.com)
  385. - fix "hapoxy" typo in loadbalancer playbook (Mathias.Merscher@dg-i.net)
  386. - Fix dnf variant of rpm_versions.sh (sdodson@redhat.com)
  387. - Make image stream munging optional (sdodson@redhat.com)
  388. - Add aos-3.3 to tito releasers.conf (sdodson@redhat.com)
  389. - Add symlinks for node templates. (dgoodwin@redhat.com)
  390. - Fixes for Ansible 2.1. (dgoodwin@redhat.com)
  391. - Update repoquery_cmd definitions to match latest in master.
  392. (dgoodwin@redhat.com)
  393. - Fix unsafe bool usage. (dgoodwin@redhat.com)
  394. - Fix typo in example inventories. (dgoodwin@redhat.com)
  395. - Fixes for non-containerized separate etcd hosts. (dgoodwin@redhat.com)
  396. - More docker upgrade fixes. (dgoodwin@redhat.com)
  397. - Only nuke images when crossing the Docker 1.10 boundary in upgrade.
  398. (dgoodwin@redhat.com)
  399. - Fix node/openvswitch containers not restarting after upgrade.
  400. (dgoodwin@redhat.com)
  401. - Allow skipping Docker upgrade during OpenShift upgrade. (dgoodwin@redhat.com)
  402. - a-o-i: Add Origin 1.2 Installs (smunilla@redhat.com)
  403. - a-o-i: Add support for installing OpenShift Origin (smunilla@redhat.com)
  404. - Refactor 3.2 upgrade to avoid killing nodes without evac.
  405. (dgoodwin@redhat.com)
  406. - Update docker upgrade playbook to be more flexible. (dgoodwin@redhat.com)
  407. - Add missing defaults file. (dgoodwin@redhat.com)
  408. - Use common fact initialization include in upgrade. (dgoodwin@redhat.com)
  409. - Fix use of v3.2 format for openshift_release in upgrade.
  410. (dgoodwin@redhat.com)
  411. - Remove more legacy upgrade playbooks. (dgoodwin@redhat.com)
  412. - Fix docker restarts during openshift_version role. (dgoodwin@redhat.com)
  413. - Support setting a docker version in inventory. (dgoodwin@redhat.com)
  414. - Fix version facts with trailing newline. (dgoodwin@redhat.com)
  415. - Document the new and old version variables. (dgoodwin@redhat.com)
  416. - Normalize some of the version inventory vars which users might mistakenly
  417. enter wrong. (dgoodwin@redhat.com)
  418. - Check that detected version matches openshift_release in rpm installations.
  419. (dgoodwin@redhat.com)
  420. - Block attempts to install origin without specifying any release info.
  421. (dgoodwin@redhat.com)
  422. - More stable lookup of running openshift version. (dgoodwin@redhat.com)
  423. - Upgrade fixes. (dgoodwin@redhat.com)
  424. - Fix typo in facts. (dgoodwin@redhat.com)
  425. - Cleanup, fix 3.1 version bug in facts. (dgoodwin@redhat.com)
  426. - More version fixes. (dgoodwin@redhat.com)
  427. - Support origin alpha tags. (dgoodwin@redhat.com)
  428. - More stable containerized version lookup. (dgoodwin@redhat.com)
  429. - Remove old upgrade playbooks. (dgoodwin@redhat.com)
  430. - Fix performance hit in openshift_facts. (dgoodwin@redhat.com)
  431. - Always populate openshift_image_tag and openshift_pkg_version.
  432. (dgoodwin@redhat.com)
  433. - Remove the use of the upgrading variable. (dgoodwin@redhat.com)
  434. - Don't be specific about rpm version to upgrade to for now.
  435. (dgoodwin@redhat.com)
  436. - Restore 3.2 RPM version check before upgrading. (dgoodwin@redhat.com)
  437. - Make openshift_version role docker dep conditional. (dgoodwin@redhat.com)
  438. - Fix rpm installs. (dgoodwin@redhat.com)
  439. - Temporary fix for upgrading issue. (dgoodwin@redhat.com)
  440. - Remove unused docker facts tasks. (dgoodwin@redhat.com)
  441. - Fix version unset bug, and set common ver fact on containerized nodes.
  442. (dgoodwin@redhat.com)
  443. - Fix missing openshift.common.version fact on containerized nodes.
  444. (dgoodwin@redhat.com)
  445. - Begin major simplification of 3.2 upgrade. (dgoodwin@redhat.com)
  446. - Respect image tag/pkg version during upgrade. (dgoodwin@redhat.com)
  447. - Force version to latest 3.2 during upgrade. (dgoodwin@redhat.com)
  448. - Verify openshift_release is correct or absent in inventory before upgrade.
  449. (dgoodwin@redhat.com)
  450. - Drop unused and broken "when" in vars section. (dgoodwin@redhat.com)
  451. - Do not install rpm for version in openshift_version role.
  452. (dgoodwin@redhat.com)
  453. - Fix bin/cluster libvirt related error (jdetiber@redhat.com)
  454. - Update openshift_version author info. (dgoodwin@redhat.com)
  455. - Fix installing release 3.1 not converting to precise version.
  456. (dgoodwin@redhat.com)
  457. - Stop requiring/using first master version fact and use openshift_version var
  458. instead. (dgoodwin@redhat.com)
  459. - Break version calc out into a role, separate yaml for containerized/rpm.
  460. (dgoodwin@redhat.com)
  461. - Drop unnecessary node playbook version calculation. (dgoodwin@redhat.com)
  462. - Add leading v for remaining IMAGE_VERSION templates. (dgoodwin@redhat.com)
  463. - Fix error restarting master service that may not be there.
  464. (dgoodwin@redhat.com)
  465. - Fix use of openshift_version in ca role. (dgoodwin@redhat.com)
  466. - Fix image tag to rpm version filter. (dgoodwin@redhat.com)
  467. - Fix error with containerized etcd install. (dgoodwin@redhat.com)
  468. - Refactor openshift_version behavior. (dgoodwin@redhat.com)
  469. - Protect installed version on subsequent masters. (dgoodwin@redhat.com)
  470. - Get rpm installations functional again. (dgoodwin@redhat.com)
  471. - Convert generic openshift_version=3.2 to specific early in install.
  472. (dgoodwin@redhat.com)
  473. - Preserve node versions on re-run. (dgoodwin@redhat.com)
  474. - Fix version compare with using just 3.2 or 1.2. (dgoodwin@redhat.com)
  475. - Hookup node configuration. (dgoodwin@redhat.com)
  476. - Complete installation of first master containerized. (dgoodwin@redhat.com)
  477. - Stop downgrading Docker because we don't know what version to install yet.
  478. (dgoodwin@redhat.com)
  479. - Work towards determining openshift_version when unspecified.
  480. (dgoodwin@redhat.com)
  481. - Remove now unnecessary pull and ver check in openshift_docker role.
  482. (dgoodwin@redhat.com)
  483. - Set openshift_version in config playbooks for first master.
  484. (dgoodwin@redhat.com)
  485. - Debug output. (dgoodwin@redhat.com)
  486. - cleanup broken symlinks - lookup_plugins filter_plugins (tdawson@redhat.com)
  487. - Add libselinux-python as a dependency for the installation process
  488. (frederic.boulet@gmail.com)
  489. * Tue Jul 05 2016 Scott Dodson <sdodson@redhat.com> 3.3.1-1
  490. - Add v1.3 examples (sdodson@redhat.com)
  491. - Change the examples content sync directory (sdodson@redhat.com)
  492. - Add gte_3_3 (sdodson@redhat.com)
  493. - Adds quotes to gpgkey element in byo/config.yml (smerrill@covermymeds.com)
  494. - Restart dnsmasq encase it was already running (sdodson@redhat.com)
  495. - Add support for supplying a dnsmasq.conf file (sdodson@redhat.com)
  496. - Update image streams with SCL 2.2 components (sdodson@redhat.com)
  497. - Bump rhel subscribe default version. (abutcher@redhat.com)
  498. - Revert "Speed up copying OpenShift examples" (abutcher@afrolegs.com)
  499. - Switch to repoquery, enable plugins for satellite support
  500. (sdodson@redhat.com)
  501. - update conditional expression to save steps (lxia@redhat.com)
  502. - Enable additional 'virt_sandbox_use_nfs' seboolean as per documentation:
  503. (george.goh@redhat.com)
  504. - Set any_errors_fatal for initialize facts play. (abutcher@redhat.com)
  505. - Set any_errors_fatal for etcd facts play. (abutcher@redhat.com)
  506. - Speed up copying OpenShift examples (tbielawa@redhat.com)
  507. - Check if last rule is DROP when inserting iptables rules.
  508. (abutcher@redhat.com)
  509. - Don't upgrade docker on non-containerized etcd. (abutcher@redhat.com)
  510. - Access embedded_etcd variable from oo_first_master hostvars.
  511. (abutcher@redhat.com)
  512. - Add missing quote in metrics deployer template. (dgoodwin@redhat.com)
  513. - Allow flag to uninstall playbook to preserve images. (dgoodwin@redhat.com)
  514. - Add MODE to metrics deployer (sdodson@redhat.com)
  515. - NetworkManager service never changes (tbielawa@redhat.com)
  516. - Update the rest of the templates (sdodson@redhat.com)
  517. - Update logging and metrics templates (sdodson@redhat.com)
  518. - Block Docker 1.10 upgrade playbook when run against an Atomic OS.
  519. (dgoodwin@redhat.com)
  520. - If registry_url != registry.access.redhat.com then modify image streams
  521. (sdodson@redhat.com)
  522. - Add 30 second pause before retrying to start the node (sdodson@redhat.com)
  523. - Stop dumping debug output, re-try startng the node once (sdodson@redhat.com)
  524. - Fix uninstall.yml indentation for deamon-reload
  525. (florian.lambert@enovance.com)
  526. - Fix no proxy hostnames during upgrade. (dgoodwin@redhat.com)
  527. - Attempt to fix containerized node start failure with Docker 1.10.
  528. (dgoodwin@redhat.com)
  529. - also volume-mount /etc/sysconfig/docker (tob@butter.sh)
  530. - Separate uninstall plays by group. (abutcher@redhat.com)
  531. - Add per-service environment variables. (abutcher@redhat.com)
  532. - - Prevent the script to override n number of the time the same nameserver -
  533. Prevent the script to echo blank values from IP4_NAMESERVERS variable
  534. (william17.burton@gmail.com)
  535. - Make a note about Requires: docker (sdodson@redhat.com)
  536. - Remove Docker 1.10 requirement temporarily. (dgoodwin@redhat.com)
  537. - Fix docker 1.10 upgrade on embedded etcd masters. (dgoodwin@redhat.com)
  538. - Add lower case proxy variables (pascal.bach@siemens.com)
  539. - default unit in openshift_facts (you@example.com)
  540. - add unit in seconds for metrics resolution (you@example.com)
  541. * Thu Jun 09 2016 Scott Dodson <sdodson@redhat.com> 3.3.0-1
  542. - Restore mistakenly reverted code. (dgoodwin@redhat.com)
  543. - Add openshift_loadbalancer_facts role to set lb facts prior to running
  544. dependencies. (abutcher@redhat.com)
  545. - Bug 1338726 - never abort install if the latest version of docker is already
  546. installed (bleanhar@redhat.com)
  547. - Preserve proxy config if it's undefined (sdodson@redhat.com)
  548. - At least backup things (sdodson@redhat.com)
  549. - Use unique play names to make things easier to debug (sdodson@redhat.com)
  550. - Ansible 2.1 support. (abutcher@redhat.com)
  551. - add skydns port 8053 to openstack master sec group (jawed.khelil@amadeus.com)
  552. - fix dns openstack flavor instead of openshift flavor
  553. (jawed.khelil@amadeus.com)
  554. - Fix Docker 1.10 problems with empty tags and trailing : (dgoodwin@redhat.com)
  555. - ensure htpasswd file exists (tob@butter.sh)
  556. - Docker 1.10 Upgrade (dgoodwin@redhat.com)
  557. - Add flag to manage htpasswd, or not. (tob@butter.sh)
  558. * Mon Jun 06 2016 Scott Dodson <sdodson@redhat.com> 3.0.97-1
  559. - Only run node specific bits on nodes (sdodson@redhat.com)
  560. - Update main.yaml (detiber@gmail.com)
  561. - Hardcoded values in "launch_instances" - isue # 1970 (daniel@dumdan.com)
  562. - XPAAS v1.3.1 content for Origin 1.1 / OSE 3.1 (sdodson@redhat.com)
  563. - XPAAS v1.3.1 release for Origin 1.2 / OSE 3.2 (sdodson@redhat.com)
  564. - Configure default docker logging options. (abutcher@redhat.com)
  565. - Run rhel_subscribe on l_oo_all_hosts rather than all (sdodson@redhat.com)
  566. - Fix error with stopping services that may not exist. (dgoodwin@redhat.com)
  567. - Add haproxy_frontend_port to vars for openshift-loadbalancer.
  568. (abutcher@redhat.com)
  569. - Move os_firewall_allow from defaults to role dependencies.
  570. (abutcher@redhat.com)
  571. - Ensure registry url evaluated when creating router. (abutcher@redhat.com)
  572. - Document protocol in readme aws. (abutcher@redhat.com)
  573. - Revert openshift-certificates changes. (abutcher@redhat.com)
  574. - wait metrics-deployer complete (need to configure nodes before hosted
  575. services) (you@example.com)
  576. - switch to using sig release packages (jdetiber@redhat.com)
  577. - temporarily disable gpg checking until we have a way to cleanly enable it
  578. (jdetiber@redhat.com)
  579. - Switch to using CentOS SIG repos for Origin installs (jdetiber@redhat.com)
  580. - Separate master and haproxy config playbooks. (abutcher@redhat.com)
  581. - Cleanup bin, test and roles/openshift_ansible_inventory following move to
  582. openshift-tools (abutcher@redhat.com)
  583. - Catch more uninstall targets (sdodson@redhat.com)
  584. - Adding openshift_clock parameters to example inventory files
  585. (jstuever@redhat.com)
  586. - Enable openshift_clock role for openshift_master, openshift_node, and
  587. openshift_etcd (jstuever@redhat.com)
  588. - Add openshift_clock role to manage system clocks (jstuever@redhat.com)
  589. - Allow clock role in openshift_facts (jstuever@redhat.com)
  590. - Consolidate ca/master/node certificates roles into openshift_certificates.
  591. (abutcher@redhat.com)
  592. - allow for overriding dns_flavor for openstack provider (jdetiber@redhat.com)
  593. - add user-data file back to openstack provisioner (jdetiber@redhat.com)
  594. - g_all_hosts with templated with_items causes errors with ansible 1.9.4 under
  595. some conditions (jdetiber@redhat.com)
  596. - openstack_fixes (jdetiber@redhat.com)
  597. - libvirt_fixes (jdetiber@redhat.com)
  598. - gce fixes (jdetiber@redhat.com)
  599. - aws provider fixes (jdetiber@redhat.com)
  600. - Call evaluate_groups from update_repos_and_packages (jdetiber@redhat.com)
  601. * Thu May 26 2016 Scott Dodson <sdodson@redhat.com> 3.0.94-1
  602. - Use grep to decide when to add our comment (sdodson@redhat.com)
  603. * Tue May 24 2016 Troy Dawson <tdawson@redhat.com> 3.0.93-1
  604. - Fixup spec file (tdawson@redhat.com)
  605. * Tue May 24 2016 Troy Dawson <tdawson@redhat.com> 3.0.92-1
  606. - Conditionally bind mount /usr/bin/docker-current when it is present (#1941)
  607. (sdodson@redhat.com)
  608. * Tue May 24 2016 Troy Dawson <tdawson@redhat.com> 3.0.91-1
  609. - Removed the echo line and replaced it with inline comment. To keep 99-origin-
  610. dns.sh from adding a new line in /etc/resolv.conf everytime the
  611. NetworkManager dispatcher script is executed. (jnordell@redhat.com)
  612. - Extend multiple login provider check to include origin. (abutcher@redhat.com)
  613. - Allow multiple login providers post 3.2. (abutcher@redhat.com)
  614. - Make rhel_subscribe role able to subscribe for OSE 3.2 (lhuard@amadeus.com)
  615. - Ensure yum-utils installed. (abutcher@redhat.com)
  616. - Remove newline from docker_options template string. (abutcher@redhat.com)
  617. - Use systemctl restart docker instead of ansible service.
  618. (dgoodwin@redhat.com)
  619. - Use cluster hostname while generating certificate on the master nodes
  620. (vishal.patil@nuagenetworks.net)
  621. - Fix playbooks/openshift-master/library move to symlink (sdodson@redhat.com)
  622. - Task "Update router image to current version" failed, if router not in
  623. default namespace (jkroepke@users.noreply.github.com)
  624. - docker-current was missing from the containerized atomic-openshift-
  625. node.service file (maci.stgn@gmail.com)
  626. - fixed issue with blank spaces instead commas as variables template separators
  627. (j.david.nieto@gmail.com)
  628. - Refactor where we compute no_proxy hostnames (sdodson@redhat.com)
  629. - Fix for ansible v2 (sdodson@redhat.com)
  630. - Fix rhel_subscribe (sdodson@redhat.com)
  631. - remove interpolated g_all_hosts with_items arg from upgrade playbooks
  632. (cboggs@rallydev.com)
  633. - Set openshift.common.hostname early in playbook execution.
  634. (abutcher@redhat.com)
  635. - Fix 'recursive loop detected in template string' for upgrading variable.
  636. (abutcher@redhat.com)
  637. - a-o-i: No proxy questions for 3.0/3.1 (smunilla@redhat.com)
  638. - Fix minor upgrades in 3.1 (sdodson@redhat.com)
  639. - Don't pull cli image when we're not containerized (sdodson@redhat.com)
  640. - Check consumed pools prior to attaching. (abutcher@redhat.com)
  641. * Mon May 16 2016 Troy Dawson <tdawson@redhat.com> 3.0.90-1
  642. - Fixes for openshift_docker_hosted_registry_insecure var.
  643. (dgoodwin@redhat.com)
  644. - Move latest to v1.2 (sdodson@redhat.com)
  645. - Sync latest content (sdodson@redhat.com)
  646. - Update default max-pods parameter (mwysocki@redhat.com)
  647. - Allow overriding servingInfo.maxRequestsInFlight via
  648. openshift_master_max_requests_inflight. (abutcher@redhat.com)
  649. - update logging and metrics deployer templates (lmeyer@redhat.com)
  650. - Update default max-pods parameter (maci.stgn@gmail.com)
  651. - Block upgrading w/ ansible v2. (abutcher@redhat.com)
  652. - Fixed openvswitch not upgrading. (dgoodwin@redhat.com)
  653. - Do not upgrade containers to latest avail during a normal config run.
  654. (dgoodwin@redhat.com)
  655. - Update StringIO import for py2/3 compat. (abutcher@redhat.com)
  656. - Fix mistaken quotes on proxy sysconfig variables. (dgoodwin@redhat.com)
  657. - Sync comments with origin pr (sdodson@redhat.com)
  658. - Use IP4_NAMESERVERS rather than DHCP4_DOMAIN_NAME_SERVERS
  659. (sdodson@redhat.com)
  660. - Remove vars_files on play includes for upgrade playbooks.
  661. (abutcher@redhat.com)
  662. - Document oauth token config inventory vars. (dgoodwin@redhat.com)
  663. - Why is the node failing to start (sdodson@redhat.com)
  664. - Move os_firewall out of openshift_common (sdodson@redhat.com)
  665. - Remove old unused firewall rules (sdodson@redhat.com)
  666. - Fix firewall rules (sdodson@redhat.com)
  667. - Remove double evaluate_groups include. (abutcher@redhat.com)
  668. - a-o-i: Write proxy variables (smunilla@redhat.com)
  669. - Add support for Openstack based persistent volumes (sbaubeau@redhat.com)
  670. - Fixes for flannel configuration. (abutcher@redhat.com)
  671. - Initialize facts for all hosts. (abutcher@redhat.com)
  672. - Fix version (sdodson@redhat.com)
  673. - Fix cli_docker_additional_registries being erased during upgrade.
  674. (dgoodwin@redhat.com)
  675. - Unmask atomic-openshift-master on uninstall (sdodson@redhat.com)
  676. - Add *.retry to gitignore. (abutcher@redhat.com)
  677. - Move modify_yaml up into top level library directory (sdodson@redhat.com)
  678. - Enable dnsmasq on all hosts (sdodson@redhat.com)
  679. - Fixed the credentials (vishal.patil@nuagenetworks.net)
  680. - Remove vars_files on play includes for byo, scaleup and restart playbooks.
  681. (abutcher@redhat.com)
  682. - Ensure ansible version greater than 1.9.4 (abutcher@redhat.com)
  683. - Add oo_merge_hostvars filter for merging host & play variables.
  684. (abutcher@redhat.com)
  685. - Replace hostvars with vars for openshift env facts when ansible >= v2.
  686. (abutcher@redhat.com)
  687. - Add system:image-auditor role to ManageIQ SA (mtayer@redhat.com)
  688. - Added extra install dependency on OSX (leenders.gert@gmail.com)
  689. - Check and unmask iptables/firewalld. (abutcher@redhat.com)
  690. - Default os_firewall_use_firewalld to false in os_firewall and remove
  691. overrides. (abutcher@redhat.com)
  692. - listen on all interfaces (sdodson@redhat.com)
  693. - Fix configuration of dns_ip (sdodson@redhat.com)
  694. - Fix markdown in roles/openshift_metrics/README.md (cben@redhat.com)
  695. - use stat module instead of shell module and ls to check for rpm-ostree
  696. (jdetiber@redhat.com)
  697. - fix openstack template (sjenning@redhat.com)
  698. - Remove duplicate oauth_template fact. (abutcher@redhat.com)
  699. - Cleanup various deprecation warnings. (abutcher@redhat.com)
  700. - Make NetworkManager failure friendlier (sdodson@redhat.com)
  701. - README Updates (detiber@gmail.com)
  702. - Remove deprecated online playbooks/roles (jdetiber@redhat.com)
  703. - fix up variable references remove "online" support from bin/cluster
  704. (jdetiber@redhat.com)
  705. - Remove Ops specific ansible-tower aws playbooks (jdetiber@redhat.com)
  706. - Fix inventory syntaxe (florian.lambert@enovance.com)
  707. - Add openshift_docker_hosted_registry_insecure option (andrew@andrewklau.com)
  708. - additional fixes (jdetiber@redhat.com)
  709. - Fix templating issue with logging role (jdetiber@redhat.com)
  710. - BuildDefaults are a kube admission controller not an openshift admission
  711. controller (sdodson@redhat.com)
  712. - a-o-i: More friendly proxy questions (smunilla@redhat.com)
  713. - update tenand_id typo in example file (jialiu@redhat.com)
  714. - Update hosts.ose.example (jialiu@redhat.com)
  715. - update tenand_id typo in example file (jialiu@redhat.com)
  716. - Update repos per inventory before upgrading (sdodson@redhat.com)
  717. - Fix openshift_generate_no_proxy_hosts boolean (sdodson@redhat.com)
  718. - Fix openshift_generate_no_proxy_hosts examples (sdodson@redhat.com)
  719. - Fix inventory properties with raw booleans, again... (dgoodwin@redhat.com)
  720. - Allow containerized deployment of dns role (jprovazn@redhat.com)
  721. * Mon May 09 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.89-1
  722. - Use yum swap to downgrade docker (sdodson@redhat.com)
  723. * Fri May 06 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.88-1
  724. - Open port 53 whenever we're unsure of version (sdodson@redhat.com)
  725. - Fix unsafe boolean handling on use_dnsmasq (sdodson@redhat.com)
  726. * Wed Apr 27 2016 Troy Dawson <tdawson@redhat.com> 3.0.87-1
  727. - a-o-i-: Allow empty proxy (smunilla@redhat.com)
  728. - a-o-i: Populate groups for openshift_facts (smunilla@redhat.com)
  729. - Replace sudo with become when accessing deployment_vars.
  730. (abutcher@redhat.com)
  731. - Port lookup plugins to ansible v2. (abutcher@redhat.com)
  732. - Add masterConfig.volumeConfig.dynamicProvisioningEnabled (sdodson@redhat.com)
  733. * Tue Apr 26 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.86-1
  734. - Don't set empty HTTP_PROXY, HTTPS_PROXY, NO_PROXY values (sdodson@redhat.com)
  735. - a-o-i tests: Update attended tests for proxy (smunilla@redhat.com)
  736. - Move portal_net from openshift_common to openshift_facts.
  737. (abutcher@redhat.com)
  738. - Apply openshift_common to all masters prior to creating certificates for
  739. portal_net. (abutcher@redhat.com)
  740. - Access portal_net in common facts. (abutcher@redhat.com)
  741. - Add support for setting identity provider custom values (jdetiber@redhat.com)
  742. - port filter_plugins to ansible2 (tob@butter.sh)
  743. - a-o-i: Update prompt when asking for proxy (smunilla@redhat.com)
  744. - a-o-i: UI additions for proxies (smunilla@redhat.com)
  745. * Mon Apr 25 2016 Troy Dawson <tdawson@redhat.com> 3.0.85-1
  746. - Fix backward compat for osm_default_subdomain (jdetiber@redhat.com)
  747. - Replace deprecated sudo with become. (abutcher@redhat.com)
  748. - Fix image version handling for v1.2.0-rc1 (sdodson@redhat.com)
  749. - Pod must be recreated for the upgrade (bleanhar@redhat.com)
  750. - openshift_etcd_facts should rely on openshift_facts not openshift_common
  751. (jdetiber@redhat.com)
  752. - Sort and de-dupe no_proxy list (sdodson@redhat.com)
  753. - openshift-metrics: adding duration and resolution options
  754. (efreiber@redhat.com)
  755. - Changed service account creation to ansible (vishal.patil@nuagenetworks.net)
  756. - As per https://github.com/openshift/openshift-
  757. ansible/issues/1795#issuecomment-213873564, renamed openshift_node_dnsmasq to
  758. openshift_use_dnsmasq where applicable. Fixes 1795 (donovan@switchbit.io)
  759. - Add global proxy configuration (sdodson@redhat.com)
  760. - remove duplicate register: (tob@butter.sh)
  761. * Fri Apr 22 2016 Troy Dawson <tdawson@redhat.com> 3.0.84-1
  762. - Fix for docker not present (jdetiber@redhat.com)
  763. - Reconcile roles in additive-only mode on upgrade (jliggitt@redhat.com)
  764. - Set etcd_hostname and etcd_ip for masters w/ external etcd.
  765. (abutcher@redhat.com)
  766. * Thu Apr 21 2016 Troy Dawson <tdawson@redhat.com> 3.0.83-1
  767. - a-o-i: Correct bug with default storage host (smunilla@redhat.com)
  768. - Only add new sccs (bleanhar@redhat.com)
  769. - Fix bug after portal_net move from master to common role.
  770. (dgoodwin@redhat.com)
  771. - Sync latest content (sdodson@redhat.com)
  772. - Use xpaas 1.3.0-1, use enterprise content for metrics (sdodson@redhat.com)
  773. - Support configurable admin user and password for the enterprise Prefix
  774. changes for admin and password with nuage_master (abhat@nuagenetworks.net)
  775. * Wed Apr 20 2016 Troy Dawson <tdawson@redhat.com> 3.0.82-1
  776. - Use a JSON list for docker log options. (dgoodwin@redhat.com)
  777. - Fix legacy cli_docker_* vars not migrating. (dgoodwin@redhat.com)
  778. - Fix use of older image tag version during upgrade. (dgoodwin@redhat.com)
  779. - Remove etcd_interface variable. Remove openshift_docker dependency from the
  780. etcd role. (abutcher@redhat.com)
  781. - Use openshift_hostname/openshift_ip values for etcd configuration and
  782. certificates. (abutcher@redhat.com)
  783. - added new openshift-metrics service (j.david.nieto@gmail.com)
  784. - Translate legacy facts within the oo_openshift_env filter.
  785. (abutcher@redhat.com)
  786. - Remove empty facts from nested dictionaries. (abutcher@redhat.com)
  787. - Fix router selector fact migration and match multiple selectors when counting
  788. nodes. (abutcher@redhat.com)
  789. - Fixing the spec for PR 1734 (bleanhar@redhat.com)
  790. - Add openshift_use_dnsmasq (sdodson@redhat.com)
  791. - Promote portal_net to openshift.common, add kube_svc_ip (sdodson@redhat.com)
  792. - Add example inventories to docs, install docs by default (sdodson@redhat.com)
  793. - Fix use of JSON inventory vars with raw booleans. (dgoodwin@redhat.com)
  794. - cleanup roles after roles move to openshift-tools (jdiaz@redhat.com)
  795. - Reference Setup for Origin and Ose from up-to-date docs.openshift.[com|org]
  796. instead of local README_[origin|OSE].md (jchaloup@redhat.com)
  797. * Mon Apr 18 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.81-1
  798. - IMAGE_PREFIX=openshift3/ for enterprise logging/metrics (sdodson@redhat.com)
  799. - a-o-i: Don't assume storage on 1st master (smunilla@redhat.com)
  800. - Bug 1320829 - Handle OSE 3.0 installs (bleanhar@redhat.com)
  801. * Fri Apr 15 2016 Troy Dawson <tdawson@redhat.com> 3.0.80-1
  802. - Refactor docker failed state cleanup (sdodson@redhat.com)
  803. - Support mixed RPM/container installs (bleanhar@redhat.com)
  804. - The openshift_docker role must set the version facts for containerized
  805. installs (bleanhar@redhat.com)
  806. - start it, check for failure, reset it, start again (sdodson@redhat.com)
  807. - Enable docker before potentially resetting the failure (sdodson@redhat.com)
  808. - Fix mappingMethod option in identity provider. (abutcher@redhat.com)
  809. - Support setting imagePolicyConfig JSON in inventory. (dgoodwin@redhat.com)
  810. * Tue Apr 12 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.79-1
  811. - Bug 1324728 - Ansible should not downgrade docker when installing 3.2
  812. containerized env (bleanhar@redhat.com)
  813. - Fixing non-HA master restart conditional (bleanhar@redhat.com)
  814. - Fetching the current version a little more carefully (bleanhar@redhat.com)
  815. - Make sure Docker is restarted after we have correctly configured the
  816. containerized systemd units (bleanhar@redhat.com)
  817. - use RestartSec to avoid default rate limit in systemd (bleanhar@redhat.com)
  818. - Convert image_tag on masters (smunilla@redhat.com)
  819. - Installs and upgrades from authenticated registries are not supported for now
  820. (bleanhar@redhat.com)
  821. - Handle cases where the pacemaker variables aren't set (bleanhar@redhat.com)
  822. - Containerized installs on RHEL were downgrading docker unnecessarily
  823. (bleanhar@redhat.com)
  824. * Tue Apr 12 2016 Troy Dawson <tdawson@redhat.com> 3.0.78-1
  825. - Add support for creating secure router. (abutcher@redhat.com)
  826. * Mon Apr 11 2016 Troy Dawson <tdawson@redhat.com> 3.0.77-1
  827. - Fix a docker-storage sysconfig bug. (dgoodwin@redhat.com)
  828. - update bootstrap-fedora to include python2-firewall for F24+
  829. (maxamillion@fedoraproject.org)
  830. - Merge openshift_env hostvars. (abutcher@redhat.com)
  831. - Add openshift_hosted_facts role and remove hosted facts from
  832. openshift_common. (abutcher@redhat.com)
  833. * Fri Apr 08 2016 Troy Dawson <tdawson@redhat.com> 3.0.76-1
  834. - a-o-i: Support openshift_image_tag (smunilla@redhat.com)
  835. - Bug 1324729 - Import xPaas image streams failed during 3.2 installation
  836. (bleanhar@redhat.com)
  837. - Test docker_version_result.stdout when determining if docker should be
  838. installed/downgraded. (abutcher@redhat.com)
  839. * Thu Apr 07 2016 Troy Dawson <tdawson@redhat.com> 3.0.75-1
  840. - First attempt at oadm router module (kwoodson@redhat.com)
  841. - Remove openshift_common dep from openshift_storage_nfs (abutcher@redhat.com)
  842. - Add cloudprovider config dir to docker options. (abutcher@redhat.com)
  843. - Check for kind in cloudprovider facts prior to accessing.
  844. (abutcher@redhat.com)
  845. * Wed Apr 06 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.74-1
  846. - Add support for configuring oauth templates. (dgoodwin@redhat.com)
  847. - Add support for templating master admissionConfig. (dgoodwin@redhat.com)
  848. * Wed Apr 06 2016 Troy Dawson <tdawson@redhat.com> 3.0.73-1
  849. - Replace unused Dockerfile with one used for official builds.
  850. (dgoodwin@redhat.com)
  851. - Update for zbx_user refresh (kwoodson@redhat.com)
  852. - Docker 1.9 is actually cool starting in origin 1.1.4 (sdodson@redhat.com)
  853. - Unmask services (bleanhar@redhat.com)
  854. - XPAAS v1.3 for OSE 3.2 (sdodson@redhat.com)
  855. - XPAAS 1.3 content for OSE 3.1 (sdodson@redhat.com)
  856. - Bug 1322788 - The IMAGE_VERSION wasn't added to atomic-openshift-master-api
  857. and atomic-openshift-master-controllers (bleanhar@redhat.com)
  858. - Bug 1323123 - upgrade failed to containerized OSE on RHEL Host without ose3.2
  859. repo (bleanhar@redhat.com)
  860. - Write inventory to same directory as quick install config.
  861. (dgoodwin@redhat.com)
  862. - Add --gen-inventory command to atomic-openshift-installer.
  863. (dgoodwin@redhat.com)
  864. * Tue Apr 05 2016 Troy Dawson <tdawson@redhat.com> 3.0.72-1
  865. - when docker is installed, make it 1.8.2 to avoid issues (mwoodson@redhat.com)
  866. - Downgrade to docker 1.8.2 if installing OSE < 3.2 (sdodson@redhat.com)
  867. - Pacemaker is unsupported for 3.2 (bleanhar@redhat.com)
  868. - Fixing regexp. Periods are no longer allowed (kwoodson@redhat.com)
  869. - We require docker 1.9 for the 3.2 upgrade (bleanhar@redhat.com)
  870. * Mon Apr 04 2016 Troy Dawson <tdawson@redhat.com> 3.0.71-1
  871. - Fixed oc_edit by requiring name and content (kwoodson@redhat.com)
  872. - add higher severity trigger if no heartbeat for 1 hour (jdiaz@redhat.com)
  873. - Yedit enhancements (kwoodson@redhat.com)
  874. * Fri Apr 01 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.70-1
  875. - Enable Ansible ssh pipelining to speedup deployment (lhuard@amadeus.com)
  876. - Allow for overriding scheduler config (jdetiber@redhat.com)
  877. - a-o-i: Add 3.2 to list of supported versions (smunilla@redhat.com)
  878. - a-o-i: Support for unattended upgrades (smunilla@redhat.com)
  879. - a-o-i: More flexible upgrade mappings (smunilla@redhat.com)
  880. - a-o-i: OSE/AEP 3.2 product option (smunilla@redhat.com)
  881. - a-o-i: Error out early if callback_facts is None (smunilla@redhat.com)
  882. * Thu Mar 31 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.69-1
  883. - Bug 1320829 - Ensure docker installed for facts (jdetiber@redhat.com)
  884. - Bug 1322788 - The IMAGE_VERSION wasn't added to atomic-openshift-master-api
  885. and atomic-openshift-master-controllers (bleanhar@redhat.com)
  886. - Fixed generate header. (kwoodson@redhat.com)
  887. - Bug 1322335 - The package name is wrong for rpm upgrade (bleanhar@redhat.com)
  888. - Add AWS cloud provider support. (abutcher@redhat.com)
  889. * Wed Mar 30 2016 Troy Dawson <tdawson@redhat.com> 3.0.68-1
  890. - Moving generation of ansible module side by side with module.
  891. (kwoodson@redhat.com)
  892. - Bug 1322338 - The upgrade should keep the option insecure-
  893. registry=172.30.0.0/16 (bleanhar@redhat.com)
  894. * Tue Mar 29 2016 Troy Dawson <tdawson@redhat.com> 3.0.67-1
  895. - The systemd unit for atomic-openshift-master wasn't not being created
  896. (bleanhar@redhat.com)
  897. - Use openshift.master.ha instead of duplicating the logic
  898. (bleanhar@redhat.com)
  899. - Workaround for authenticated registries (bleanhar@redhat.com)
  900. - First pass at systemd unit refactor (bleanhar@redhat.com)
  901. - fix the key name for the dynamic item of avalable (zhizhang@zhizhang-laptop-
  902. nay.redhat.com)
  903. - make docker service want ose containerized services (sjenning@redhat.com)
  904. * Mon Mar 28 2016 Troy Dawson <tdawson@redhat.com> 3.0.66-1
  905. - Fixed error message to add valid yaml (kwoodson@redhat.com)
  906. - added admin binary varibale usage as well as specifying kubeconfig copy to be
  907. used (jkwiatko@redhat.com)
  908. - Sync latest db-templates and qucikstart-templates (sdodson@redhat.com)
  909. - adding playbook (jkwiatko@redhat.com)
  910. - Tested of refactored code (jkwiatko@redhat.com)
  911. - fix some typo (zhizhang@use-tower1.ops.rhcloud.com)
  912. - add the total and available space item (zhizhang@use-tower1.ops.rhcloud.com)
  913. - add dynamic pv count (zhizhang@use-tower1.ops.rhcloud.com)
  914. - revised and restructured logging role (jkwiatko@redhat.com)
  915. - Adding openshift_efk role (jkwiatko@redhat.com)
  916. - Attempt to fix error validating when extraScopes and extraAuthorizeParameters
  917. are not present (jdetiber@redhat.com)
  918. * Thu Mar 24 2016 Troy Dawson <tdawson@redhat.com> 3.0.65-1
  919. - Adding deployment config and refactored. (kwoodson@redhat.com)
  920. - ManageIQ SA: Adding image-puller role (efreiber@redhat.com)
  921. * Wed Mar 23 2016 Troy Dawson <tdawson@redhat.com> 3.0.64-1
  922. - Latest cli updates from generated files (kwoodson@redhat.com)
  923. - Add /dev to node containers (sdodson@redhat.com)
  924. - Fix indention (whearn@redhat.com)
  925. - Support setting local storage perFSGroup quota in node config.
  926. (dgoodwin@redhat.com)
  927. - Fix line break (whearn@redhat.com)
  928. - Lock down permissions on named certificates (elyscape@gmail.com)
  929. - Add namespace flag to oc create (whearn@redhat.com)
  930. * Mon Mar 21 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.63-1
  931. - Modified group selectors for muliple clusters per account
  932. (kwoodson@redhat.com)
  933. * Fri Mar 18 2016 Troy Dawson <tdawson@redhat.com> 3.0.62-1
  934. - Yaml editor first attempt (kwoodson@redhat.com)
  935. - libvirt cluster variables cleanup (pep@redhat.com)
  936. * Thu Mar 17 2016 Troy Dawson <tdawson@redhat.com> 3.0.61-1
  937. - Bug 1317755 - Set insecure-registry for internal registry by default
  938. (jdetiber@redhat.com)
  939. * Wed Mar 16 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.60-1
  940. - Fall back to deployment_type in openshift_facts. (abutcher@redhat.com)
  941. - Fixing undefined variable check (kwoodson@redhat.com)
  942. - Fix path to cacert on /healthz/ready check (sdodson@redhat.com)
  943. - Load environment files in containerized installs (sdodson@redhat.com)
  944. - change type to value_type (zhizhang@zhizhang-laptop-nay.redhat.com)
  945. - change time from int to float (zhizhang@zhizhang-laptop-nay.redhat.com)
  946. - change the check time from 1 hour to 2 hour (zhizhang@zhizhang-laptop-
  947. nay.redhat.com)
  948. - add item of time cost a app build and app create (zhizhang@zhizhang-laptop-
  949. nay.redhat.com)
  950. - add trigger for app creation with build process (zhizhang@zhizhang-laptop-
  951. nay.redhat.com)
  952. - add key of openshift.master.app.build.create (zhizhang@zhizhang-laptop-
  953. nay.redhat.com)
  954. * Wed Mar 16 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.59-1
  955. - Only mask etcd service for containerized installls when it's installed
  956. (sdodson@redhat.com)
  957. - Provide cacert when performing health checks (abutcher@redhat.com)
  958. * Tue Mar 15 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.58-1
  959. - Group selector feature added (kwoodson@redhat.com)
  960. - nfs: replace yum with dnf (efreiber@redhat.com)
  961. - Move common common facts to openshift_facts (jdetiber@redhat.com)
  962. - perform oc client config tasks only once when ansible_ssh_user is root
  963. (jdetiber@redhat.com)
  964. - OSE/Origin < 3.2/1.2 should not get Docker 1.9 (sdodson@redhat.com)
  965. * Mon Mar 14 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.57-1
  966. - Docker stderr can break this script if ansible executes it remotely
  967. (bleanhar@redhat.com)
  968. - Handle HA master case (bleanhar@redhat.com)
  969. - Bug 1315564 - Containerized installs require a running environment
  970. (bleanhar@redhat.com)
  971. - Updating the docker registry variables to use the new name
  972. (bleanhar@redhat.com)
  973. - Bug 1316761 - Skip the available version check if openshift_image_tag is
  974. defined. (bleanhar@redhat.com)
  975. - Ansible module to manage secrets for openshift api (kwoodson@redhat.com)
  976. * Mon Mar 14 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.56-1
  977. - Updating our metadata tooling to work without env (kwoodson@redhat.com)
  978. - improve ordering of systemd units (jdetiber@redhat.com)
  979. - Docker role refactor (jdetiber@redhat.com)
  980. - Ensure is_containerized is cast as bool. (abutcher@redhat.com)
  981. - Sync latest to v1.2 (sdodson@redhat.com)
  982. - Sync with latest image stream and templates (sdodson@redhat.com)
  983. - Allow origin version to be passed in as an argument (sdodson@redhat.com)
  984. - Add support for Openstack integration (sbaubeau@redhat.com)
  985. - Expose log level on the monitor (abhat@nuagenetworks.net)
  986. - openshift_facts: Safe cast additional bools (smunilla@redhat.com)
  987. - openshift-ansible: Wrap boolean facts (smunilla@redhat.com)
  988. - fixed copr releasers file (twiest@redhat.com)
  989. - Libvirt provider fixes (jdetiber@redhat.com)
  990. - Support log level configuration for plugin (abhat@nuagenetworks.net)
  991. * Wed Mar 09 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.55-1
  992. - Bug 1315564 - upgrade to ose3.2 failed on Atomic Hosts (bleanhar@redhat.com)
  993. - Bug 1315563 - Upgrade failed to containerized install OSE 3.1 on RHEL
  994. (bleanhar@redhat.com)
  995. - a-o-i: Fix NFS storage tests (smunilla@redhat.com)
  996. - First attempt at NFS setup (smunilla@redhat.com)
  997. - reverting back to pre-pulling the master image (bleanhar@redhat.com)
  998. - Use /healthz/ready when verifying api (abutcher@redhat.com)
  999. - Formatting error (Viet.atx@gmail.com)
  1000. - Introduce origin-metrics playbook (vnguyen@redhat.com)
  1001. * Tue Mar 08 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.54-1
  1002. - Bug 1315563 - stdout IO redirection wasn't working as expected over SSH
  1003. connections (bleanhar@redhat.com)
  1004. - Bug 1315637 - The docker wasn't upgraded on node during upgrade
  1005. (bleanhar@redhat.com)
  1006. - Bug 1315564 - upgrade to ose3.2 failed on Atomic Hosts (bleanhar@redhat.com)
  1007. - Fix issue when there are no infra nodes (lhuard@amadeus.com)
  1008. - Stop the etcd container during uninstall (bleanhar@redhat.com)
  1009. * Mon Mar 07 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.53-1
  1010. - Don't enable cockpit-ws for containerized installs (bleanhar@redhat.com)
  1011. - Support openshift_image_tag (bleanhar@redhat.com)
  1012. - Set g_new_master_hosts in upgrade playbooks. (abutcher@redhat.com)
  1013. - Add setting for configuring nofile limit for haproxy (jdetiber@redhat.com)
  1014. * Mon Mar 07 2016 Joel Diaz <jdiaz@redhat.com> 3.0.52-1
  1015. - fixed monitoring containers to restart (sten@redhat.com)
  1016. - Lock down generated certs dir (sdodson@redhat.com)
  1017. - package up lib_zabbix into its own subpackage (jdiaz@redhat.com)
  1018. * Fri Mar 04 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.51-1
  1019. - Bug 1314645 - Upgrade failed with "One or more undefined variables 'dict
  1020. object' has no attribute 'stdout'" (bleanhar@redhat.com)
  1021. - EBS storage does not support Recycle (sedgar@redhat.com)
  1022. - Remove cockpit and kubernetes-client packages in uninstall playbook.
  1023. (abutcher@redhat.com)
  1024. - Update README_origin.md (trond.hapnes@gmail.com)
  1025. - Add cockpit-docker package by default (nakayamakenjiro@gmail.com)
  1026. * Thu Mar 03 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.50-1
  1027. - change lib_zabbix's import to new pathing (jdiaz@redhat.com)
  1028. - upgrade README fixes (bleanhar@redhat.com)
  1029. - A few images weren't being uninstalled (bleanhar@redhat.com)
  1030. - Adding support for v1.2 examples (bleanhar@redhat.com)
  1031. - Adding templates for v1.2 (bleanhar@redhat.com)
  1032. - Adding verify_upgrade_version variable for upgrade debugging
  1033. (bleanhar@redhat.com)
  1034. - Correctly set the image tag for containerized installs (and upgrades)
  1035. (bleanhar@redhat.com)
  1036. - Adding newly required variable (bleanhar@redhat.com)
  1037. - Updating the containerized cli wrapper to work for both docker 1.8 and 1.9
  1038. (bleanhar@redhat.com)
  1039. - uninstall the QE images (bleanhar@redhat.com)
  1040. - First past at the upgrade process (bleanhar@redhat.com)
  1041. - Check for is_containerized value when setting binary locations.
  1042. (abutcher@redhat.com)
  1043. - Bug 1313169 - Ansible installer tries to enable etcd_container service even
  1044. though containerized=false (bleanhar@redhat.com)
  1045. - Fix logging infra template version mismatch. (dgoodwin@redhat.com)
  1046. - Changes required for Nuage monitor REST server
  1047. (vishal.patil@nuagenetworks.net)
  1048. - disable http-server-close option (jdetiber@redhat.com)
  1049. - change [HEAL] to [Heal] to match with v2 (jdiaz@redhat.com)
  1050. - Increase maxconn settings for haproxy lb (jdetiber@redhat.com)
  1051. * Tue Mar 01 2016 Matt Woodson <mwoodson@redhat.com> 3.0.49-1
  1052. - fixed error in awsutil.py (mwoodson@redhat.com)
  1053. * Tue Mar 01 2016 Matt Woodson <mwoodson@redhat.com> 3.0.48-1
  1054. - ohi: added subtype searching (mwoodson@redhat.com)
  1055. - make heal remote actions generic for all [HEAL] triggers (jdiaz@redhat.com)
  1056. - added extra steps to ensure docker starts up (mwoodson@redhat.com)
  1057. - role_removal: docker_storage; This is the old way, no longer used
  1058. (mwoodson@redhat.com)
  1059. - role: added docker_storage_setup (mwoodson@redhat.com)
  1060. - Use inventory_hostname for openshift master certs to sync.
  1061. (abutcher@redhat.com)
  1062. - Adding a symlink to making loading the examples more convenient
  1063. (bleanhar@redhat.com)
  1064. - docs: Explain a bit more how to expand Atomic Host rootfs
  1065. (walters@verbum.org)
  1066. - a-o-i: Rename osm_default_subdomain (smunilla@redhat.com)
  1067. - Updating tito config for OSE 3.2 (bleanhar@redhat.com)
  1068. - Synchronize master kube configs (abutcher@redhat.com)
  1069. - added os_utils, os_reboot_server role; removed containerization stuff from
  1070. the updated (mwoodson@redhat.com)
  1071. - Add warnings to bin/cluster and READMEs (abutcher@redhat.com)
  1072. - Add host subnet length example. (abutcher@redhat.com)
  1073. - Upgrade -1510 to CentOS-7-x86_64-GenericCloud-1602. (cben@redhat.com)
  1074. - Pin down CentOS-7-x86_64-GenericCloud-1510.qcow2.xz version, which the
  1075. checksum currently expects (#1384). (cben@redhat.com)
  1076. - Change is_atomic to is_containerized (florian.lambert@enovance.com)
  1077. - Rename variable to openshift_master_default_subdomain with backwards
  1078. compatibility. (jstuever@redhat.com)
  1079. - lib_dyn: more updates to the lib_dyn module. Made the TTL more flexible
  1080. (mwoodson@redhat.com)
  1081. - remote heal action for OVS down (jdiaz@redhat.com)
  1082. - Pass registry claim to openshift_registry. (abutcher@redhat.com)
  1083. - Refactor - increase retries instead of delay in "Wait for Node Registration"
  1084. (david.mat@archimiddle.com)
  1085. - Better diagnostic messages when an OpenStack heat stack creation fails
  1086. (lhuard@amadeus.com)
  1087. - made some changes to lib_dyn update (mwoodson@redhat.com)
  1088. - Increase timeout on Wait for Node Registration (david.mat@archimiddle.com)
  1089. - Fix typo in oscp (agrimm@redhat.com)
  1090. - Add correct parsing of ec2_security_groups env variable
  1091. (david.mat@archimiddle.com)
  1092. - changed oso_host_monitoring to use the oo_ vars (twiest@redhat.com)
  1093. - Add quotes around src argument to support paths with spaces
  1094. (david.mat@archimiddle.com)
  1095. - Add missing is_atomic condition on upgrade package
  1096. (florian.lambert@enovance.com)
  1097. - configure debug_level for master and node from cli (jawed.khelil@amadeus.com)
  1098. - remove version requirement from etcd, shouldn't be needed anymore
  1099. (maxamillion@fedoraproject.org)
  1100. - Add ansible.cfg to .gitignore (jdetiber@redhat.com)
  1101. - added node-secgroup to master_nodes (j.david.nieto@gmail.com)
  1102. - Document setting the VPC subnet (puiterwijk@redhat.com)
  1103. - Update the AMIs used in README_AWS (puiterwijk@redhat.com)
  1104. - Add byo examples for network cidr and api/console ports.
  1105. (abutcher@redhat.com)
  1106. - Add openshift_docker roles to master/node scaleup. (abutcher@redhat.com)
  1107. - Fail when master.master_count descreases or master.ha changes.
  1108. (abutcher@redhat.com)
  1109. - Protected facts. (abutcher@redhat.com)
  1110. - Add modify_yaml module. (abutcher@redhat.com)
  1111. - Re-arrange scaleup playbooks. (abutcher@redhat.com)
  1112. - Move additional master configuration into a separate master playbook.
  1113. (abutcher@redhat.com)
  1114. - Generate each master's certificates separately. (abutcher@redhat.com)
  1115. - Add new_masters to scaleup playbook. (abutcher@redhat.com)
  1116. * Wed Feb 24 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.47-1
  1117. - a-o-i: Double safety check on master_lb (smunilla@redhat.com)
  1118. - a-o-i: Better method for identifying master_lb (smunilla@redhat.com)
  1119. * Tue Feb 23 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.46-1
  1120. - a-o-i: Exception checking around master_lb (smunilla@redhat.com)
  1121. * Mon Feb 22 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.45-1
  1122. - Do not monitor for etcd watchers (mmahut@redhat.com)
  1123. - remove old master registry item/triggers (jdiaz@redhat.com)
  1124. - a-o-i: Redo logic for detecting master_lb (smunilla@redhat.com)
  1125. - Fix 1.2 version check (jdetiber@redhat.com)
  1126. - Fix pv/c creation failed_when. (abutcher@redhat.com)
  1127. - Rename variable to delete temporary file, add configurable path.
  1128. (hrosnet@redhat.com)
  1129. - Add /var/log to containerized node mounts (sdodson@redhat.com)
  1130. - Add extra parameters for S3 registry: delete file, create bucket.
  1131. (hrosnet@redhat.com)
  1132. - Don't make config files world readable (sdodson@redhat.com)
  1133. - Fix requiring state and providing a default (rharriso@redhat.com)
  1134. - bind in /etc/origin/node for non-master monitoring to be able to talk with
  1135. master (jdiaz@redhat.com)
  1136. - a-o-i: pylint fixes related to too-long lines (smunilla@redhat.com)
  1137. * Wed Feb 17 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.44-1
  1138. - create registry items/triggers under Openshift Node (jdiaz@redhat.com)
  1139. - a-o-i: Change method for counting master_lb as installed
  1140. (smunilla@redhat.com)
  1141. * Tue Feb 16 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.43-1
  1142. - Add default to state param (rharriso@redhat.com)
  1143. - Add type to record_type param (rharriso@redhat.com)
  1144. - Add types to module params (rharriso@redhat.com)
  1145. - Adding examples to the dyn_record module (rharriso@redhat.com)
  1146. - add item to track docker-registry pings (jdiaz@redhat.com)
  1147. - Handle case where the user already had access to the scc
  1148. (bleanhar@redhat.com)
  1149. - Refactoring the add-scc-to-user logic (bleanhar@redhat.com)
  1150. - Apply openshift_docker to nodes during scaleup. (abutcher@redhat.com)
  1151. - Change etcd deamon name for atomic-host (florian.lambert@enovance.com)
  1152. * Tue Feb 16 2016 Joel Diaz <jdiaz@redhat.com> 3.0.42-1
  1153. - Add gce softlink for openshift-ansible-bin
  1154. * Mon Feb 15 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.41-1
  1155. - Bug 1308411 - Fail to install OSE 3.0 for no add-scc-to-user command
  1156. (bleanhar@redhat.com)
  1157. - Add openshift_docker_options to append arbitrary options to
  1158. /etc/sysconfig/docker OPTIONS (sdodson@redhat.com)
  1159. - oo_filter: added custom fitler to return hosts group info
  1160. (mwoodson@redhat.com)
  1161. - add gce softlink for openshift-ansible-bin RPM (jdiaz@redhat.com)
  1162. - a-o-i: Count nativeha hosts as "installed" for scaleup (smunilla@redhat.com)
  1163. - a-o-i: Add master_routingconfig_subdomain to PERSIST_SETTINGS
  1164. (smunilla@redhat.com)
  1165. - Bug 1308412 - Fail to install containerized HA master env on RHEL7
  1166. (bleanhar@redhat.com)
  1167. - Bug 1308314 - Failed to continue installation when pressing CTRL-C
  1168. (bleanhar@redhat.com)
  1169. - Updating the 3.1.1 router to match the new liveness probe configuration
  1170. (bleanhar@redhat.com)
  1171. - Don't automatically give additional permissions to all OAuth users on upgrade
  1172. (jliggitt@redhat.com)
  1173. - Fix adhoc boostrap fedora playbook (jdetiber@redhat.com)
  1174. - Fix libvirt cluster creation (lhuard@amadeus.com)
  1175. - Add missing `type` node labels on OpenStack and libvirt (lhuard@amadeus.com)
  1176. - a-o-i: Prompts to allow minor upgrades (smunilla@redhat.com)
  1177. - conditionalize loopback config on v >= 3.2/1.2 (jdetiber@redhat.com)
  1178. - Fixes pv/pvc creation for latest builds (jdetiber@redhat.com)
  1179. - Bug 1302970 - update script does not patch router if name is different from
  1180. default (bleanhar@redhat.com)
  1181. - Fix loopback cluster name, context name, and user (jdetiber@redhat.com)
  1182. - Changes for new Nuage RPMS (vishal.patil@nuagenetworks.net)
  1183. - Make the GCE image_name and the machine_type configurable from the CLI
  1184. (lhuard@amadeus.com)
  1185. - Better structure the output of the list playbook (lhuard@amadeus.com)
  1186. - Fix issue when there are no infra nodes (lhuard@amadeus.com)
  1187. - Remove fluentd_master and fluentd_node roles. (abutcher@redhat.com)
  1188. - Remove etcd up checks from fluentd_master. (abutcher@redhat.com)
  1189. * Thu Feb 11 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.40-1
  1190. - Bug 1306665 - [metrics] update metrics-deployer template to use latest image
  1191. versions (bleanhar@redhat.com)
  1192. - Add organizations attribute to github identity provider (jdetiber@redhat.com)
  1193. - use correct dict key (jdiaz@redhat.com)
  1194. - handle being passed an empty group list (jdiaz@redhat.com)
  1195. - fix default value (jdetiber@redhat.com)
  1196. - removed notscheduleable trigger, it just makes noise in its current
  1197. incarnation (sten@redhat.com)
  1198. - trigger on two successive bad pid counts (jdiaz@redhat.com)
  1199. - added nodes not ready and nodes not schedulable triggers (sten@redhat.com)
  1200. - Enable selection of kubeproxy mode (vishal.patil@nuagenetworks.net)
  1201. - add default storage plugins to 'origin' deployment_type
  1202. (rvanveelen@tremorvideo.com)
  1203. - added nodes not ready and nodes not schedulable triggers (sten@redhat.com)
  1204. - Don't mask master service on atomic. (abutcher@redhat.com)
  1205. - update defaults and examples w/ iscsi plugin (rvanveelen@tremorvideo.com)
  1206. - add iscsi storage_plugin dependency (rvanveelen@tremorvideo.com)
  1207. - Add gte check for 3.2, update version checks to gte (jdetiber@redhat.com)
  1208. - Specify default namespace when creating router (pat2man@gmail.com)
  1209. - add missing connection:local (jdetiber@redhat.com)
  1210. - consolidate oo_first_master post-config a bit, fix some roles that use
  1211. openshift_facts without declaring a dependency (jdetiber@redhat.com)
  1212. - openshift_serviceaccounts updates (jdetiber@redhat.com)
  1213. - Fix infra_node deployment (jdetiber@redhat.com)
  1214. - changed registry checks to alert based on number of registries with problems
  1215. (sten@redhat.com)
  1216. - Fix a bug with existing CNAME records (rharriso@redhat.com)
  1217. - Fix HA typo in example AEP/OSE/Origin inventories (adellape@redhat.com)
  1218. - Updated the key for app create (kwoodson@redhat.com)
  1219. - Add missing atomic- and openshift-enterprise (pep@redhat.com)
  1220. - Fix enabling iptables for latest rhel versions (jdetiber@redhat.com)
  1221. - Make pod_eviction_timeout configurable from cli (jawed.khelil@amadeus.com)
  1222. * Tue Feb 09 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.39-1
  1223. - Bug 1304150 - Can't upgrade atomic-openshift to specified version
  1224. (bleanhar@redhat.com)
  1225. - Mask master service when using native ha (jdetiber@redhat.com)
  1226. - aoi: Safer check for master_routingconfig_subdomain (smunilla@redhat.com)
  1227. - Add a DNS server on OpenStack clusters (lhuard@amadeus.com)
  1228. - renamed /etc/openshift to /etc/origin (sten@redhat.com)
  1229. - gitignore : .tag* (atom editor tag files) (sdodson@redhat.com)
  1230. - Add an early check to ensure that node names resolve to an interface on the
  1231. host (sdodson@redhat.com)
  1232. - Allow compression option to be set to empty for non compressed QCow images
  1233. Support tgz and gzip compressed images (akram@free.fr)
  1234. - Replace status_changed bool (abutcher@redhat.com)
  1235. - Improve docs and consistency of setting the ssh_user (jdetiber@redhat.com)
  1236. - remove outdated comments (jdetiber@redhat.com)
  1237. - add etcd hosts for gce playbooks (jdetiber@redhat.com)
  1238. - GCE cloud provider updates (jdetiber@redhat.com)
  1239. - Remove extra nfs configuration. (abutcher@redhat.com)
  1240. - Do not apply the etcd_certificates role during node playbook.
  1241. (abutcher@redhat.com)
  1242. - Add g_new_node_hosts to cluster_hosts. (abutcher@redhat.com)
  1243. - Updating examples to use /etc/origin/master/htpasswd (jstuever@redhat.com)
  1244. - Refactor registry storage options. (abutcher@redhat.com)
  1245. - Additional overrides for cloud provider playbooks (jdetiber@redhat.com)
  1246. - Bring first etcd server up before others. (dgoodwin@redhat.com)
  1247. * Tue Feb 02 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.38-1
  1248. - aoi: Ask for osm_default_subdomain in interactive mode (smunilla@redhat.com)
  1249. - add item to hold number of stray OVS rules found/removed (jdiaz@redhat.com)
  1250. - changed adhoc playbook to match new host monitoring container
  1251. (mwoodson@redhat.com)
  1252. - Multi-master fixes for provider playbooks (jdetiber@redhat.com)
  1253. - zabbix: added master local api items and triggers (mwoodson@redhat.com)
  1254. - Added docs around oo_nodes_with_label (jdetiber@redhat.com)
  1255. - fix for terminate (jdetiber@redhat.com)
  1256. - Fix node tags for aws provider (jdetiber@redhat.com)
  1257. - use yaml for loading lable info instead of json (jdetiber@redhat.com)
  1258. - infra_node fixes (jdetiber@redhat.com)
  1259. - removing extraneous comments (rharriso@redhat.com)
  1260. - Remove commented lines and fix pylint check (rharriso@redhat.com)
  1261. - Cleaning up the dyn ansible module for merging (rharriso@redhat.com)
  1262. - Fix missing bool filter (sdodson@redhat.com)
  1263. - Sync platest imagestreams (sdodson@redhat.com)
  1264. - Fixing last pylint error (rharriso@redhat.com)
  1265. - Fix hostname for aws cloud provider (jdetiber@redhat.com)
  1266. - Fixing pylint errors (rharriso@redhat.com)
  1267. - Give openvswitch container some time to start (jprovazn@redhat.com)
  1268. - s3_registry no filter named 'lookup' (florian.lambert@enovance.com)
  1269. - WIP adding the lib_dyn role for the dyn_record module (rharriso@redhat.com)
  1270. * Fri Jan 29 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.37-1
  1271. - Adding ip address option (kwoodson@redhat.com)
  1272. - Enable cockpit when not is_atomic. (abutcher@redhat.com)
  1273. - Explicitly restart the atomic node service after configuring it for nuage
  1274. (vishal.patil@nuagenetworks.net)
  1275. - Fix for bug 1298 (vishal.patil@nuagenetworks.net)
  1276. - fixing logic for skipping symlinks (kwoodson@redhat.com)
  1277. - Allow to have custom bucket name and region (florian.lambert@enovance.com)
  1278. - Add inventory example for logrotate_scripts (abutcher@redhat.com)
  1279. - Minor readme cleanup for Bug 1271566 (bleanhar@redhat.com)
  1280. - fix template trigger calc (jdiaz@redhat.com)
  1281. - Configure logrotate on atomic. (abutcher@redhat.com)
  1282. - Comparing zbx_host interfaces and removing duplicate hostgroup_names
  1283. (kwoodson@redhat.com)
  1284. - Dockerfile: Require pyOpenSSL (gscrivan@redhat.com)
  1285. - replace yum with dnf (spartacus06@gmail.com)
  1286. - Install cockpit, logrotate and fluentd unless host is atomic.
  1287. (abutcher@redhat.com)
  1288. - zabbix: added the skydns items and triggers (mwoodson@redhat.com)
  1289. - fix pkg_version (spinolacastro@gmail.com)
  1290. - Expose data_dir (spinolacastro@gmail.com)
  1291. - Fix checking for update package availability (nikolai@prokoschenko.de)
  1292. - Fix oo_pretty_print_cluster following the renaming of `env` into `clusterid`
  1293. (lhuard@amadeus.com)
  1294. - Ensure openssl present for etcd_ca (jdetiber@redhat.com)
  1295. - Update Docs and test for testing ansible version (jdetiber@redhat.com)
  1296. - Add Nuage support to openshift ansible (vishpat@gmail.com)
  1297. - Updating for host monitoring HA masters (kwoodson@redhat.com)
  1298. - adhoc s3 registry - add auth part in the registry config sample
  1299. (gael.lambert@enovance.com)
  1300. - Move the `is_atomic` check from `update_repos_and_packages.yml` to
  1301. `rhel_subscribe` (lhuard@amadeus.com)
  1302. - Increase OpenStack stack creation/deletion timeout (lhuard@amadeus.com)
  1303. * Mon Jan 25 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.36-1
  1304. - Fixing awsutil to support aliases and v3 (kwoodson@redhat.com)
  1305. - Fail when master restart playbook finds no active masters rather than any
  1306. failed masters. (abutcher@redhat.com)
  1307. - Skipping any symlinks for the yaml validation check (kwoodson@redhat.com)
  1308. - Added template for config loop. (twiest@redhat.com)
  1309. - Test validate_pcs_cluster input is basestring instead of str.
  1310. (abutcher@redhat.com)
  1311. - Fix error when oo_masters_to_config is empty (jdetiber@redhat.com)
  1312. - Update inventory examples for console customization (spinolacastro@gmail.com)
  1313. - Expose console config for customization (spinolacastro@gmail.com)
  1314. - oso_host_monitoring: added environment as a var to the host monitoring
  1315. systemd script (mwoodson@redhat.com)
  1316. - Check master certificates during upgrade. (abutcher@redhat.com)
  1317. - Use haproxy frontend port for os_firewall. (abutcher@redhat.com)
  1318. - Fix native master api sysconfig. (abutcher@redhat.com)
  1319. - Enable kubernetes master config of podEvictionTimeout from ansible
  1320. (jstuever@redhat.com)
  1321. - Fix wrapper pathing for non-root user install. (abutcher@redhat.com)
  1322. - Remove camel case for bin/cluster addNodes (jdetiber@redhat.com)
  1323. - Update cluster_hosts.yml for cloud providers (jdetiber@redhat.com)
  1324. - Removing ruby scripts and replacing with python. (kwoodson@redhat.com)
  1325. - Fixed a logic bug and yaml load (kwoodson@redhat.com)
  1326. - Fixing yaml validation in python. Inputs behave differently as does glob
  1327. (kwoodson@redhat.com)
  1328. - oso_monitoring: add the zabbix libs (mwoodson@redhat.com)
  1329. - Removing removing scripts and moving to python. (kwoodson@redhat.com)
  1330. - add ability to disable ztriggers and disable new container dns check
  1331. (jdiaz@redhat.com)
  1332. - Remove default disable of SDN for GCE (jdetiber@redhat.com)
  1333. - Fix hardcoded api_port in openshift_master_cluster (jdetiber@redhat.com)
  1334. - Use local address for loopback kubeconfig (jdetiber@redhat.com)
  1335. - consolidate steps and cleanup template dir (jdetiber@redhat.com)
  1336. - v3_0_to_v3_1_upgrade: Remove is_atomic check for upgrades
  1337. (smunilla@redhat.com)
  1338. - v3_0_to_v3_1_upgrade: Copy tasks rather than including from the playbook
  1339. (smunilla@redhat.com)
  1340. - v3_0_to_v3_1_upgrade: Install storage packages (smunilla@redhat.com)
  1341. - Controllers_port and firewall rules (spinolacastro@gmail.com)
  1342. - Fix bind address/port when isn't default (spinolacastro@gmail.com)
  1343. - Add ability to disable os_firewall (jdetiber@redhat.com)
  1344. * Mon Jan 18 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.35-1
  1345. - added the lib_timedate role (mwoodson@redhat.com)
  1346. - added chrony (mwoodson@redhat.com)
  1347. - added oso_moniotoring tools role (mwoodson@redhat.com)
  1348. - Improve pacemaker 'is-active' check. (abutcher@redhat.com)
  1349. * Mon Jan 18 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.34-1
  1350. - clean up too-many-branches / logic (jdiaz@redhat.com)
  1351. - atomic-openshift-installer: add containerized to inventory
  1352. (smunilla@redhat.com)
  1353. - Add 'unknown' to possible output for the is-active check.
  1354. (abutcher@redhat.com)
  1355. - Fix cluster_method conditional in master restart playbook.
  1356. (abutcher@redhat.com)
  1357. - Use IdentityFile instead of PrivateKey (donovan.muller@gmail.com)
  1358. - atomic-openshift-installer: Remove containerized install for 3.0
  1359. (smunilla@redhat.com)
  1360. - Host group should be OSEv3 not OSv3 (donovan.muller@gmail.com)
  1361. - Remove pause after haproxy start (abutcher@redhat.com)
  1362. - Ensure nfs-utils installed for non-atomic hosts. (abutcher@redhat.com)
  1363. * Fri Jan 15 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.33-1
  1364. - Configure nodes which are also masters prior to nodes in containerized
  1365. install. (abutcher@redhat.com)
  1366. - Call attention to openshift_master_rolling_restart_mode variable in restart
  1367. prompt. (abutcher@redhat.com)
  1368. - Added anchors for rules in style_guide.adoc in order to make it easier to
  1369. reference specific rules in PRs. (twiest@redhat.com)
  1370. - Update ec2.ini (jdetiber@redhat.com)
  1371. * Thu Jan 14 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.32-1
  1372. - Uninstall remove containerized wrapper and symlinks (abutcher@redhat.com)
  1373. * Thu Jan 14 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.31-1
  1374. - Check api prior to starting node. (abutcher@redhat.com)
  1375. - added anchors (twiest@redhat.com)
  1376. * Wed Jan 13 2016 Joel Diaz <jdiaz@redhat.com> 3.0.30-1
  1377. - Add -A and detail --v3 flags
  1378. * Wed Jan 13 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.29-1
  1379. - 3.1.1 upgrade playbook (bleanhar@redhat.com)
  1380. - Updated help menu for v3 flag (kwoodson@redhat.com)
  1381. - Add wait in between api and controllers start for native ha.
  1382. (abutcher@redhat.com)
  1383. - atomic-openshift-installer: Error handling for unicode hostnames
  1384. (smunilla@redhat.com)
  1385. - Update api verification. (abutcher@redhat.com)
  1386. - Add a Verify API Server handler that waits for the API server to become
  1387. available (sdodson@redhat.com)
  1388. - Add -A parameter to forward ssh agent (jdiaz@redhat.com)
  1389. - Validate pacemaker cluster members. (abutcher@redhat.com)
  1390. - Removed atomic host check (kwoodson@redhat.com)
  1391. - Add is_containerized inputs to nosetests. (abutcher@redhat.com)
  1392. - Add wait for API before starting controllers w/ native ha install.
  1393. (abutcher@redhat.com)
  1394. - Fix for to_padded_yaml filter (jdetiber@redhat.com)
  1395. - - sqashed to one commit (llange@redhat.com)
  1396. - Switch to using hostnamectl as it works on atomic and rhel7
  1397. (sdodson@redhat.com)
  1398. - Update rolling restart playbook for pacemaker support. Replace fail with a
  1399. warn and prompt if running ansible from a host that will be rebooted. Re-
  1400. organize playbooks. (abutcher@redhat.com)
  1401. - Implement simple master rolling restarts. (dgoodwin@redhat.com)
  1402. - re-enable containerize installs (sdodson@redhat.com)
  1403. - Set portal net in master playbook (jdetiber@redhat.com)
  1404. - Set the cli image to match osm_image in openshift_cli role
  1405. (sdodson@redhat.com)
  1406. - atomic-openshift-installer: Populate new_nodes group (smunilla@redhat.com)
  1407. - Always pull docker images (sdodson@redhat.com)
  1408. * Mon Jan 11 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.28-1
  1409. - added the rhe7-host-monitoring service file (mwoodson@redhat.com)
  1410. - Fixing tab completion for latest metadata changes (kwoodson@redhat.com)
  1411. - Removing some internal hostnames (bleanhar@redhat.com)
  1412. - Fixing tab completion for latest metadata changes (kwoodson@redhat.com)
  1413. - Make bin/cluster able to spawn OSE 3.1 clusters (lhuard@amadeus.com)
  1414. - oso_host_monitoring role: removed the f22 and zagg client, replaced it with
  1415. oso-rhel7-host-monitoring container (mwoodson@redhat.com)
  1416. * Fri Jan 08 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.27-1
  1417. - Update to metadata tooling. (kwoodson@redhat.com)
  1418. - Fix VM drive cleanup during terminate on libvirt (lhuard@amadeus.com)
  1419. * Fri Jan 08 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.26-1
  1420. - Bug 1296388 - fixing typo (bleanhar@redhat.com)
  1421. * Thu Jan 07 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.25-1
  1422. - Bug 1296388 - The playbook still configure ManageIQ when
  1423. openshift_use_manageiq is false (bleanhar@redhat.com)
  1424. - Add a banner to CLI wrapper instructing users that it's only for
  1425. bootstrapping (sdodson@redhat.com)
  1426. - Rename env into clusterid and add environment in the OpenStack VMs tags
  1427. (lhuard@amadeus.com)
  1428. - Fix terminate.yml on OpenStack (lhuard@amadeus.com)
  1429. - Install gluster and ceph packages when containerized but not atomic
  1430. (sdodson@redhat.com)
  1431. - Update openshift_facts config_base for Online deployments (whearn@redhat.com)
  1432. - Fix multi-word arguments & cli wrapper stdin plumbing (sdodson@redhat.com)
  1433. - Improve 3.1/1.1 upgrade check (jdetiber@redhat.com)
  1434. * Thu Jan 07 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.24-1
  1435. - Setting relative paths in the upgrade playbooks wasn't working
  1436. (bleanhar@redhat.com)
  1437. * Wed Jan 06 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.23-1
  1438. - Move extra secret validations into openshift_facts. (abutcher@redhat.com)
  1439. - Remove not is_containerized restriction on storage plugin includes.
  1440. (abutcher@redhat.com)
  1441. - We can't enable manageiq for installations less than OSE 3.1 or Origin 1.1
  1442. (bleanhar@redhat.com)
  1443. - Fix RHN subscription by explicitly attaching to the right pool
  1444. (lhuard@amadeus.com)
  1445. - openshift_facts validation (abutcher@redhat.com)
  1446. - Secrets validation. (abutcher@redhat.com)
  1447. - Clean up idempotency issues with session secrets. (abutcher@redhat.com)
  1448. * Wed Jan 06 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.22-1
  1449. - playbook for restarting SDN (jdiaz@redhat.com)
  1450. - Stop haproxy and remove package during uninstall. (abutcher@redhat.com)
  1451. - Group name as per hosts.origin.example (donovan.muller@gmail.com)
  1452. - I believe the ami id changed since the initial documentation was created for
  1453. AWS deployment (rcook@redhat.com)
  1454. * Tue Jan 05 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.21-1
  1455. - Fix osm_controller_args and osm_api_server_args settings.
  1456. (abutcher@redhat.com)
  1457. - Fix error in byo cluster_hosts.yml (jdetiber@redhat.com)
  1458. - Cleanup and fixes for cluster_id change (jdetiber@redhat.com)
  1459. - Fix typo in etcd service status fact. (abutcher@redhat.com)
  1460. - Removing environment and env tags. (kwoodson@redhat.com)
  1461. - Add node kubelet args to inventory examples. (abutcher@redhat.com)
  1462. - Adding ManageIQ service account by default (efreiber@redhat.com)
  1463. - Fixes typo assigning docker_service_status_changed which leads to
  1464. misinterpretation in handler. (eric.mountain@amadeus.com)
  1465. - Fix restart handlers. (abutcher@redhat.com)
  1466. - Remove lb from docker hosts. (abutcher@redhat.com)
  1467. - Install iptables, iptables-services when not is_aotmic (sdodson@redhat.com)
  1468. - Install all xpaas streams when enabled (sdodson@redhat.com)
  1469. - add the necessary URLs for logging and metrics
  1470. (git001@users.noreply.github.com)
  1471. - Link to Tito Home Page is Broken (lloy0076@adam.com.au)
  1472. - Conditionalize for 3.1.1/1.1.1 (abutcher@redhat.com)
  1473. - Use notify for workaround controllers unit. (abutcher@redhat.com)
  1474. - change dns triggers to average (jdiaz@redhat.com)
  1475. - add item/trigger for dns tests on all currently running containers
  1476. (jdiaz@redhat.com)
  1477. - Add jboss-fuse/application-templates/fis-image-streams.json
  1478. (sdodson@redhat.com)
  1479. - atomic-openshift-installer: Fix broken nosetest (smunilla@redhat.com)
  1480. - Update from jboss-openshift/application-templates ose-v1.2.0-1
  1481. (sdodson@redhat.com)
  1482. - fix logic to tolerate occasional failures (jdiaz@redhat.com)
  1483. - Clean up versions.sh (sdodson@redhat.com)
  1484. - change ovs mount to /var/run/openvswitch will not require a container restart
  1485. if openvswitch service is restarted (jdiaz@redhat.com)
  1486. - split zagg.server.processor.errors into separate heartbeat and metrics error
  1487. items (needed since the scripts are split now). (twiest@redhat.com)
  1488. - quick installer tests (smunilla@redhat.com)
  1489. - atomic-openshift-installer: Remove HA hint for 3.0 install
  1490. (smunilla@redhat.com)
  1491. - Add some guards to wait for images to be pulled before moving on
  1492. (sdodson@redhat.com)
  1493. - Install httpd-tools when not is_atomic (sdodson@redhat.com)
  1494. - Properly set use_flannel fact (sbaubeau@redhat.com)
  1495. - Fix containerized variable (sdodson@redhat.com)
  1496. - Skip yum/dnf ops when is_containerized (sdodson@redhat.com)
  1497. - Move all docker config into openshift_docker to minimize docker restarts
  1498. (sdodson@redhat.com)
  1499. - Create nfs host group with registry volume attachment. (abutcher@redhat.com)
  1500. - Add openshift_cli role (sdodson@redhat.com)
  1501. - pull docker images only if not already present (jdetiber@redhat.com)
  1502. - fixes (jdetiber@redhat.com)
  1503. - Containerization work by @sdodson (sdodson@redhat.com)
  1504. - Initial containerization work from @ibotty (tob@butter.sh)
  1505. - Add zabbix values to track docker container DNS results (jdiaz@redhat.com)
  1506. - Fix registry modification for new deployment types. (dgoodwin@redhat.com)
  1507. - Updates to ohi to pull cache if specified. Also require version
  1508. (kwoodson@redhat.com)
  1509. - Zabbix: added trigger to monitor app create over the last hour
  1510. (mwoodson@redhat.com)
  1511. - added 'Template Zagg Server' (twiest@redhat.com)
  1512. - Fixes typo when setting facts to record whether master/node has been
  1513. restarted already, to decide whether notify handler should do so or not.
  1514. Currently, this causes random SDN network setup failures as openshift-node
  1515. gets restarted while the setup script is running, and the subsequent start
  1516. fails to configure the SDN because it thinks it's already done.
  1517. (eric.mountain@amadeus.com)
  1518. - Change controllers service type to simple. (abutcher@redhat.com)
  1519. - Updating env-host-type to host patterns (kwoodson@redhat.com)
  1520. - Add note that Fedora 23+ is acceptable deployment target for origin
  1521. (admiller@redhat.com)
  1522. - Enforce connection: local and become: no on all localhost plays
  1523. (jdetiber@redhat.com)
  1524. - Use join for the uncompress command. (jsteffan@fedoraproject.org)
  1525. - Update for latest CentOS-7-x86_64-GenericCloud. - Use xz compressed image -
  1526. Update sha256 for new image - Update docs to reflect new settings
  1527. (jsteffan@fedoraproject.org)
  1528. * Thu Dec 10 2015 Thomas Wiest <twiest@redhat.com> 3.0.20-1
  1529. - Revert "Automatic commit of package [openshift-ansible] release [3.0.20-1]."
  1530. (twiest@redhat.com)
  1531. - Automatic commit of package [openshift-ansible] release [3.0.20-1].
  1532. (twiest@redhat.com)
  1533. - Install base package in openshift_common for version facts
  1534. (abutcher@redhat.com)
  1535. - Make the install of openshift_examples optional (jtslear@gmail.com)
  1536. - add support for remote command actions no support for anything but custom
  1537. scripts at this time (jdiaz@redhat.com)
  1538. - Remove yum / dnf duplication (sdodson@redhat.com)
  1539. - Remove hacluster user during uninstall. (abutcher@redhat.com)
  1540. - Simplify session secrets overrides. (abutcher@redhat.com)
  1541. - Squash pcs install into one task. (abutcher@redhat.com)
  1542. - Bump ansible requirement to 1.9.4 (sdodson@redhat.com)
  1543. * Wed Dec 09 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.19-1
  1544. - Fix version dependent image streams (sdodson@redhat.com)
  1545. - atomic-openshift-installer: Error handling on yaml loading
  1546. (smunilla@redhat.com)
  1547. - Betterize AWS readme (jtslear@gmail.com)
  1548. * Tue Dec 08 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.18-1
  1549. - Pass in and use first_master_ip as dnsIP for pre 3.1 nodes.
  1550. (abutcher@redhat.com)
  1551. - Fix delete state (jdiaz@redhat.com)
  1552. - Require pyOpenSSL (sdodson@redhat.com)
  1553. - Update sync db-templates, image-streams, and quickstart-templates
  1554. (sdodson@redhat.com)
  1555. - Clarify the preflight port check output (sdodson@redhat.com)
  1556. - Fix missing dependency version locking (sdodson@redhat.com)
  1557. * Tue Dec 08 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.17-1
  1558. - Improving output when gathering facts (bleanhar@redhat.com)
  1559. - Bug 1287977 - Incorrect check output from atomic-openshift-installer when
  1560. working with preconfigured load balancer (bleanhar@redhat.com)
  1561. - Add unique AEP, OSE, and Origin BYO inventories (sdodson@redhat.com)
  1562. - bring the docker udev workaround into openshift-ansible.git
  1563. (jdiaz@redhat.com)
  1564. - Zabbix: put in a note about trigger prototype dependency
  1565. (mwoodson@redhat.com)
  1566. - Zabbix: added dependency for inode disk check (mwoodson@redhat.com)
  1567. - Zabbix: added dependency for disk check (mwoodson@redhat.com)
  1568. - zabbix: removed ethernet graphs (mwoodson@redhat.com)
  1569. - Zabbix: added trigger dependencies to certain master checks
  1570. (mwoodson@redhat.com)
  1571. - ManageIQ Service Account: added role for ManageIQ service account
  1572. (efreiber@redhat.com)
  1573. - added the pv zabbix keys (mwoodson@redhat.com)
  1574. - Refactor dns options and facts. (abutcher@redhat.com)
  1575. - Fix openshift_facts playbook for yum/dnf changes (jdetiber@redhat.com)
  1576. - Configured master count should be 1 for pacemaker ha. (abutcher@redhat.com)
  1577. - Fedora changes: (admiller@redhat.com)
  1578. - Centralize etcd/schedulability logic for each host. (dgoodwin@redhat.com)
  1579. - added upgrade playbook for online (sedgar@redhat.com)
  1580. - Improved installation summary. (dgoodwin@redhat.com)
  1581. - Fix kubernetes service ip gathering. (abutcher@redhat.com)
  1582. - added docker registry cluster check (mwoodson@redhat.com)
  1583. - Add warning for HA deployments with < 3 dedicated nodes.
  1584. (dgoodwin@redhat.com)
  1585. - Cleanup more schedulable typos. (dgoodwin@redhat.com)
  1586. - Fix validation for BasicAuthPasswordIdentityProvider (tschan@puzzle.ch)
  1587. - Fix ec2 instance type lookups (jdetiber@redhat.com)
  1588. - remove debug logging from scc/privileged patch command (jdetiber@redhat.com)
  1589. - Set api version for oc commands (jdetiber@redhat.com)
  1590. - 3.1 upgrade - use --api-version for patch commands (jdetiber@redhat.com)
  1591. - Fix bug when warning on no dedicated nodes. (dgoodwin@redhat.com)
  1592. - Suggest dedicated nodes for an HA deployment. (dgoodwin@redhat.com)
  1593. - Error out if no load balancer specified. (dgoodwin@redhat.com)
  1594. - Adjust requirement for 3 masters for HA deployments. (dgoodwin@redhat.com)
  1595. - Fixing 'unscheduleable' typo (bleanhar@redhat.com)
  1596. - Update IMAGE_PREFIX and IMAGE_VERSION values in hawkular template
  1597. (nakayamakenjiro@gmail.com)
  1598. - Improved output when re-running after editing config. (dgoodwin@redhat.com)
  1599. - Print a system summary after adding each. (dgoodwin@redhat.com)
  1600. - Text improvements for host specification. (dgoodwin@redhat.com)
  1601. - Assert etcd section written for HA installs. (dgoodwin@redhat.com)
  1602. - Breakout a test fixture to reduce module size. (dgoodwin@redhat.com)
  1603. - Pylint touchups. (dgoodwin@redhat.com)
  1604. - Trim assertions in HA testing. (dgoodwin@redhat.com)
  1605. - Test unattended HA quick install. (dgoodwin@redhat.com)
  1606. - Don't prompt to continue during unattended installs. (dgoodwin@redhat.com)
  1607. - Block re-use of master/node as load balancer in attended install.
  1608. (dgoodwin@redhat.com)
  1609. - Add -q flag to remove unwantend output (such as mirror and cache information)
  1610. (urs.breu@ergon.ch)
  1611. - Uninstall: only restart docker on node hosts. (abutcher@redhat.com)
  1612. - Explicitly set schedulable when masters == nodes. (dgoodwin@redhat.com)
  1613. - Use admin.kubeconfig for get svc ip. (abutcher@redhat.com)
  1614. - Point enterprise metrics at registry.access.redhat.com/openshift3/metrics-
  1615. (sdodson@redhat.com)
  1616. - Make sure that OpenSSL is installed before use (fsimonce@redhat.com)
  1617. - fixes for installer wrapper scaleup (jdetiber@redhat.com)
  1618. - addtl aws fixes (jdetiber@redhat.com)
  1619. - Fix failure when seboolean not present (jdetiber@redhat.com)
  1620. - fix addNodes.yml (jdetiber@redhat.com)
  1621. - more aws support for scaleup (jdetiber@redhat.com)
  1622. - start of aws scaleup (jdetiber@redhat.com)
  1623. - Improve scaleup playbook (jdetiber@redhat.com)
  1624. - Update openshift_repos to refresh package cache on changes
  1625. (jdetiber@redhat.com)
  1626. - Add etcd nodes management in OpenStack (lhuard@amadeus.com)
  1627. * Tue Nov 24 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.16-1
  1628. - Silencing pylint branch errors for now for the atomic-openshift-installer
  1629. harness (bleanhar@redhat.com)
  1630. - Properly setting scheduleability for HA Master scenarios
  1631. (bleanhar@redhat.com)
  1632. - added graphs (mwoodson@redhat.com)
  1633. - Rework setting of hostname (jdetiber@redhat.com)
  1634. - Fixed a bug in the actions. It now supports changing opconditions
  1635. (kwoodson@redhat.com)
  1636. - Conditionally set the nodeIP (jdetiber@redhat.com)
  1637. - Bug 1284991 - "atomic-openshift-installer uninstall" error when configuration
  1638. file is missing. (bleanhar@redhat.com)
  1639. - Avoid printing the master and node totals in the add-a-node scenario
  1640. (bleanhar@redhat.com)
  1641. - Fixing tests for quick_ha (bleanhar@redhat.com)
  1642. - Removing a debug line (bleanhar@redhat.com)
  1643. - atomic-openshift-installer: Fix lint issue (smunilla@redhat.com)
  1644. - Handling preconfigured load balancers (bleanhar@redhat.com)
  1645. - atomic-openshift-installer: Rename ha_proxy (smunilla@redhat.com)
  1646. - atomic-openshift-installer: Reverse version and host collection
  1647. (smunilla@redhat.com)
  1648. - cli_installer_tests: Add test for unattended quick HA (smunilla@redhat.com)
  1649. - Breakup inventory writing (smunilla@redhat.com)
  1650. - Enforce 1 or 3 masters (smunilla@redhat.com)
  1651. - Add interactive test (smunilla@redhat.com)
  1652. - atomic-openshift-installer: HA for quick installer (smunilla@redhat.com)
  1653. - Adding zbx_graph support (kwoodson@redhat.com)
  1654. - Modified step params to be in order when passed as a list
  1655. (kwoodson@redhat.com)
  1656. - Add serviceAccountConfig.masterCA during 3.1 upgrade (jdetiber@redhat.com)
  1657. - Use the identity_providers from openshift_facts instead of always using the
  1658. inventory variable (jdetiber@redhat.com)
  1659. - Refactor master identity provider configuration (jdetiber@redhat.com)
  1660. * Fri Nov 20 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.15-1
  1661. - Fixing clone group functionality. Also separating extra_vars from
  1662. extra_groups (kwoodson@redhat.com)
  1663. - Check the end result on bad config file (smunilla@redhat.com)
  1664. - Add some tests for a bad config (smunilla@redhat.com)
  1665. - atomic-openshift-installer: connect_to error handling (smunilla@redhat.com)
  1666. - atomic-openshift-installer: pylint fixes (smunilla@redhat.com)
  1667. - Replace map with oo_collect to support python-jinja2 <2.7
  1668. (abutcher@redhat.com)
  1669. - Making the uninstall playbook more flexible (bleanhar@redhat.com)
  1670. - Install version dependent image streams for v1.0 and v1.1
  1671. (sdodson@redhat.com)
  1672. - Do not update the hostname (jdetiber@redhat.com)
  1673. - Pylint fix for long line in cli docstring. (dgoodwin@redhat.com)
  1674. - Default to installing OSE 3.1 instead of 3.0. (dgoodwin@redhat.com)
  1675. - Fix tests on systems with openshift-ansible rpms installed.
  1676. (dgoodwin@redhat.com)
  1677. * Thu Nov 19 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.14-1
  1678. - added metric items to zabbix for openshift online (mwoodson@redhat.com)
  1679. - Updating usergroups to accept users (kwoodson@redhat.com)
  1680. - Differentiate machine types on GCE (master and nodes)
  1681. (romain.dossin@amadeus.com)
  1682. - Uninstall - Remove systemd wants file for node (jdetiber@redhat.com)
  1683. - ec2 - force !requiretty for ssh_user (jdetiber@redhat.com)
  1684. - small tweaks for adding docker volume for aws master hosts
  1685. (jdetiber@redhat.com)
  1686. - Created role to deploy ops host monitoring (jdiaz@redhat.com)
  1687. - Update certificate paths when 'names' key is provided. (abutcher@redhat.com)
  1688. - add a volume on master host, in AWS provisioning (chengcheng.mu@amadeus.com)
  1689. - First attempt at adding web scenarios (kwoodson@redhat.com)
  1690. - Use field numbers for all formats in bin/cluster for python 2.6
  1691. (abutcher@redhat.com)
  1692. - atomic-openshift-installer: Correct single master case (smunilla@redhat.com)
  1693. - added copr-openshift-ansible releaser, removed old rel-eng stuff.
  1694. (twiest@redhat.com)
  1695. - changed counter -> count (mwoodson@redhat.com)
  1696. - Updating zbx_item classes to support data types for bool.
  1697. (kwoodson@redhat.com)
  1698. - Fix ec2 instance type override (jdetiber@redhat.com)
  1699. - updated my check to support the boolean data type (mwoodson@redhat.com)
  1700. - Add additive_facts_to_overwrite instead of overwriting all additive_facts
  1701. (abutcher@redhat.com)
  1702. - added healthz check and more pod count checks (mwoodson@redhat.com)
  1703. - updating to the latest ec2.py (and re-patching with our changes).
  1704. (twiest@redhat.com)
  1705. - atomic-openshift-installer: Temporarily restrict to single master
  1706. (smunilla@redhat.com)
  1707. - openshift-ansible: Correct variable (smunilla@redhat.com)
  1708. - Refactor named certificates. (abutcher@redhat.com)
  1709. - atomic-openshift-utils: Version lock playbooks (smunilla@redhat.com)
  1710. - Add the native ha services and configs to uninstall (jdetiber@redhat.com)
  1711. - Bug 1282336 - Add additional seboolean for gluster (jdetiber@redhat.com)
  1712. - Raise lifetime to 2 weeks for dynamic AWS items (jdiaz@redhat.com)
  1713. - bin/cluster fix python 2.6 issue (jdetiber@redhat.com)
  1714. - cluster list: break host types by subtype (lhuard@amadeus.com)
  1715. - README_AWS: Add needed dependency (c.witt.1900@gmail.com)
  1716. - Fix invalid sudo command test (takayoshi@gmail.com)
  1717. - Docs: Fedora: Add missing dependencies and update to dnf. (public@omeid.me)
  1718. - Gate upgrade steps for 3.0 to 3.1 upgrade (jdetiber@redhat.com)
  1719. - added the tito and copr_cli roles (twiest@redhat.com)
  1720. - pylint openshift_facts (jdetiber@redhat.com)
  1721. - Update etcd default facts setting (jdetiber@redhat.com)
  1722. - Update master facts prior to upgrading incase facts are missing.
  1723. (abutcher@redhat.com)
  1724. - pre-upgrade-check: differentiates between port and targetPort in output
  1725. (smilner@redhat.com)
  1726. - Better structure the output of the list playbook (lhuard@amadeus.com)
  1727. - Add the sub-host-type tag to the libvirt VMs (lhuard@amadeus.com)
  1728. - atomic-openshift-installer: Update nopwd sudo test (smunilla@redhat.com)
  1729. - Fix pylint import errors for utils/test/. (dgoodwin@redhat.com)
  1730. - atomic-openshift-installer: Update prompts and help messages
  1731. (smunilla@redhat.com)
  1732. - Dependencies need to be added when a create occurs on SLA object.
  1733. (kwoodson@redhat.com)
  1734. - Test additions for cli_installer:get_hosts_to_install_on
  1735. (bleanhar@redhat.com)
  1736. - adding itservice (kwoodson@redhat.com)
  1737. - remove netaddr dependency (tob@butter.sh)
  1738. - Add pyOpenSSL to dependencies for Fedora. (public@omeid.me)
  1739. - Vagrant RHEL registration cleanup (pep@redhat.com)
  1740. - RH subscription: optional satellite and pkg update (pep@redhat.com)
  1741. * Tue Nov 17 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.13-1
  1742. - The aep3 images changed locations. (bleanhar@redhat.com)
  1743. - atomic-openshift-installer: Correct single master case (smunilla@redhat.com)
  1744. - atomic-openshift-installer: Temporarily restrict to single master
  1745. (smunilla@redhat.com)
  1746. * Wed Nov 11 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.12-1
  1747. - Sync with the latest image streams (sdodson@redhat.com)
  1748. * Wed Nov 11 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.11-1
  1749. - Migrate xpaas content from pre v1.1.0 (sdodson@redhat.com)
  1750. - Import latest xpaas templates and image streams (sdodson@redhat.com)
  1751. * Wed Nov 11 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.10-1
  1752. - Fix update error for templates that didn't previously exist
  1753. (jdetiber@redhat.com)
  1754. - General cleanup of v3_0_to_v3_1/upgrade.yml (jdetiber@redhat.com)
  1755. - Add zabbix pieces to hold AWS S3 bucket stats (jdiaz@redhat.com)
  1756. - add ansible dep to vagrant doc (jdetiber@redhat.com)
  1757. - oo_filter: don't fail when attribute is not defined (tob@butter.sh)
  1758. * Wed Nov 11 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.9-1
  1759. - Refactor upgrade playbook(s) (jdetiber@redhat.com)
  1760. * Tue Nov 10 2015 Scott Dodson <sdodson@redhat.com> 3.0.8-1
  1761. - Add origin-clients to uninstall playbook. (abutcher@redhat.com)
  1762. - examples: include logging and metrics infrastructure (lmeyer@redhat.com)
  1763. - Add separate step to enable services during upgrade. (dgoodwin@redhat.com)
  1764. - Update tests now that cli is not asking for rpm/container install
  1765. (smunilla@redhat.com)
  1766. - atomic-openshift-installer: Remove question for container install
  1767. (smunilla@redhat.com)
  1768. - Remove references to multi_ec2.py (jdetiber@redhat.com)
  1769. - 1279746: Fix leftover disabled features line in config template.
  1770. (dgoodwin@redhat.com)
  1771. - 1279734: Ensure services are enabled after upgrade. (dgoodwin@redhat.com)
  1772. - Fix missing etcd_data_dir bug. (dgoodwin@redhat.com)
  1773. - Package the default ansible.cfg with atomic-openshift-utils.
  1774. (dgoodwin@redhat.com)
  1775. - Add ldap auth identity provider to example inventory. (abutcher@redhat.com)
  1776. - Read etcd data dir from appropriate config file. (dgoodwin@redhat.com)
  1777. - atomic-openshift-installer: Generate inventory off hosts_to_run_on
  1778. (smunilla@redhat.com)
  1779. - Various fixes related to connect_to (bleanhar@redhat.com)
  1780. - Remove upgrade playbook restriction on 3.0.2. (dgoodwin@redhat.com)
  1781. - Conditionals for flannel etcd client certs. (abutcher@redhat.com)
  1782. - New `iptablesSyncPeriod` field in node configuration (abutcher@redhat.com)
  1783. - Fix indentation on when (jdetiber@redhat.com)
  1784. - Bug 1278863 - Error using openshift_pkg_version (jdetiber@redhat.com)
  1785. - more cleanup of names (mwoodson@redhat.com)
  1786. - Missing conditionals for api/controller sysconfig. (abutcher@redhat.com)
  1787. - Updating the atomic-openshift-isntaller local connection logic for the
  1788. connect_to addition. (bleanhar@redhat.com)
  1789. - cleaned up network checks (mwoodson@redhat.com)
  1790. - Minor upgrade improvements. (dgoodwin@redhat.com)
  1791. - Wait for cluster to recover after pcs resource restart. (abutcher@redhat.com)
  1792. - Bug 1278245 - Failed to add node to existing env using atomic-openshift-
  1793. installer (bleanhar@redhat.com)
  1794. - remove debug statement (jdetiber@redhat.com)
  1795. - Fix removal of kubernetesMasterConfig.apiLevels (jdetiber@redhat.com)
  1796. - atomic-openshift-installer: Better specification of ansible connection point
  1797. (smunilla@redhat.com)
  1798. - Fix issues related to upgrade packages being unavailable
  1799. (jdetiber@redhat.com)
  1800. - added network checks. also updated item prototype code to support more
  1801. (mwoodson@redhat.com)
  1802. - Fix data_dir for 3.0 deployments (jdetiber@redhat.com)
  1803. - Fix apiLevels modifications (jdetiber@redhat.com)
  1804. - Fix creation of origin symlink when dir already exists. (dgoodwin@redhat.com)
  1805. - apiLevel changes (jdetiber@redhat.com)
  1806. - Write new config to disk after successful upgrade. (dgoodwin@redhat.com)
  1807. - Fix pylint errors with getting hosts to run on. (dgoodwin@redhat.com)
  1808. - Remove v1beta3 by default for kube_nfs_volumes (jdetiber@redhat.com)
  1809. - Add pre-upgrade script to be run on first master. (dgoodwin@redhat.com)
  1810. - Start to handle pacemaker ha during upgrade (abutcher@redhat.com)
  1811. - Fix lb group related errors (jdetiber@redhat.com)
  1812. - Fix file check conditional. (abutcher@redhat.com)
  1813. - Don't check for certs in data_dir just raise when they can't be found. Fix
  1814. typo. (abutcher@redhat.com)
  1815. - exclude atomic-openshift-installer from bin subpackage (tdawson@redhat.com)
  1816. - add master_hostnames definition for upgrade (jdetiber@redhat.com)
  1817. - Additional upgrade enhancements (jdetiber@redhat.com)
  1818. - Handle backups for separate etcd hosts if necessary. (dgoodwin@redhat.com)
  1819. - Further upgrade improvements (jdetiber@redhat.com)
  1820. - Upgrade improvements (dgoodwin@redhat.com)
  1821. - Bug 1278243 - Confusing prompt from atomic-openshift-installer
  1822. (bleanhar@redhat.com)
  1823. - Bug 1278244 - Previously there was no way to add a node in unattended mode
  1824. (bleanhar@redhat.com)
  1825. - Revert to defaults (abutcher@redhat.com)
  1826. - Bug 1278244 - Incorrect node information gathered by atomic-openshift-
  1827. installer (bleanhar@redhat.com)
  1828. - atomic-openshift-installer's unattended mode wasn't work with --force for all
  1829. cases (bleanhar@redhat.com)
  1830. - Making it easier to use pre-release content (bleanhar@redhat.com)
  1831. - The uninstall playbook needs to remove /run/openshift-sdn
  1832. (bleanhar@redhat.com)
  1833. - Various HA changes for pacemaker and native methods. (abutcher@redhat.com)
  1834. - Bug 1274201 - Fixing non-root installations if using a local connection
  1835. (bleanhar@redhat.com)
  1836. - Bug 1274201 - Fixing sudo non-interactive test (bleanhar@redhat.com)
  1837. - Bug 1277592 - SDN MTU has hardcoded default (jdetiber@redhat.com)
  1838. - Atomic Enterprise/OpenShift Enterprise merge update (jdetiber@redhat.com)
  1839. - fix dueling controllers - without controllerLeaseTTL set in config, multiple
  1840. controllers will attempt to start (jdetiber@redhat.com)
  1841. - default to source persistence for haproxy (jdetiber@redhat.com)
  1842. - hardcode openshift binaries for now (jdetiber@redhat.com)
  1843. - more tweaks (jdetiber@redhat.com)
  1844. - more tweaks (jdetiber@redhat.com)
  1845. - additional ha related updates (jdetiber@redhat.com)
  1846. - additional native ha changes (abutcher@redhat.com)
  1847. - Start of true master ha (jdetiber@redhat.com)
  1848. - Atomic Enterprise related changes. (avagarwa@redhat.com)
  1849. - Remove pacemaker bits. (abutcher@redhat.com)
  1850. - Override hosts deployment_type fact for version we're upgrading to.
  1851. (dgoodwin@redhat.com)
  1852. - Pylint fixes for config upgrade module. (dgoodwin@redhat.com)
  1853. - Disable proxy cert config upgrade until certs being generated.
  1854. (dgoodwin@redhat.com)
  1855. - remove debug line (florian.lambert@enovance.com)
  1856. - [roles/openshift_master_certificates/tasks/main.yml] Fix variable
  1857. openshift.master.all_hostnames to openshift.common.all_hostnames
  1858. (florian.lambert@enovance.com)
  1859. - Fix bug with not upgrading openshift-master to atomic-openshift-master.
  1860. (dgoodwin@redhat.com)
  1861. - Adding aws and gce packages to ansible-inventory (kwoodson@redhat.com)
  1862. - Fix subpackage dependencies (jdetiber@redhat.com)
  1863. - Refactor common group evaluation to avoid duplication (jdetiber@redhat.com)
  1864. - common/openshift-cluster: Scaleup playbook (smunilla@redhat.com)
  1865. - Fix bug from module rename. (dgoodwin@redhat.com)
  1866. - Fix bug with default ansible playbook dir. (dgoodwin@redhat.com)
  1867. - Use the base package upgrade version so we can check things earlier.
  1868. (dgoodwin@redhat.com)
  1869. - Skip fail if enterprise deployment type depending on version.
  1870. (dgoodwin@redhat.com)
  1871. - Add debug output for location of etcd backup. (dgoodwin@redhat.com)
  1872. - Filter internal hostnames from the list of parsed names.
  1873. (abutcher@redhat.com)
  1874. - Move config upgrade to correct place, fix node facts. (dgoodwin@redhat.com)
  1875. - Add custom certificates to serving info in master configuration.
  1876. (abutcher@redhat.com)
  1877. - Add in proxyClientInfo if missing during config upgrade.
  1878. (dgoodwin@redhat.com)
  1879. - Implement master-config.yaml upgrade for v1beta3 apiLevel removal.
  1880. (dgoodwin@redhat.com)
  1881. - Fix installer upgrade bug following pylint fix. (dgoodwin@redhat.com)
  1882. - Document the new version field for installer config. (dgoodwin@redhat.com)
  1883. - Remove my username from some test data. (dgoodwin@redhat.com)
  1884. - Add a simple version for the installer config file. (dgoodwin@redhat.com)
  1885. - Pylint fix. (dgoodwin@redhat.com)
  1886. - Fix issue with master.proxy-client.{crt,key} and omit. (abutcher@redhat.com)
  1887. - initial module framework (jdetiber@redhat.com)
  1888. - Better info prior to initiating upgrade. (dgoodwin@redhat.com)
  1889. - Fix etcd backup bug with not-yet-created /var/lib/origin symlink
  1890. (dgoodwin@redhat.com)
  1891. - Print info after upgrade completes. (dgoodwin@redhat.com)
  1892. - Automatically upgrade legacy config files. (dgoodwin@redhat.com)
  1893. - Remove devel fail and let upgrade proceed. (dgoodwin@redhat.com)
  1894. - Add utils subpackage missing dep on openshift-ansible-roles.
  1895. (dgoodwin@redhat.com)
  1896. - Generate timestamped etcd backups. (dgoodwin@redhat.com)
  1897. - Add etcd_data_dir fact. (dgoodwin@redhat.com)
  1898. - Functional disk space checking for etcd backup. (dgoodwin@redhat.com)
  1899. - First cut at checking available disk space for etcd backup.
  1900. (dgoodwin@redhat.com)
  1901. - Block upgrade if targetting enterprise deployment type. (dgoodwin@redhat.com)
  1902. - Change flannel registration default values (sbaubeau@redhat.com)
  1903. - Remove empty notify section (sbaubeau@redhat.com)
  1904. - Check etcd certs exist for flannel when its support is enabled
  1905. (sbaubeau@redhat.com)
  1906. - Fix when neither use_openshift_sdn nor use_flannel are specified
  1907. (sbaubeau@redhat.com)
  1908. - Generate etcd certificats for flannel when is not embedded
  1909. (sbaubeau@redhat.com)
  1910. - Add missing 2nd true parameters to default Jinja filter (sbaubeau@redhat.com)
  1911. - Use 'command' module instead of 'shell' (sbaubeau@redhat.com)
  1912. - Add flannel modules documentation (sbaubeau@redhat.com)
  1913. - Only remove IPv4 address from docker bridge (sbaubeau@redhat.com)
  1914. - Remove multiple use_flannel fact definition (sbaubeau@redhat.com)
  1915. - Ensure openshift-sdn and flannel can't be used at the same time
  1916. (sbaubeau@redhat.com)
  1917. - Add flannel support (sbaubeau@redhat.com)
  1918. * Wed Nov 04 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.7-1
  1919. - added the %%util in zabbix (mwoodson@redhat.com)
  1920. - atomic-openshift-installer: Correct default playbook directory
  1921. (smunilla@redhat.com)
  1922. - Support for gce (kwoodson@redhat.com)
  1923. - fixed a dumb naming mistake (mwoodson@redhat.com)
  1924. - added disk tps checks to zabbix (mwoodson@redhat.com)
  1925. - atomic-openshift-installer: Correct inaccurate prompt (smunilla@redhat.com)
  1926. - atomic-openshift-installer: Add default openshift-ansible-playbook
  1927. (smunilla@redhat.com)
  1928. - ooinstall: Add check for nopwd sudo (smunilla@redhat.com)
  1929. - ooinstall: Update local install check (smunilla@redhat.com)
  1930. - oo-install: Support running on the host to be deployed (smunilla@redhat.com)
  1931. - Moving to Openshift Etcd application (mmahut@redhat.com)
  1932. - Add all the possible servicenames to openshift_all_hostnames for masters
  1933. (sdodson@redhat.com)
  1934. - Adding openshift.node.etcd items (mmahut@redhat.com)
  1935. - Fix etcd cert generation when etcd_interface is defined (jdetiber@redhat.com)
  1936. - get zabbix ready to start tracking status of pcp (jdiaz@redhat.com)
  1937. - split inventory into subpackages (tdawson@redhat.com)
  1938. - changed the cpu alert to only alert if cpu idle more than 5x. Change alert to
  1939. warning (mwoodson@redhat.com)
  1940. - Rename install_transactions module to openshift_ansible.
  1941. (dgoodwin@redhat.com)
  1942. - atomic-openshift-installer: Text improvements (smunilla@redhat.com)
  1943. - Add utils subpackage missing dep on openshift-ansible-roles.
  1944. (dgoodwin@redhat.com)
  1945. - Disable requiretty for only the openshift user (error@ioerror.us)
  1946. - Don't require tty to run sudo (error@ioerror.us)
  1947. - Attempt to remove the various interfaces left over from an install
  1948. (bleanhar@redhat.com)
  1949. - Pulling latest gce.py module from ansible (kwoodson@redhat.com)
  1950. - Disable OpenShift features if installing Atomic Enterprise
  1951. (jdetiber@redhat.com)
  1952. - Use default playbooks if available. (dgoodwin@redhat.com)
  1953. - Add uninstall subcommand. (dgoodwin@redhat.com)
  1954. - Add subcommands to CLI. (dgoodwin@redhat.com)
  1955. - Remove images options in oadm command (nakayamakenjiro@gmail.com)
  1956. * Fri Oct 30 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.6-1
  1957. - Adding python-boto and python-libcloud to openshift-ansible-inventory
  1958. dependency (kwoodson@redhat.com)
  1959. - Use more specific enterprise version for version_greater_than_3_1_or_1_1.
  1960. (abutcher@redhat.com)
  1961. - Conditionalizing the support for the v1beta3 api (bleanhar@redhat.com)
  1962. * Thu Oct 29 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.5-1
  1963. - Updating multi_ec2 to support extra_vars and extra_groups
  1964. (kwoodson@redhat.com)
  1965. - Removing the template and doing to_nice_yaml instead (kwoodson@redhat.com)
  1966. - README_AEP.md: update instructions for creating router and registry
  1967. (jlebon@redhat.com)
  1968. - README_AEP: Various fixes (walters@verbum.org)
  1969. - Fixing for extra_vars rename. (kwoodson@redhat.com)
  1970. - make storage_plugin_deps conditional on deployment_type (jdetiber@redhat.com)
  1971. - remove debugging pauses (jdetiber@redhat.com)
  1972. - make storage plugin dependency installation more flexible
  1973. (jdetiber@redhat.com)
  1974. - Install storage plugin dependencies (jdetiber@redhat.com)
  1975. * Wed Oct 28 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.4-1
  1976. - Removing spec files. (kwoodson@redhat.com)
  1977. - Updated example (kwoodson@redhat.com)
  1978. - Automatic commit of package [openshift-ansible-inventory] release [0.0.11-1].
  1979. (kwoodson@redhat.com)
  1980. - Automatic commit of package [openshift-ansible-bin] release [0.0.21-1].
  1981. (kwoodson@redhat.com)
  1982. - Automatic commit of package [openshift-ansible-inventory] release [0.0.10-1].
  1983. (kwoodson@redhat.com)
  1984. - Automatic commit of package [openshift-ansible-bin] release [0.0.20-1].
  1985. (kwoodson@redhat.com)
  1986. - Adding tito releasers configuration (bleanhar@redhat.com)
  1987. - Bug fixes for the uninstall playbook (bleanhar@redhat.com)
  1988. - Adding clone vars and groups. Renamed hostvars to extra_vars.
  1989. (kwoodson@redhat.com)
  1990. - Start tracking docker info execution time (jdiaz@redhat.com)
  1991. - The uninstall playbook should remove the kubeconfig for non-root installs
  1992. (bleanhar@redhat.com)
  1993. - Adding uninstall support for Atomic Host (bleanhar@redhat.com)
  1994. - add examples for SDN configuration (jdetiber@redhat.com)
  1995. * Tue Oct 27 2015 Troy Dawson <tdawson@redhat.com> 3.0.3-1
  1996. - Pylint fixes and ignores for incoming oo-install code. (dgoodwin@redhat.com)
  1997. - Pylint fixes (abutcher@redhat.com)
  1998. - Adding zabbix type and fixing zabbix agent vars (kwoodson@redhat.com)
  1999. - Add atomic-openshift-utils add atomic-openshift-utils to openshift-
  2000. ansible.spec file (tdawson@redhat.com)
  2001. - Fix quotes (spinolacastro@gmail.com)
  2002. - Use standard library for version comparison. (abutcher@redhat.com)
  2003. - added docker info to the end of docker loop to direct lvm playbook.
  2004. (twiest@redhat.com)
  2005. - Add missing quotes (spinolacastro@gmail.com)
  2006. - Adding Docker Log Options capabilities (epo@jemba.net)
  2007. - Move version greater_than_fact into openshift_facts (abutcher@redhat.com)
  2008. - Don't include proxy client cert when <3.1 or <1.1 (abutcher@redhat.com)
  2009. - Add proxy client certs to master config. (abutcher@redhat.com)
  2010. - Update imagestreams and quickstarts from origin (sdodson@redhat.com)
  2011. - Get default values from openshift_facts (spinolacastro@gmail.com)
  2012. - Cleanup (spinolacastro@gmail.com)
  2013. - Add missing inventory example (spinolacastro@gmail.com)
  2014. - Custom Project Config (spinolacastro@gmail.com)
  2015. * Mon Oct 19 2015 Troy Dawson <tdawson@redhat.com> 3.0.2-1
  2016. - Initial Package