openshift-ansible.spec 159 KB

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