openshift-ansible.spec 130 KB

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