openshift-ansible.spec 399 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603
  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.10.0
  12. Release: 0.16.0%{?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.4.3
  19. Requires: python2
  20. Requires: python-six
  21. Requires: tar
  22. Requires: %{name}-docs = %{version}-%{release}
  23. Requires: %{name}-playbooks = %{version}-%{release}
  24. Requires: %{name}-roles = %{version}-%{release}
  25. Obsoletes: atomic-openshift-utils <= 3.10
  26. Requires: java-1.8.0-openjdk-headless
  27. Requires: httpd-tools
  28. Requires: libselinux-python
  29. Requires: python-passlib
  30. Requires: python2-crypto
  31. Requires: patch
  32. %description
  33. Openshift and Atomic Enterprise Ansible
  34. This repo contains Ansible code and playbooks
  35. for Openshift and Atomic Enterprise.
  36. %prep
  37. %setup -q
  38. %build
  39. %install
  40. # Base openshift-ansible install
  41. mkdir -p %{buildroot}%{_datadir}/%{name}
  42. mkdir -p %{buildroot}%{_datadir}/ansible/%{name}/inventory
  43. cp -rp inventory/dynamic %{buildroot}%{_datadir}/ansible/%{name}/inventory
  44. cp etc/ansible.cfg %{buildroot}%{_datadir}/ansible/%{name}/ansible.cfg
  45. cp etc/ansible-quiet.cfg %{buildroot}%{_datadir}/ansible/%{name}/ansible-quiet.cfg
  46. # openshift-ansible-bin install
  47. mkdir -p %{buildroot}%{_bindir}
  48. mkdir -p %{buildroot}%{python_sitelib}/openshift_ansible
  49. mkdir -p %{buildroot}/etc/bash_completion.d
  50. mkdir -p %{buildroot}/etc/openshift_ansible
  51. # Fix links
  52. rm -f %{buildroot}%{python_sitelib}/openshift_ansible/aws
  53. rm -f %{buildroot}%{python_sitelib}/openshift_ansible/gce
  54. # openshift-ansible-docs install
  55. # Install example inventory into docs/examples
  56. mkdir -p docs/example-inventories
  57. cp inventory/hosts.* inventory/README.md docs/example-inventories/
  58. # openshift-ansible-playbooks install
  59. cp -rp playbooks %{buildroot}%{_datadir}/ansible/%{name}/
  60. # remove contiv plabooks
  61. rm -rf %{buildroot}%{_datadir}/ansible/%{name}/playbooks/adhoc/contiv
  62. # BZ1330091
  63. find -L %{buildroot}%{_datadir}/ansible/%{name}/playbooks -name lookup_plugins -type l -delete
  64. find -L %{buildroot}%{_datadir}/ansible/%{name}/playbooks -name filter_plugins -type l -delete
  65. # openshift-ansible-roles install
  66. cp -rp roles %{buildroot}%{_datadir}/ansible/%{name}/
  67. # remove contiv role
  68. rm -rf %{buildroot}%{_datadir}/ansible/%{name}/roles/contiv/*
  69. # touch a file in contiv so that it can be added to SCM's
  70. touch %{buildroot}%{_datadir}/ansible/%{name}/roles/contiv/.empty_dir
  71. # Base openshift-ansible files
  72. %files
  73. %doc README*
  74. %license LICENSE
  75. %dir %{_datadir}/ansible/%{name}
  76. %{_datadir}/ansible/%{name}/inventory/dynamic
  77. %ghost %{_datadir}/ansible/%{name}/playbooks/common/openshift-master/library.rpmmoved
  78. %{_datadir}/ansible/%{name}/ansible.cfg
  79. %{_datadir}/ansible/%{name}/ansible-quiet.cfg
  80. # ----------------------------------------------------------------------------------
  81. # openshift-ansible-docs subpackage
  82. # ----------------------------------------------------------------------------------
  83. %package docs
  84. Summary: Openshift and Atomic Enterprise Ansible documents
  85. Requires: %{name} = %{version}-%{release}
  86. BuildArch: noarch
  87. %description docs
  88. %{summary}.
  89. %files docs
  90. %doc docs
  91. # ----------------------------------------------------------------------------------
  92. # openshift-ansible-playbooks subpackage
  93. # ----------------------------------------------------------------------------------
  94. %package playbooks
  95. Summary: Openshift and Atomic Enterprise Ansible Playbooks
  96. Requires: %{name} = %{version}-%{release}
  97. Requires: %{name}-roles = %{version}-%{release}
  98. BuildArch: noarch
  99. %description playbooks
  100. %{summary}.
  101. %files playbooks
  102. %{_datadir}/ansible/%{name}/playbooks
  103. # Along the history of openshift-ansible, some playbook directories had to be
  104. # moved and were replaced with symlinks for backwards compatibility.
  105. # RPM doesn't handle this so we have to do some pre-transaction magic.
  106. # See https://fedoraproject.org/wiki/Packaging:Directory_Replacement
  107. %pretrans playbooks -p <lua>
  108. -- Define the paths to directories being replaced below.
  109. -- DO NOT add a trailing slash at the end.
  110. dirs_to_sym = {
  111. "/usr/share/ansible/openshift-ansible/playbooks/common/openshift-master/library",
  112. "/usr/share/ansible/openshift-ansible/playbooks/certificate_expiry"
  113. }
  114. for i,path in ipairs(dirs_to_sym) do
  115. st = posix.stat(path)
  116. if st and st.type == "directory" then
  117. status = os.rename(path, path .. ".rpmmoved")
  118. if not status then
  119. suffix = 0
  120. while not status do
  121. suffix = suffix + 1
  122. status = os.rename(path .. ".rpmmoved", path .. ".rpmmoved." .. suffix)
  123. end
  124. os.rename(path, path .. ".rpmmoved")
  125. end
  126. end
  127. end
  128. %package roles
  129. # ----------------------------------------------------------------------------------
  130. # openshift-ansible-roles subpackage
  131. # ----------------------------------------------------------------------------------
  132. Summary: Openshift and Atomic Enterprise Ansible roles
  133. Requires: %{name} = %{version}-%{release}
  134. Obsoletes: %{name}-lookup-plugins
  135. Obsoletes: %{name}-filter-plugins
  136. Obsoletes: %{name}-callback-plugins
  137. BuildArch: noarch
  138. %description roles
  139. %{summary}.
  140. %files roles
  141. %{_datadir}/ansible/%{name}/roles
  142. %changelog
  143. * Fri Apr 06 2018 Justin Pierce <jupierce@redhat.com> 3.10.0-0.16.0
  144. - Use long form of "scc" resource type in logging facts (hansmi@vshn.ch)
  145. - Add CL role and playbook for Node Problem Detector (joesmith@redhat.com)
  146. - Remove unused/obsolete items from openshift_master_facts (mgugino@redhat.com)
  147. - Allow no sdn's to be specified in sanity checks (mgugino@redhat.com)
  148. - Fix session secrets file and remove old facts (mgugino@redhat.com)
  149. - master: set DEBUG_LOGLEVEL based on openshift_master_debug_level
  150. (dcbw@redhat.com)
  151. - Refactor openshift_version setting (mgugino@redhat.com)
  152. - Ensure legacy inventories continue to work for infra nodes
  153. (ccoleman@redhat.com)
  154. - Updating for es5.x image naming and removing restriction for origin only for
  155. tech preview (ewolinet@redhat.com)
  156. - Implement descheduler cluster lifecycle role and playbook.
  157. (avagarwa@redhat.com)
  158. - Add resources and migration for new default CRD backend for ASB
  159. (fabian@fabianism.us)
  160. - GlusterFS: Use custom StorageClass for S3 (jarrpa@redhat.com)
  161. - GlusterFS: Fix missing parameter for registry PVC (jarrpa@redhat.com)
  162. - Fix undefined variable in session secrets (mgugino@redhat.com)
  163. - Updating default image tags to be only vX.Y for origin installs
  164. (ewolinet@redhat.com)
  165. - Don't install etcd on bootstrapped hosts (vrutkovs@redhat.com)
  166. - When bootstrapping automatically sync node config (ccoleman@redhat.com)
  167. - Fixing crlnumber file missing (bedin@redhat.com)
  168. - Use consistent config location in web console debugging (ccoleman@redhat.com)
  169. - Refactor session authentication secrets (mgugino@redhat.com)
  170. - [1558689] Add iproute to origin-ansible image (rteague@redhat.com)
  171. - catalog: turn on async bindings by default (jpeeler@redhat.com)
  172. - [1561247] Add kubeconfig to openshift_bootstrap_autoapprover
  173. (rteague@redhat.com)
  174. - Add an ansible role to install OpenShift monitoring platform
  175. (ealfassa@redhat.com)
  176. - Documents new node upgrade hooks. (jtudelag@redhat.com)
  177. - Skip oc_adm_csr when no bootstrapping is required on GCP
  178. (ccoleman@redhat.com)
  179. - deploy k8s job for applying hawkular-metrics schema (john.sanda@gmail.com)
  180. - use new filter name for AWS availability zones (jdiaz@redhat.com)
  181. - Fix node upgrade hooks (sdodson@redhat.com)
  182. - Switch the master to always run with bootstrapping on (ccoleman@redhat.com)
  183. - Removing non-null default for cpu_limit for es (ewolinet@redhat.com)
  184. - GlusterFS: Collapse versioned files and directories (jarrpa@redhat.com)
  185. - Fix GCP master haproxy install check (ccoleman@redhat.com)
  186. - crio: don't configure openshift-sdn when disabled (phemmer@chewy.com)
  187. - PAPR - Don't install ASB, do install TSB (sdodson@redhat.com)
  188. - Ensure etcd.conf variables are updated during upgrade (rteague@redhat.com)
  189. - Update deprecated etcd vars in openshfit_cert_expiry (rteague@redhat.com)
  190. - PAPR: don't install TSB on Atomic (vrutkovs@redhat.com)
  191. - Removing hardcoding of configmap_namespace for patching (ewolinet@redhat.com)
  192. - Remove openshift_etcd_facts role (mgugino@redhat.com)
  193. - Cert check playbooks: remove become (vrutkovs@redhat.com)
  194. - Fix s3 image as rhgs3/rhgs-s3-server-rhel7 (sarumuga@redhat.com)
  195. - Upgrade Prometheus AlertManager to v0.14.0 (pasquier.simon@gmail.com)
  196. - Remove etcd_hosts and etcd_urls from openshift_facts (mgugino@redhat.com)
  197. - Convert node-related roles from include_tasks to import_tasks
  198. (mgugino@redhat.com)
  199. - Bug 1557516- ASB now scheduled on infra nodes (fabian@fabianism.us)
  200. - remove duplicate time import (fabian@fabianism.us)
  201. - fix import (fabian@fabianism.us)
  202. - rebuild dependent modules (fabian@fabianism.us)
  203. - Bug 1555426- yedit now appends an ISO8601 formatted datetime string to file
  204. backups (fabian@fabianism.us)
  205. - Don't remove pvs when uninstalling openshift_management (ncarboni@redhat.com)
  206. - dockergc: use oc rather than openshift for ex subcommand
  207. (sjenning@redhat.com)
  208. - Updating default image versions to match curator (ewolinet@redhat.com)
  209. - OpenShift Reference Component Docs (rteague@redhat.com)
  210. - Fix typo in hawkular-cassandra RC (juanlu@redhat.com)
  211. - Adds node hooks: pre, mid and post update hook. (jtudelag@redhat.com)
  212. - Adjusting the default PVC size of MUX file buffer
  213. (openshift_logging_mux_file_buffer_pvc_size) to the default MUX file buffer
  214. size (openshift_logging_mux_file_buffer_limit == 2Gi). (nhosoi@redhat.com)
  215. * Tue Mar 27 2018 Justin Pierce <jupierce@redhat.com> 3.10.0-0.15.0
  216. - Remove etcd_migrate and embedded2external (mgugino@redhat.com)
  217. - Master: change openshift_node include_tasks to import_tasks
  218. (mgugino@redhat.com)
  219. - Use consistent image references and split out node sync (ccoleman@redhat.com)
  220. - Remove complex version logic and fix f27 build (ccoleman@redhat.com)
  221. - CSR approval should ignore errors when retrying (ccoleman@redhat.com)
  222. * Mon Mar 26 2018 Justin Pierce <jupierce@redhat.com> 3.10.0-0.14.0
  223. - Split the provision.yml playbook for more flexibility.
  224. (jmencak@users.noreply.github.com)
  225. - Ensure master-logs works for both origin and enterprise (ccoleman@redhat.com)
  226. - Master components should not have configurable labels (ccoleman@redhat.com)
  227. - Remove duplicated index (thanhha.work@gmail.com)
  228. - Revert "Use region and zone labels added by cloudprovider for scheduling"
  229. (iacopo.rozzo@amadeus.com)
  230. - Replacing -v with -p for template parameters in oc_process
  231. (asherkho@redhat.com)
  232. - ensure common_secgrp is used in all server groups (tzumainn@redhat.com)
  233. - package_version check: stop looking for docker (lmeyer@redhat.com)
  234. - minor updates to cleanup secgrp rules (tzumainn@redhat.com)
  235. - Configure dnsmasq before waiting for node (sedgar@redhat.com)
  236. - parameterized flat and master/etcd/node secgroup rules (tzumainn@redhat.com)
  237. - parameterized common openstack secgroup rules (tzumainn@redhat.com)
  238. - fix the ELASTICSEARCH_URL for kibana (jcantril@redhat.com)
  239. - Updating default run hour and minute for curator (ewolinet@redhat.com)
  240. - add in password auth for logging proxy (jcantril@redhat.com)
  241. - Bumping up the default wait time for ES node to be yellow or green, made it
  242. configurable for larger clusters (ewolinet@redhat.com)
  243. - Make ports pool the default when deploying with kuryr (ltomasbo@redhat.com)
  244. - Allow for using an external openvswitch (flaper87@gmail.com)
  245. - fixing the mounts for the daemonset config to have non subpath mount
  246. (mwoodson@redhat.com)
  247. - Remove openshift_management beta acknowledement (rteague@redhat.com)
  248. - Add metrics-server to openshift-metrics playbook (amcdermo@redhat.com)
  249. - Limit Prometheus discovery to relevant namespaces (pasquier.simon@gmail.com)
  250. - Don't verify node exporter is running (zgalor@redhat.com)
  251. - roles/openshift-prometheus: fix failing prometheus service discovery scrapes
  252. (pgier@redhat.com)
  253. - upgrade prometheus v2.0.0 -> v2.1.0 (pgier@redhat.com)
  254. - Use region and zone labels added by cloudprovider for scheduling
  255. (iacopo.rozzo@amadeus.com)
  256. - Remove deployment_type parameter from default predicates and priorities
  257. lookup as it was removed from the lookup plugin (iacopo.rozzo@amadeus.com)
  258. - use openshift_image_tag default for prometheus_node_exporter image
  259. (aweiteka@redhat.com)
  260. * Tue Mar 20 2018 Justin Pierce <jupierce@redhat.com> 3.10.0-0.13.0
  261. - EFS Provisioner: switch OCP tag to latest (vrutkovs@redhat.com)
  262. * Mon Mar 19 2018 Justin Pierce <jupierce@redhat.com> 3.10.0-0.12.0
  263. - Bump pyOpenSSL to 17.5.0 (rteague@redhat.com)
  264. * Sat Mar 17 2018 Justin Pierce <jupierce@redhat.com> 3.10.0-0.11.0
  265. -
  266. * Fri Mar 16 2018 Justin Pierce <jupierce@redhat.com> 3.10.0-0.10.0
  267. - Bug 1553576 - Change the self_hostname to ${hostname} in openshift-ansible
  268. (nhosoi@redhat.com)
  269. * Thu Mar 15 2018 Justin Pierce <jupierce@redhat.com> 3.10.0-0.9.0
  270. - Use oreg_url for node and master images (ccoleman@redhat.com)
  271. - Label master nodes with openshift-infra=apiserver (jpeeler@redhat.com)
  272. * Thu Mar 15 2018 Justin Pierce <jupierce@redhat.com> 3.10.0-0.8.0
  273. - Enabling multi vif pool drivers (ltomasbo@redhat.com)
  274. - Update the examples directory for v3.10 (cdaley@redhat.com)
  275. - Pop etcd_port from local_facts file (mgugino@redhat.com)
  276. - Allowing means to provide custom es config entries with
  277. openshift_logging_es_config (ewolinet@redhat.com)
  278. - GlusterFS - Invoke oc binary with the admin.kubeconfig token rather than
  279. default token from $HOME/.kube/config (“dani_comnea@yahoo.com”)
  280. - Break up components installs into separate playbooks (staebler@redhat.com)
  281. * Wed Mar 14 2018 Justin Pierce <jupierce@redhat.com> 3.10.0-0.7.0
  282. - Bug 1548641- Correct arguments to yedit (fabian@fabianism.us)
  283. - Bug 1554828- Nodes are now labeled compute after other labels have been
  284. applied (fabian@fabianism.us)
  285. - Actually link to the Kuryr docs (tomas@sedovic.cz)
  286. - Link to the Kuryr docs (tomas@sedovic.cz)
  287. - Add link to the Kuryr port pool docs (tomas@sedovic.cz)
  288. - Add Kuryr documentation (tomas@sedovic.cz)
  289. * Wed Mar 14 2018 Justin Pierce <jupierce@redhat.com> 3.10.0-0.6.0
  290. - Bug 1548541- Conditional for applying defaultNodeSelector now valid
  291. (fabian@fabianism.us)
  292. - Add support to pre-create subports at each trunk (ltomasbo@redhat.com)
  293. - Fix missing slash in oreg_host (rteague@redhat.com)
  294. - [RHDM-354] - Add RHDM 7.0 GA templates and image streams to Openshift service
  295. catalog (fspolti@redhat.com)
  296. - Fix references to oc client (mgugino@redhat.com)
  297. - Enable epel-testing repo for ansible-2.4.3 until it goes live
  298. (sdodson@redhat.com)
  299. - GlusterFS: Add HEKETI_IGNORE_STALE_OPERATIONS to templates
  300. (jarrpa@redhat.com)
  301. - Replace ${version} with openshift_image_tag (ccoleman@redhat.com)
  302. - Update f27-atomic build to pull images (ccoleman@redhat.com)
  303. - Use internalRegistryHostname when bootstrapping (ccoleman@redhat.com)
  304. - In master bootstrapping mode, use the new openshift_control_plane role
  305. (ccoleman@redhat.com)
  306. - Add a local bootstrap-node-config.yml on all bootstrap nodes
  307. (ccoleman@redhat.com)
  308. - Switch to bootstrap script as a default var (ccoleman@redhat.com)
  309. - Prepare the node for dynamic bootstrapping (ccoleman@redhat.com)
  310. - Use an etcd static pod when master bootstrapping is set (ccoleman@redhat.com)
  311. - Add new openshift_control_plane and openshift_sdn roles (ccoleman@redhat.com)
  312. - Changing python regex method from match to search due to variable content
  313. structure (ewolinet@redhat.com)
  314. - Adding missed line change (ewolinet@redhat.com)
  315. - Ensure that the aggregator is configured during all control plane upgrades
  316. (sdodson@redhat.com)
  317. - Correctly escape the variable value for regex searching when building patch
  318. (ewolinet@redhat.com)
  319. - [grafana] Use service account token instead of hardcoded user
  320. (pep@redhat.com)
  321. - [grafana] Fix wrong references to service account (pep@redhat.com)
  322. - Revert delete tsb upgrade (mgugino@redhat.com)
  323. - crio: Fixup docker SELinux permissions (mrunalp@gmail.com)
  324. - GlusterFS: Don't copy non-existant topology file (jarrpa@redhat.com)
  325. - Require Ansible 2.4.3 (rteague@redhat.com)
  326. - Update roles and playbooks to split cri-o install types (smilner@redhat.com)
  327. - openshift_node: Remove hardcoded cri-o node labels (smilner@redhat.com)
  328. - docker_gc: map the r_docker_gc_node_selectors to pairs (vrutkovs@redhat.com)
  329. - [wip] system containers: ensure Atomic won't reset permissions for
  330. etcd_data_dir (vrutkovs@redhat.com)
  331. - docker-gc: use openshift_client_binary to support Atomic
  332. (vrutkovs@redhat.com)
  333. - Bug 1548641- upgrade now properly sets labels and selectors
  334. (fabian@fabianism.us)
  335. - updated uninstall section (tzumainn@redhat.com)
  336. - re-formatted cinder sections (tzumainn@redhat.com)
  337. - minor formatting (tzumainn@redhat.com)
  338. - updated DNS section to match updated formatting; cleaned up openstack
  339. configuration section (tzumainn@redhat.com)
  340. - removed dangling link to scale documenation (tzumainn@redhat.com)
  341. - Added subsection regarding OS-specific dependencies (tzumainn@redhat.com)
  342. - remove dangling reference to control-host-image (tzumainn@redhat.com)
  343. - Add section about OPENSHIFT_CLUSTER env variable (tzumainn@redhat.com)
  344. - fixed link (tzumainn@redhat.com)
  345. - Separated post-install doc from README; additional cleanup
  346. (tzumainn@redhat.com)
  347. - Re-organized OpenStack documentation (tzumainn@redhat.com)
  348. - TSB upgrade remove and reinstall (mgugino@redhat.com)
  349. - Add .default to no_proxy list for ASB. (derekwhatley@gmail.com)
  350. - Updating how the whitelist works -- changing from removing the lines which
  351. can cause issues when patching lines near the whitelist line to changing the
  352. current source line to match the new souce line (ewolinet@redhat.com)
  353. - Use variables for docker_gc image (rteague@redhat.com)
  354. - Remove force cache during node upgrade install (mgugino@redhat.com)
  355. - Bug 1550148 - Don't use undefined openshift_version in
  356. openshift_sanitize_inventory (spadgett@redhat.com)
  357. - Refactor openshift.common.deployment_type (mgugino@redhat.com)
  358. - firewall: allow access to DNS for flannel network (vrutkovs@redhat.com)
  359. - Update curator to use k8s cronjob (jkarasek@redhat.com)
  360. - Remove unused openshift_upgrade_config (mgugino@redhat.com)
  361. - Convert calico to self-hosted install (djosborne10@gmail.com)
  362. - Switch the default network mode to ovs-networkpolicy (ccoleman@redhat.com)
  363. - Allow rcpbind for CNS block in cns-secgrp (openshift_openstack).
  364. (jmencak@redhat.com)
  365. - Change default grafana ns to openshift-grafana (pep@redhat.com)
  366. - Only run no_log on task that scrapes all inventory variables
  367. (sdodson@redhat.com)
  368. - Bug 1549220 - configmap still exist after running uninstall playbook for
  369. logging (nhosoi@redhat.com)
  370. - Fix grafana role node selector check (pep@redhat.com)
  371. - cri-o: configure oci-umount with CRI-O paths (gscrivan@redhat.com)
  372. - added note about any_errors_fatal for ansible.cfg (tzumainn@redhat.com)
  373. - add missing evaluate_groups (tzumainn@redhat.com)
  374. - change to better coding style (wmeng@redhat.com)
  375. - removed cleanup comment (tzumainn@redhat.com)
  376. - corrected rhel unsubscribe role (tzumainn@redhat.com)
  377. - Add openstack uninstall playbook (tzumainn@redhat.com)
  378. - add any_errors_fatal to openstack install playbook (tzumainn@redhat.com)
  379. - add any_errors_fatal to openstack playbooks (tzumainn@redhat.com)
  380. - cockpit-ui: Make it optional (sjr@redhat.com)
  381. - only annotate ops project for ops kibana when using ops (jcantril@redhat.com)
  382. * Wed Mar 07 2018 Justin Pierce <jupierce@redhat.com> 3.10.0-0.4.0
  383. - During master upgrade reset loopback config (sdodson@redhat.com)
  384. * Wed Mar 07 2018 Justin Pierce <jupierce@redhat.com> 3.10.0-0.3.0
  385. -
  386. * Wed Mar 07 2018 Justin Pierce <jupierce@redhat.com> 3.10.0-0.2.0
  387. - Add wait_for_pods to upgrade for hosted components (mgugino@redhat.com)
  388. - Refactor openshift.common.version to openshift_current_version
  389. (mgugino@redhat.com)
  390. - Fix the DNS server name issue for OpenStack (tomas@sedovic.cz)
  391. - Fix hosted registry upgrade bug (mgugino@redhat.com)
  392. - Remove redeploy after the roll has executed. (kwoodson@redhat.com)
  393. - ansible-quite: set callback_plugins path (vrutkovs@redhat.com)
  394. - Make broker pods run correct versions on upgrade (jpeeler@redhat.com)
  395. - enable iscsid on start and add rpcbind dependencies (m.judeikis@gmail.com)
  396. - fix bz 1550271: restore mpath defaults config (hchen@redhat.com)
  397. - Ensure removed web console extension variables are not set
  398. (spadgett@redhat.com)
  399. - openstack: set a default when no API LB is needed (antonisp@celebdor.com)
  400. - openshift on openstack: fix non kuryr non API LB (antonisp@celebdor.com)
  401. - kuryr: fix linting tests (antonisp@celebdor.com)
  402. - kuryr: fix API LB and DNS access (tomas@sedovic.cz)
  403. - update LB ports iff the provider is haproxy (antonisp@celebdor.com)
  404. - kuryr: Use openshift-infra namespace (antonisp@celebdor.com)
  405. - kuryr: required pub subnet configuration option (antonisp@celebdor.com)
  406. - sanity_checks: add missing kuryr net_plugin (antonisp@celebdor.com)
  407. - kuryr: Make controller and CNI image configurable (antonisp@celebdor.com)
  408. - Check openstack kuryr prerequisites (antonisp@celebdor.com)
  409. - Kuryr var generation in OSt dynamic inventory (antonisp@celebdor.com)
  410. - kuryr: move to new binding_driver setting config (antonisp@celebdor.com)
  411. - Add s3 and block uninstall sections as well. (sarumuga@redhat.com)
  412. - Temporarily fix Dockerfile until we can find a replacement package
  413. (ccoleman@redhat.com)
  414. - Bug 1550148 - Fail install if console port does not match API server port
  415. (spadgett@redhat.com)
  416. - Master scheduler upgrade cleanup (mgugino@redhat.com)
  417. - Add proxy env vars to ASB DC. (derekwhatley@gmail.com)
  418. - Correcting a typo: idle_timout -> idle_timeout (bmorriso@redhat.com)
  419. - docker_image_availability: encode error message (vrutkovs@redhat.com)
  420. - Fix the gluster-s3 pod label used in gluster-s3 service.
  421. (sarumuga@redhat.com)
  422. - etcd scaleup: use r_etcd_common_etcdctl_command instead of binary path
  423. (vrutkovs@redhat.com)
  424. - Change default etcd port to 2379 (jpeeler@redhat.com)
  425. - Fixing evaluating if ops deployment needs to skip health check, removing
  426. logic for determining version, fixing pod check for elasticsearch to get
  427. running version (ewolinet@redhat.com)
  428. - oc_obj: fail in state=list when return code != 0. (abutcher@redhat.com)
  429. - Fix for gluster-s3 pvc check count. (sarumuga@redhat.com)
  430. - Allow for using an external openvswitch (flaper87@gmail.com)
  431. - Fix rhgs-s3 image name (sarumuga@redhat.com)
  432. - Prometheus reader in continuing to #7064 using the right prometheus sa, with
  433. view privileges. (mrsiano@gmail.com)
  434. - ansible-quiet.cfg: Don't set callback_plugins path (vrutkovs@redhat.com)
  435. - Add support for instance_ids to ELB provisioner (bmorriso@redhat.com)
  436. - Remove RBAC console template (spadgett@redhat.com)
  437. - crio: Add schedulable check for dockergc-ds (smilner@redhat.com)
  438. - Move common master upgrade playbooks to openshift-master (rteague@redhat.com)
  439. - crio: docker_gc on by default (smilner@redhat.com)
  440. - add stack update case for dry run (tzumainn@redhat.com)
  441. - [bz 1508561] default to secure registry and update certificates
  442. (kwoodson@redhat.com)
  443. - [BZ 1513706] make concurrenyLimit of heapster's hawkular sink configurable
  444. (john.sanda@gmail.com)
  445. - Fix redeploy router from openshift_hosted refactor. (kwoodson@redhat.com)
  446. - add stack dry run check (tzumainn@redhat.com)
  447. - prometheus retention 3d (aweiteka@redhat.com)
  448. - add liveness probe for config reload (aweiteka@redhat.com)
  449. - Add kuryr-kubernetes external lock_path * Lock path is now configurable to
  450. run cni daemon without error. (esevan.park@samsung.com)
  451. - Add openstack stack failures list if stack fails to create
  452. (tzumainn@redhat.com)
  453. - Add Heat template validation (tzumainn@redhat.com)
  454. - Clarify node system container service unit (mgugino@redhat.com)
  455. * Wed Feb 28 2018 Scott Dodson <sdodson@redhat.com> 3.10.0-0.1.0
  456. - Adding 3.10 releaser (jupierce@redhat.com)
  457. - Add inventory docs for gcp variables (mgugino@redhat.com)
  458. - Add prometheus node-exporter (aweiteka@redhat.com)
  459. - hosts.example: use 3.9 versions in sample inventory file
  460. (vrutkovs@redhat.com)
  461. - upgrade: skip restart during double upgrade (vrutkovs@redhat.com)
  462. - gcp: Move provisioning of SSH key into separate task
  463. (chance.zibolski@coreos.com)
  464. - fix when logging metrics user is modified (jcantril@redhat.com)
  465. - bug 1537857. Additional logging proxy metrics fixes (jcantril@redhat.com)
  466. - changed logic due to failures in CI (davis.phillips@gmail.com)
  467. - ntpd/chronyd will now be started before node/master services
  468. (fabian@fabianism.us)
  469. - Add service catalog components to upgrade (mgugino@redhat.com)
  470. - Add registry GCS storage to hosts.example (sdodson@redhat.com)
  471. - Remove no_log: True from openshift_version calls (sdodson@redhat.com)
  472. - docker: support ADDTL_MOUNTS (gscrivan@redhat.com)
  473. - refactor grafana role (m.judeikis@gmail.com)
  474. - Remove v3_8 upgrade playbooks (vrutkovs@redhat.com)
  475. - Dump verbose curl output and API logs when API doesn't become available.
  476. (abutcher@redhat.com)
  477. - Start master API in parallel on all masters. (abutcher@redhat.com)
  478. - Update glusterfs-template: - Add GB_LOGDIR - failureThreshold as 50 secs
  479. (sarumuga@redhat.com)
  480. - Don't upgrade master nodes during double upgrade (vrutkovs@redhat.com)
  481. - Don't upgrade nodes for OCP 3.8 (vrutkovs@redhat.com)
  482. - sanity_checks: warn that some OCP versions cannot be installed
  483. (vrutkovs@redhat.com)
  484. - repo_query: always include package_name in results (vrutkovs@redhat.com)
  485. - Update upgrade README and add 3.7.x -> 3.9.x entry (vrutkovs@redhat.com)
  486. - Remove unused tasks upgrade_facts in openshift_master (mgugino@redhat.com)
  487. - Remove set_fact usage from web-console role (mgugino@redhat.com)
  488. - Retrieve node list from API when testing for nodes with selector.
  489. (abutcher@redhat.com)
  490. - Update controller port to match containerPort (jpeeler@redhat.com)
  491. - Fix way openshift_openstack_nodes_to_remove parameter is parsed in template
  492. (tzumainn@redhat.com)
  493. - logging: update README about cri-o (jwozniak@redhat.com)
  494. - Bug 1536651 - logging-mux not working in 3.7.z when logging installed with
  495. openshift_logging_use_mux=true (nhosoi@redhat.com)
  496. - vsphere svc fix upgrade and datastore fix (davis.phillips@gmail.com)
  497. - logging: allow fluentd to determine cri-o (jwozniak@redhat.com)
  498. - add generic image-and-flavor check that verifies existence and compatibility
  499. (tzumainn@redhat.com)
  500. * Sun Feb 25 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.53.0
  501. -
  502. * Sun Feb 25 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.52.0
  503. - Move journald setup to node tasks from master (nakayamakenjiro@gmail.com)
  504. - [BZ 1497408] delete config map, dameon set, and cluster role
  505. (john.sanda@gmail.com)
  506. - Fix aggregator relative paths (mgugino@redhat.com)
  507. - Fix package tasks ordering in OpenStack playbooks (tomas@sedovic.cz)
  508. - Change openshift_release to openshift_upgrade_target in upgrade
  509. (mgugino@redhat.com)
  510. - Normalize times we wait on pods to 10s * 60retries (sdodson@redhat.com)
  511. - start_api_server: service catalog healthcheck doesn't require proxy
  512. (vrutkovs@redhat.com)
  513. - Changing default of openshift_logging_public_master_url to use
  514. openshift_master_cluster_public_hostname if available (ewolinet@redhat.com)
  515. - Sync v3.8 content (sdodson@redhat.com)
  516. - Sync v3.7 content (sdodson@redhat.com)
  517. - Sync v3.9 content (sdodson@redhat.com)
  518. - Allow branch specific pulls from origin (sdodson@redhat.com)
  519. - Fixing bz1540467 docker-registry env var migration. Adding ability to oc_edit
  520. complex array style edits. (kwoodson@redhat.com)
  521. - [1537872] Adding seboolean for virt_use_samba (kwoodson@redhat.com)
  522. - Making patching a local_action and ensuring we become:false for local_actions
  523. (ewolinet@redhat.com)
  524. - Cast string to dict in lib_utils_oo_dict_to_keqv_list (mgugino@redhat.com)
  525. - refine condition for doing ami fetching (jdiaz@redhat.com)
  526. - Add field_selector parameter to oc_obj. (abutcher@redhat.com)
  527. - GlusterFS: Check for groups in template file (jarrpa@redhat.com)
  528. - Updating AMI copying tags to no longer default to parent AMI.
  529. (kwoodson@redhat.com)
  530. - Remove NoVolumeNodeConflict from 3.9+ (sdodson@redhat.com)
  531. * Fri Feb 23 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.51.0
  532. -
  533. * Thu Feb 22 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.50.0
  534. - Fix upgrade verify_upgrade_targets (mgugino@redhat.com)
  535. - Ensure wire-aggregator run on 3.7 upgrades (mgugino@redhat.com)
  536. - Add no_log to prevent printing AWS creds (sedgar@redhat.com)
  537. - added ci inventory and groups for containerized (mgugino@redhat.com)
  538. * Thu Feb 22 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.48.0
  539. - Fix openshift_hosted_registry_storage_glusterfs_path (mgugino@redhat.com)
  540. - Revert openshift_portal_net (mgugino@redhat.com)
  541. - skip search for an ami if openshift_aws_ami_map provides one
  542. (jdiaz@redhat.com)
  543. - Adding node autoapprover. (kwoodson@redhat.com)
  544. - Adding ability to state absent array items with index/curr_value.
  545. (kwoodson@redhat.com)
  546. - Change image location to CF 4.6 GA from Beta (simaishi@redhat.com)
  547. - Update templates to mount the configmap into the directory the new image
  548. expects (simaishi@redhat.com)
  549. - Fix for support multi-cluster heketi's topology (chinacoolhacker@gmail.com)
  550. * Tue Feb 20 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.47.0
  551. - Update API healthz check to use uri module (mkhan@redhat.com)
  552. - fixed an oo_filter plugin lib_utils_oo_has_no_matching_selector to do set
  553. comparison (mwoodson@redhat.com)
  554. - Grafana roles updates. (mrsiano@gmail.com)
  555. - add deprovision playbook for cluster-operator infrastructure
  556. (jdiaz@redhat.com)
  557. - Add tox test to check for invalid playbook include (rteague@redhat.com)
  558. - Change openshift.common.hostname to inventory_hostname (mgugino@redhat.com)
  559. - Fix openshift-webconsole version check (mgugino@redhat.com)
  560. - add master deprovisioning (jdiaz@redhat.com)
  561. - Adding file locking to yedit. (kwoodson@redhat.com)
  562. - Log troubleshooting info when console install fails (spadgett@redhat.com)
  563. - CRI-O: use /var/run/crio/crio.sock for >=3.9 (gscrivan@redhat.com)
  564. - Fix pvc template by replacing None by lowercase none (toj315@gmail.com)
  565. - GlusterFS: Fix uninstall regression (jarrpa@redhat.com)
  566. - Add prometheus reader role for lightweight privileges. (mrsiano@gmail.com)
  567. - docker_image_availability: encode error message (vrutkovs@redhat.com)
  568. - Tweak things based on feedback (sdodson@redhat.com)
  569. - Update example inventory to drive required hostgroups to the top
  570. (sdodson@redhat.com)
  571. * Mon Feb 19 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.46.0
  572. - Tolerate OVS 2.6 in 3.10 as well (sdodson@redhat.com)
  573. - hosts.example: openshift_dns_ip should be node-specific (vrutkovs@redhat.com)
  574. - Add target mount for gluster block (m.judeikis@gmail.com)
  575. - Allow for overriding hosted registry_url variables (rteague@redhat.com)
  576. - Link to etcd v3 migration docs rather than suggesting dangerous things
  577. (sdodson@redhat.com)
  578. - Run openshift_version for image prep (mgugino@redhat.com)
  579. - Remove redundant openshift_hosted_registry_network_default
  580. (mgugino@redhat.com)
  581. - Correct the usage of bool and str (ghuang@redhat.com)
  582. - kernel module loading fix (m.judeikis@gmail.com)
  583. - add steps in bootstrap playbook to handle updating aws.conf file
  584. (jdiaz@redhat.com)
  585. - Add cloud config variables to the sample inventory (nelluri@redhat.com)
  586. - Run init/facts for docker upgrade (mgugino@redhat.com)
  587. - quick installer: remove UPGRADE_MAPPINGS (vrutkovs@redhat.com)
  588. - Update quick installer to support 3.9 and 3.8 (vrutkovs@redhat.com)
  589. - Updating deprecation variable check to use a module for cleaner output and
  590. use run_once to limit to one host. Add flag to skip dep check if desired
  591. (ewolinet@redhat.com)
  592. - Patch only if the file exists, otherwise we should copy the file in
  593. (ewolinet@redhat.com)
  594. - Add vsphere section for openshift_node_kubelet_args_dict (ghuang@redhat.com)
  595. - Correctly comparing against the current configmap when making es configmap
  596. patches (ewolinet@redhat.com)
  597. - add uninstall playbooks for compute/infra scale groups (jdiaz@redhat.com)
  598. - Adding ability to pass content and create files from content.
  599. (kwoodson@redhat.com)
  600. - Bug 1541946- waiting for master reboot now works behind bastion
  601. (fabian@fabianism.us)
  602. * Thu Feb 15 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.45.0
  603. -
  604. * Thu Feb 15 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.44.0
  605. -
  606. * Thu Feb 15 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.43.0
  607. - Changing conditional_set_fact from module to action_plugin since it does not
  608. need to access hosts to be effective and to reduce playbook output
  609. (ewolinet@redhat.com)
  610. - Revert "Bug 1512825 - add mux pod failed for Serial number 02 has already
  611. been issued" (mkhan@redhat.com)
  612. - Fix metadata access in OpenStack inventory (tomas@sedovic.cz)
  613. - Adding ability to yedit json files. (kwoodson@redhat.com)
  614. - Simplify double upgrade version logic (mgugino@redhat.com)
  615. - Whenever we create a new es node ignore health checks, changing prometheus pw
  616. gen for increased secret idempotency (ewolinet@redhat.com)
  617. - oc_adm_csr: Add fail_on_timeout parameter which causes module to fail when
  618. timeout was reached. (abutcher@redhat.com)
  619. - Adding missing template (ewolinet@redhat.com)
  620. - Move installation of packages before container_runtime to ensure bind mounts
  621. are avaialable. (kwoodson@redhat.com)
  622. - Use curl --noproxy option for internal apiserver access (takayoshi@gmail.com)
  623. - Revert openshift_version to previous state (mgugino@redhat.com)
  624. - Add openshift_gcp_multizone bool (mgugino@redhat.com)
  625. - Invert logic to decide when to re-deploy certs (sdodson@redhat.com)
  626. - etcd_scaleup: use inventory_hostname when etcd ca host is being picked
  627. (vrutkovs@redhat.com)
  628. - Fix docker_upgrade variable (mgugino@redhat.com)
  629. - Fix gcp variable warnings (mgugino@redhat.com)
  630. - Disable console install when not 3.9 or newer (spadgett@redhat.com)
  631. - Fix etcd scaleup plays (mgugino@redhat.com)
  632. - Add playbook to install components for cluster operator (cewong@redhat.com)
  633. - Remove cluster_facts.yml from the install.yml (tomas@sedovic.cz)
  634. - Allow for blank StorageClass in PVC creation (jarrpa@redhat.com)
  635. - Add service catalog to be upgraded (jpeeler@redhat.com)
  636. - Remove node start from bootstrap.yml. (abutcher@redhat.com)
  637. - Restart systemd-hostnamed before restarting NetworkManager in node user-data.
  638. (abutcher@redhat.com)
  639. - additional mounts: specify 'type' in container_runtime_crio_additional_mounts
  640. (vrutkovs@redhat.com)
  641. - Fix openshift_openstack_provision_user_commands (bdobreli@redhat.com)
  642. - origin-dns: make sure cluster.local DNS server is listed first
  643. (vrutkovs@redhat.com)
  644. - Fix OpenStack playbooks (tomas@sedovic.cz)
  645. - Backport changes for glusterfs, heketi, s3 and block templates
  646. (sarumuga@redhat.com)
  647. - Fix indentation to make yamllint happy (vrutkovs@redhat.com)
  648. - Use r_etcd_common_etcdctl_command instead of hardcoded binary name to support
  649. containerized upgrade (vrutkovs@redhat.com)
  650. - Verify that requested services have schedulable nodes matching the selectors
  651. (vrutkovs@redhat.com)
  652. - Normalize the time we wait for pods to 5s * 60 retries (sdodson@redhat.com)
  653. - Pause for console rollout (spadgett@redhat.com)
  654. - Fix wording (bdobreli@redhat.com)
  655. - Fix cloud init runcmd templating (bdobreli@redhat.com)
  656. - Note ignored Heat user data changes for openstack (bdobreli@redhat.com)
  657. - Clarify the ansible playbook vs cloud-init (bdobreli@redhat.com)
  658. - Fix openstack cloud-init runcmd templating (bdobreli@redhat.com)
  659. - [openstack] custom user commands for cloud-init (bdobreli@redhat.com)
  660. - Limit host scope during plays (mgugino@redhat.com)
  661. - Fix upgrade-control plane post_control_plane.yml (mgugino@redhat.com)
  662. - erase data only if variable is set. fix block indentatation
  663. (sarumuga@redhat.com)
  664. - uninstall playbook for GlusterFS (sarumuga@redhat.com)
  665. - Removing prefix and replacing with cidr, pool_start and pool_end variables.
  666. (mbruzek@gmail.com)
  667. - Make node start options configurable (celebdor@gmail.com)
  668. - Support master node high availability (jihoon.o@samsung.com)
  669. * Fri Feb 09 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.42.0
  670. - xPaaS v1.4.8 for v3.7 (sdodson@redhat.com)
  671. - xPaaS v1.4.8-1 for v3.8 (sdodson@redhat.com)
  672. - xPaaS v1.4.8-1 for v3.9 (sdodson@redhat.com)
  673. - Bump xpaas version (sdodson@redhat.com)
  674. - Bug 1524805- CFME example now works disconnected (fabian@fabianism.us)
  675. - Only try to yaml.load a file if it ends in .yml or .yaml in logging facts
  676. (ewolinet@redhat.com)
  677. - Set default image tag to openshift_image_tag for services
  678. (vrutkovs@redhat.com)
  679. - Redeploy router certificates during upgrade only when secure.
  680. (kwoodson@redhat.com)
  681. - GlusterFS: Fix block StorageClass heketi route (jarrpa@redhat.com)
  682. - changed oc to {{ openshift_client_binary }} (datarace101@gmail.com)
  683. - Use v3.9 web-console image for now (sdodson@redhat.com)
  684. - Adding ability to provide additional mounts to crio system container.
  685. (kwoodson@redhat.com)
  686. - Remove spaces introduced at the start of the line
  687. (geoff.newson@googlemail.com)
  688. - Changing the check for the number of etcd nodes (geoff.newson@gmail.com)
  689. - aws ami: make it so the tags from the orinal AMI are used with the newly
  690. created AMI (mwoodson@redhat.com)
  691. - Setup docker excluder if requested before container_runtime is installed
  692. (vrutkovs@redhat.com)
  693. - openshift_node: Remove master from aws node building (smilner@redhat.com)
  694. - Use wait_for_connection to validate ssh transport is alive
  695. (sdodson@redhat.com)
  696. - Bug 1541625- properly cast provided ip address to unicode
  697. (fabian@fabianism.us)
  698. - Add base package installation to upgrade playbooks (rteague@redhat.com)
  699. - 3.9 upgrade: fix typos in restart masters procedure (vrutkovs@redhat.com)
  700. - quick installer: disable broken test_get_hosts_to_run_on6 test
  701. (vrutkovs@redhat.com)
  702. - Quick installer: run prerequistes first and update path to main playbook
  703. (vrutkovs@redhat.com)
  704. - Fix uninstall using openshift_prometheus_state=absent (zgalor@redhat.com)
  705. - Detect config changes in console liveness probe (spadgett@redhat.com)
  706. - Fix master and node system container variables (mgugino@redhat.com)
  707. - Correct the list of certificates checked in openshift_master_certificates
  708. s.t. masters do not incorrectly report that master certs are missing.
  709. (abutcher@redhat.com)
  710. - tag fix without ose- (rcook@redhat.com)
  711. - lib_utils_oo_collect: Allow filtering on dot separated keys.
  712. (abutcher@redhat.com)
  713. - Determine which etcd host is the etcd_ca_host rather than assume it is the
  714. first host in the etcd host group. (abutcher@redhat.com)
  715. - Attempt to back up generated certificates on every etcd host.
  716. (abutcher@redhat.com)
  717. - Remove pre upgrade verification step re: etcd ca host. (abutcher@redhat.com)
  718. - Revert "GlusterFS: Remove image option from heketi command" (hansmi@vshn.ch)
  719. * Wed Feb 07 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.41.0
  720. - Allow OVS 2.7 in OCP 3.10 (sdodson@redhat.com)
  721. - GlusterFS: Minor documentation update (jarrpa@redhat.com)
  722. - Make sure to include upgrade_pre when upgrading master nodes
  723. (sdodson@redhat.com)
  724. * Wed Feb 07 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.40.0
  725. - health checks: tolerate ovs 2.9 (lmeyer@redhat.com)
  726. - Fix docker rpm upgrade install task wording (mgugino@redhat.com)
  727. - Initial support for 3.10 (sdodson@redhat.com)
  728. - add deprovisioning for ELB (and IAM certs) (jdiaz@redhat.com)
  729. - [6632] fix indentation of terminationGracePeriodSeconds var
  730. (jsanda@redhat.com)
  731. * Tue Feb 06 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.39.0
  732. - Update code to not fail when rc != 0 (kwoodson@redhat.com)
  733. - Upgrades: pass openshift_manage_node_is_master to master nodes during upgrade
  734. (vrutkovs@redhat.com)
  735. - Updates to configure monitoring container. (kwoodson@redhat.com)
  736. - Move cert SAN update logic to openshift-etcd (rteague@redhat.com)
  737. - Swapping container order for es pod (ewolinet@redhat.com)
  738. - Adding support for ES 5.x tech preview opt in (ewolinet@redhat.com)
  739. - bug 1540799: openshift_prometheus: update alertmanager config file flag
  740. (pgier@redhat.com)
  741. - parameterize various master scale group bits (jdiaz@redhat.com)
  742. - Use rollout instead of deploy (deprecated) (rteague@redhat.com)
  743. - cri-o: export variables defined in crio-network (gscrivan@redhat.com)
  744. * Mon Feb 05 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.38.0
  745. - Moving upgrade sg playbook to 3.9 (kwoodson@redhat.com)
  746. - remove openshift_upgrade_{pre,post}_storage_migration_enabled from
  747. failed_when (nakayamakenjiro@gmail.com)
  748. - Fix version handling in 3.8/3.9 control plane upgrades (rteague@redhat.com)
  749. - add S3 bucket cleanup (jdiaz@redhat.com)
  750. - dynamic inventory bug when group exists but its empty (m.judeikis@gmail.com)
  751. - dynamic inventory bug when group exists but its empty (m.judeikis@gmail.com)
  752. - Parameterize user and disable_root options in cloud config
  753. (nelluri@redhat.com)
  754. - Fix softlinks broken by d3fefc32a727fe3c13159c4e9fe4399f35b487a8
  755. (Klaas-@users.noreply.github.com)
  756. * Fri Feb 02 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.37.0
  757. - Don't use 'omit' for package module (vrutkovs@redhat.com)
  758. - Adding requirements for logging and metrics (ewolinet@redhat.com)
  759. - Disable master controllers before upgrade and re-enable those when restart
  760. mode is system (vrutkovs@redhat.com)
  761. - upgrade: run upgrade_control_plane and upgrade_nodes playbooks during full
  762. upgrade (vrutkovs@redhat.com)
  763. * Fri Feb 02 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.36.0
  764. - Add missing tasks file (sdodson@redhat.com)
  765. - Upgrade to migrate to using push to DNS for registries. (kwoodson@redhat.com)
  766. - Adding defaults for the gcp variables to fix an undefined ansible exception.
  767. (kwoodson@redhat.com)
  768. - Fix vsphere sanitization (sdodson@redhat.com)
  769. - Set a default for required vsphere variable (sdodson@redhat.com)
  770. - Add python2-crypto package (ccoleman@redhat.com)
  771. - hosts.example: clarify usage of openshift_master_cluster_public_hostname
  772. (vrutkovs@redhat.com)
  773. - Conditionally create pvcs for metrics depending on whether or not it already
  774. exists (ewolinet@redhat.com)
  775. - Update hosts examples with a note about scheduling on masters
  776. (vrutkovs@redhat.com)
  777. - Fixing file write issue. (kwoodson@redhat.com)
  778. - Only perform console configmap ops when >= 3.9 (sdodson@redhat.com)
  779. - Remove playbooks/adhoc/openshift_hosted_logging_efk.yaml (sdodson@redhat.com)
  780. - upgrades: use openshift_version as a regexp when checking
  781. openshift.common.version (vrutkovs@redhat.com)
  782. - Don't update master-config.yaml with logging/metrics urls >= 3.9
  783. (sdodson@redhat.com)
  784. - Make master schedulable (vrutkovs@redhat.com)
  785. - Re-add openshift_aws_elb_cert_arn. (abutcher@redhat.com)
  786. - Ignore openshift_pkg_version during 3.8 upgrade (rteague@redhat.com)
  787. - bug 1537857. Fix retrieving prometheus metrics (jcantril@redhat.com)
  788. - Remove master_ha bool checks (mgugino@redhat.com)
  789. - Don't restart docker when re-deploying node certificates (sdodson@redhat.com)
  790. - vsphere storage default add (davis.phillips@gmail.com)
  791. * Wed Jan 31 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.35.0
  792. - add glusterblock support for ansible (m.judeikis@gmail.com)
  793. - Add a bare minimum localhost hosts file (sdodson@redhat.com)
  794. - copy etcd client certificates for nuage openshift monitor
  795. (siva_teja.areti@nokia.com)
  796. - fix hostvars parameter name (tzumainn@redhat.com)
  797. - remove mountpoint parameter (tzumainn@redhat.com)
  798. - flake cleanup (tzumainn@redhat.com)
  799. - code simplification and lint cleanup (tzumainn@redhat.com)
  800. - Symlink kubectl to oc instead of openshift (mfojtik@redhat.com)
  801. - Rework provisioners vars to support different prefix/version for Origin/OSE
  802. (vrutkovs@redhat.com)
  803. - add cinder mountpoint to inventory (tzumainn@redhat.com)
  804. - allow setting of kibana env vars (jcantril@redhat.com)
  805. - No longer compare with legacy hosted var (ewolinet@redhat.com)
  806. - Preserving ES dc storage type unless overridden by inventory variable
  807. (ewolinet@redhat.com)
  808. - Fix: e2e tests failing due to :1936/metrics unaccessible.
  809. (jmencak@redhat.com)
  810. * Tue Jan 30 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.34.0
  811. - docker_creds: decode docker_config for py3 only if its a string
  812. (vrutkovs@redhat.com)
  813. - Removing ability to change default cassandra_pvc_prefix based on metrics
  814. volume name (ewolinet@redhat.com)
  815. - Don't deploy the console if disabled or registry subtype (sdodson@redhat.com)
  816. - [1538960] Correct ability to overried openshift_management_app_template
  817. (rteague@redhat.com)
  818. * Tue Jan 30 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.33.0
  819. -
  820. * Tue Jan 30 2018 Justin Pierce <jupierce@redhat.com> 3.9.0-0.32.0
  821. - Revert "Revert "use non-deprecated REGISTRY_OPENSHIFT_SERVER_ADDR variable to
  822. set the registry hostname"" (bparees@users.noreply.github.com)
  823. - Rebase Prometheus example for new scrape endpoints and expose alert manager
  824. (m.judeikis@gmail.com)
  825. - Revert "use non-deprecated REGISTRY_OPENSHIFT_SERVER_ADDR variable to set the
  826. registry hostname" (bparees@users.noreply.github.com)
  827. - Bug 1539182: Detect if ClusterResourceOverrides enabled during console
  828. install (spadgett@redhat.com)
  829. - Fix container_runtime variable typo (mgugino@redhat.com)
  830. - Correct 3.7 to 3.9 upgrade openshift_image_tag (mgugino@redhat.com)
  831. - Fix misaligned ports for sg,elb,api (mazzystr@gmail.com)
  832. - Add GPG keys in the base image and don't install docker (ccoleman@redhat.com)
  833. - Change catalog roles install to use aggregation (jpeeler@redhat.com)
  834. - Make IP object a string (fabian@fabianism.us)
  835. - Add kube service ipaddress to no_proxy list (sdodson@redhat.com)
  836. * Sat Jan 27 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.31.0
  837. - removed references to 'files' dir in spec file (dyocum@redhat.com)
  838. - files in ansible roles do not need to have the path specified to them when
  839. referenced by a builtin module, i.e., copy: (dyocum@redhat.com)
  840. - moving files to their correct <role>/files dir for the openshift_web_console
  841. and template_service_broker roles (dyocum@redhat.com)
  842. * Fri Jan 26 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.30.0
  843. - Removing dependency on the extra stroage device. (kwoodson@redhat.com)
  844. * Fri Jan 26 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.29.0
  845. - Add prometheus annotations to console service (spadgett@redhat.com)
  846. - Add resource requests to console template (spadgett@redhat.com)
  847. - ignore 'users' field in oc_group module (jdiaz@redhat.com)
  848. * Fri Jan 26 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.28.0
  849. - Updating deprecations to use callback plugin (ewolinet@redhat.com)
  850. - Run console pods on the master (spadgett@redhat.com)
  851. * Fri Jan 26 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.26.0
  852. - docker_image_availability: containerized overrides (lmeyer@redhat.com)
  853. - Remove old assetConfig from master-config.yaml (spadgett@redhat.com)
  854. - Don't emit assetConfig on 3.9 (sdodson@redhat.com)
  855. * Fri Jan 26 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.25.0
  856. - [1502838] Correct certificate alt name parsing (rteague@redhat.com)
  857. - sync imagestreams+templates from origin master for v3.9 (bparees@redhat.com)
  858. - node: specify bind option to /root/.docker (gscrivan@redhat.com)
  859. - [1530403] Improve etcd group error message (rteague@redhat.com)
  860. - Only automatically restart if cluster is in yellow or green state
  861. (ewolinet@redhat.com)
  862. - openshift_manage_node: Label nodes in one pass (vrutkovs@redhat.com)
  863. - Redeploy etcd certificates during upgrade when etcd hostname not present in
  864. etcd serving cert SAN. (abutcher@redhat.com)
  865. - Create swapoff module (mgugino@redhat.com)
  866. - Label masters with node-role.kubernetes.io/master. This PR also sets these
  867. labels and scheduling status during upgrades (vrutkovs@redhat.com)
  868. - [1537946] Correct conditional check for GlusterFS IPs (rteague@redhat.com)
  869. - Remove unused node.lables from openshift_facts (mgugino@redhat.com)
  870. - Change dnsmasq Requires to Wants.
  871. https://bugzilla.redhat.com/show_bug.cgi?id=1532960 (rchopra@redhat.com)
  872. - Set a default for openshift_hosted_registry_storage_azure_blob_realm
  873. (sdodson@redhat.com)
  874. - openshift_prometheus: remove block duration settings (pgier@redhat.com)
  875. * Wed Jan 24 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.24.0
  876. - Update CF 4.6 Beta templates in openshift_management directory
  877. (simaishi@redhat.com)
  878. - installer: increase content width for commands, which may output URLs
  879. (vrutkovs@redhat.com)
  880. - Only rollout console if config changed (spadgett@redhat.com)
  881. - Protect master installed version during node upgrades (mgugino@redhat.com)
  882. - [1506866] Update haproxy.cfg.j2 (rteague@redhat.com)
  883. - Split control plane and component install in deploy_cluster
  884. (ccoleman@redhat.com)
  885. - Add clusterResourceOverridesEnabled to console config (spadgett@redhat.com)
  886. - [1537105] Add openshift_facts to flannel role (rteague@redhat.com)
  887. - PyYAML is required by openshift_facts on nodes (ccoleman@redhat.com)
  888. - Move origin-gce roles and playbooks into openshift-ansible
  889. (ccoleman@redhat.com)
  890. - Directly select the ansible version (ccoleman@redhat.com)
  891. - use non-deprecated REGISTRY_OPENSHIFT_SERVER_ADDR variable to set the
  892. registry hostname (bparees@redhat.com)
  893. - update Dockerfile to add boto3 dependency (jdiaz@redhat.com)
  894. - Lowercase node names when creating certificates (vrutkovs@redhat.com)
  895. - NFS Storage: make sure openshift_hosted_*_storage_nfs_directory are quoted
  896. (vrutkovs@redhat.com)
  897. - Fix etcd scaleup playbook (mgugino@redhat.com)
  898. - Bug 1524805- ServiceCatalog now works disconnected (fabian@fabianism.us)
  899. - [1506750] Ensure proper hostname check override (rteague@redhat.com)
  900. - failed_when lists are implicitely ANDs, not ORs (vrutkovs@redhat.com)
  901. - un-hardcode default subnet az (jdiaz@redhat.com)
  902. - Ensure that node names are lowerecased before matching (sdodson@redhat.com)
  903. - Bug 1534020 - Only set logging and metrics URLs if console config map exists
  904. (spadgett@redhat.com)
  905. - Add templates to v3.9 (simaishi@redhat.com)
  906. - Use Beta repo path (simaishi@redhat.com)
  907. - CF 4.6 templates (simaishi@redhat.com)
  908. - Add ability to mount volumes into system container nodes (mgugino@redhat.com)
  909. - Fix to master-internal elb scheme (mazzystr@gmail.com)
  910. - Allow 5 etcd hosts (sdodson@redhat.com)
  911. - Remove unused symlink (sdodson@redhat.com)
  912. - docker_creds: fix python3 exception (gscrivan@redhat.com)
  913. - docker_creds: fix python3 exception (gscrivan@redhat.com)
  914. - docker: use image from CentOS and Fedora registries (gscrivan@redhat.com)
  915. - crio: use Docker and CentOS registries for the image (gscrivan@redhat.com)
  916. - The provision_install file ends in yml not yaml! Ansible requirement
  917. clarification. (mbruzek@gmail.com)
  918. * Tue Jan 23 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.23.0
  919. - docker_image_availability: enable skopeo to use proxies (lmeyer@redhat.com)
  920. - Install base_packages earlier (mgugino@redhat.com)
  921. - allow uninstalling AWS objects created by prerequisite playbook
  922. (jdiaz@redhat.com)
  923. - Bug 1536262: Default console and TSB node selector to
  924. openshift_hosted_infra_selector (spadgett@redhat.com)
  925. - Migrate master-config.yaml asset config (spadgett@redhat.com)
  926. - Fix master scaleup play (mgugino@redhat.com)
  927. - use admin credentials for tsb install operations (bparees@redhat.com)
  928. - Fix etcd-upgrade sanity checks (mgugino@redhat.com)
  929. - Bug 1536253: Pass `--config` flag on oc commands when installing console
  930. (spadgett@redhat.com)
  931. - Fix enterprise registry-console prefix (sdodson@redhat.com)
  932. - [release-3.7] Fix enterprise registry console image prefix
  933. (sdodson@redhat.com)
  934. - [release-3.6] Fix enterprise registry console image prefix
  935. (sdodson@redhat.com)
  936. - Bug 1512825 - add mux pod failed for Serial number 02 has already been issued
  937. (nhosoi@redhat.com)
  938. - Remove old console asset config (spadgett@redhat.com)
  939. - Add support for Amazon EC2 C5 instance types (rteague@redhat.com)
  940. - Fix provider network support at openstack playbook (ltomasbo@redhat.com)
  941. * Fri Jan 19 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.22.0
  942. - Fix OpenStack readme (tomas@sedovic.cz)
  943. - Quick installer: deprecate upgrades (vrutkovs@redhat.com)
  944. - Fix node scaleup plays (mgugino@redhat.com)
  945. - Rollout console after template service broker install (spadgett@redhat.com)
  946. - Use openshift_is_containerized instead of openshift_is_atomic when installing
  947. etcd (vrutkovs@redhat.com)
  948. - Bug 1535947: Fix missing task in metrics, logging uninstall playbooks
  949. (spadgett@redhat.com)
  950. - Make openshift_web_console_prefix defaults like other components
  951. (sdodson@redhat.com)
  952. - Allow for firewalld on atomic host (sdodson@redhat.com)
  953. - Drop the testing repo var from openstack readme (tomas@sedovic.cz)
  954. - Add Azure to support openshift_cloudprovider_kind (wehe@redhat.com)
  955. - bug 1523047. Annotate ops projects with an .operation prefix
  956. (jcantril@redhat.com)
  957. - Pull openshift_image_tag from oo_masters_to_config rather oo_first_master.
  958. (abutcher@redhat.com)
  959. - Ensure atomic_proxies are configured with docker (mgugino@redhat.com)
  960. - Default install_result when reloading generated facts. (abutcher@redhat.com)
  961. - health checks: update required pkg versions (lmeyer@redhat.com)
  962. - health checks: factor out get_required_version (lmeyer@redhat.com)
  963. - package_version check: reuse get_major_minor_version (lmeyer@redhat.com)
  964. - Rework default TSB prefix and imagename to match other services
  965. (vrutkovs@redhat.com)
  966. - Add new grafana playbook. (mrsiano@gmail.com)
  967. - Remove duplication in node acceptance playbook and setup master groups so
  968. that we can use the first master's ansible_ssh_user when delegating.
  969. (abutcher@redhat.com)
  970. - Setting default storage_class_names for when calling
  971. openshift_logging_elasticsearch role (ewolinet@redhat.com)
  972. - adding check if secret auth is needed (shawn.hurley21@gmail.com)
  973. - adding asb auth as a secret. (shawn.hurley21@gmail.com)
  974. - Ensure we are running oc execs against running pods (ewolinet@redhat.com)
  975. - Automatic profile setting for tuned 2.9 (jmencak@redhat.com)
  976. - Fix flake8 errors in utils/test (vrutkovs@redhat.com)
  977. - kibana checks: use six.moves instead of ImportError (vrutkovs@redhat.com)
  978. * Wed Jan 17 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.21.0
  979. - Add call to 3.8 playbook in 3.9 upgrade (sdodson@redhat.com)
  980. - Remove 3.8 and 3.9 specific steps right now (sdodson@redhat.com)
  981. - Exclude 3.9 packages during 3.8 upgrade (sdodson@redhat.com)
  982. - fix typos (sdodson@redhat.com)
  983. - Ensure openshift_client_binary is set (sdodson@redhat.com)
  984. - Add init/main.yml to etc-upgrade (mgugino@redhat.com)
  985. - Fix a typo in "Determine if growpart is installed" (vrutkovs@redhat.com)
  986. - Check rc for commands with openshift_client_binary and failed_when
  987. (vrutkovs@redhat.com)
  988. - Update console config for API changes (spadgett@redhat.com)
  989. - include elasticsearch container name (jvallejo@redhat.com)
  990. - openshift_checks: repair adhoc list-checks mode (lmeyer@redhat.com)
  991. - Remove tuned-profiles from list of master packages upgraded
  992. (sdodson@redhat.com)
  993. - Add missing task that got dropped in a refactor (sdodson@redhat.com)
  994. - Web Console: use a different var for asset config (vrutkovs@redhat.com)
  995. - Document the inventory change (tomas@sedovic.cz)
  996. - Move the OpenStack dynamic inventory from sample (tomas@sedovic.cz)
  997. - fix bug 1534271 (wmeng@redhat.com)
  998. - Don't use from ansible.module_utils.six as its no longer available in Ansible
  999. 2.4 (vrutkovs@redhat.com)
  1000. - Add console RBAC template (spadgett@redhat.com)
  1001. - Setup master groups in order to use the master group's ansible_ssh_user to
  1002. pull bootstrap kubeconfig. (abutcher@redhat.com)
  1003. - adding ability to add network policy objects. (shawn.hurley21@gmail.com)
  1004. - add python2-boto3 package for centos-based origin-ansible container image
  1005. (jdiaz@redhat.com)
  1006. - adding ability to interact with network resources. (shawn.hurley21@gmail.com)
  1007. - Adding .ini to inventory_ignore_extensions (bedin@redhat.com)
  1008. * Mon Jan 15 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.20.0
  1009. - Adjust openstack provider dependencies versions (bdobreli@redhat.com)
  1010. - Fix openstack provider playbook name in docs (bdobreli@redhat.com)
  1011. - Install web console on upgrade (spadgett@redhat.com)
  1012. - Add var for controller to enable async bindings (jpeeler@redhat.com)
  1013. - Add cluster-operator playbook directory. (abutcher@redhat.com)
  1014. - Move s3 & elb provisioning into their own playbooks s.t. they are applied
  1015. outside of the openshift_aws master provisioning tasks. (abutcher@redhat.com)
  1016. - Update to AWS EC2 root vol size so that Health Check tasks pass
  1017. (mazzystr@gmail.com)
  1018. - Configure Kuryr CNI daemon (mdulko@redhat.com)
  1019. - Clean up host-local IPAM data while nodes are drained (danw@redhat.com)
  1020. * Fri Jan 12 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.19.0
  1021. -
  1022. * Fri Jan 12 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.18.0
  1023. -
  1024. * Fri Jan 12 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.17.0
  1025. - Update latest image streams and templates (sdodson@redhat.com)
  1026. - Use webconsole.config.openshift.io/v1 API group (spadgett@redhat.com)
  1027. - Add missing v3.9 gluster templates (sdodson@redhat.com)
  1028. - Spelling and grammar changes to the advanced-configuration.md file.
  1029. (mbruzek@gmail.com)
  1030. - Fixing openshift_hosted variable. (kwoodson@redhat.com)
  1031. - Update deployment and apiserver with new certs (jpeeler@redhat.com)
  1032. - Move more plugins to lib_utils (mgugino@redhat.com)
  1033. - Add the ability to specify a timeout for node drain operations
  1034. (sdodson@redhat.com)
  1035. - Add defaults for openshift_pkg_version (mgugino@redhat.com)
  1036. - Fix typo in the advanced config docs (tomas@sedovic.cz)
  1037. - Write guide on setting up PVs with Cinder (tomas@sedovic.cz)
  1038. - Allow using server names in openstack dynamic inv (tomas@sedovic.cz)
  1039. - Specify the Cinder version in the inventory (tomas@sedovic.cz)
  1040. - Add documentation example (joel.pearson@gmail.com)
  1041. - Add blockstorage version for openstack (joel.pearson@gmail.com)
  1042. - logging: fix jinja filters to support py3 (vrutkovs@redhat.com)
  1043. - Ability to specify override tolerations via the buildconfig overrider
  1044. (cdaley@redhat.com)
  1045. - Chmod temp dirs created on localhost (mgugino@redhat.com)
  1046. - Bug 1532787 - Add empty node selector to openshift-web-console namespace
  1047. (spadgett@redhat.com)
  1048. - Remove become statements (mgugino@redhat.com)
  1049. - Bug 1527178 - installation of logging stack failed: Invalid version specified
  1050. for Elasticsearch (nhosoi@redhat.com)
  1051. - Limit host group scope on control-plane upgrades (mgugino@redhat.com)
  1052. - Refactor version and move some checks into sanity_checks.py
  1053. (mgugino@redhat.com)
  1054. - Updating tsb image names and template (ewolinet@redhat.com)
  1055. - Ensure that openshift_facts role is imported whenever we rely on
  1056. openshift_client_binary (sdodson@redhat.com)
  1057. - Add key check for facts_for_clusterrolebindings (nakayamakenjiro@gmail.com)
  1058. - Update web console template (spadgett@redhat.com)
  1059. - Use openshift_node_use_openshift_sdn when doing a containerized node upgrade
  1060. (vrutkovs@redhat.com)
  1061. - Add iptables save handler (ichavero@redhat.com)
  1062. - Fix: change import_role to include_role (mgugino@redhat.com)
  1063. - docker storage setup for ami building (jdiaz@redhat.com)
  1064. - ensure containerized bools are cast (mgugino@redhat.com)
  1065. - Properly cast crio boolean variables to bool (mgugino@redhat.com)
  1066. - Build containerized host group dynamically (mgugino@redhat.com)
  1067. - install base_packages on oo_all_hosts (mgugino@redhat.com)
  1068. - Add key existing check to collect facts for rolebidings
  1069. (nakayamakenjiro@gmail.com)
  1070. - 3.9 upgrade: remove openshift.common.service_type (vrutkovs@redhat.com)
  1071. - container-engine: move registry_auth.yml before pull (gscrivan@redhat.com)
  1072. - Fix error in variable in comment (mscherer@users.noreply.github.com)
  1073. - Switch back to dynamic include_role in logging loops (sdodson@redhat.com)
  1074. - Use Contiv version 1.2.0 (flamingo@2thebatcave.com)
  1075. - Contiv multi-master and other fixes (flamingo@2thebatcave.com)
  1076. - Add missing dependency on openshift_facts (sdodson@redhat.com)
  1077. - upgrades: set openshift_client_binary fact when running on oo_first_master
  1078. host (vrutkovs@redhat.com)
  1079. - Install web console server (spadgett@redhat.com)
  1080. - Remove become=no from various roles and tasks (mgugino@redhat.com)
  1081. - Don't overwrite node's systemd units for containerized install
  1082. (vrutkovs@redhat.com)
  1083. - Migrate to import_role for static role inclusion (sdodson@redhat.com)
  1084. - docker_upgrade_check: skip repoquery calls on containerized setups
  1085. (vrutkovs@redhat.com)
  1086. - Adding logic to disable and reenable external communication to ES during full
  1087. restart (ewolinet@redhat.com)
  1088. - Provide example on how to use osm_etcd_image in a disconnected and
  1089. containerized installation (tkarlsso@redhat.com)
  1090. - crio: create /etc/sysconfig/crio-storage (gscrivan@redhat.com)
  1091. - crio: configure proxy variables (gscrivan@redhat.com)
  1092. - Fix docker_image_availability checks (mgugino@redhat.com)
  1093. - Install node packages in one task instead of 3 (mgugino@redhat.com)
  1094. - Don't hardcode the network interface in the openshift_logging_mux role
  1095. (nkinder@redhat.com)
  1096. - failure_summary: make sure msg is always a string (vrutkovs@redhat.com)
  1097. - Adding logic to do a full cluster restart if we are incrementing our major
  1098. versions of ES (ewolinet@redhat.com)
  1099. - test_oc_scale: add more scale test cases (vrutkovs@redhat.com)
  1100. - test_oc_scale: fix test docstrings (vrutkovs@redhat.com)
  1101. - Import prerequisites.yml for OpenStack (tomas@sedovic.cz)
  1102. - Set the correct path to the openstack.conf file (tomas@sedovic.cz)
  1103. - Return a openshift_node_labels as a dict (tomas@sedovic.cz)
  1104. - Remove last of openshift_node role meta-depends (mgugino@redhat.com)
  1105. - OpenStack provisioning -- support cns. (jmencak@redhat.com)
  1106. - Fix yaml syntax error in the sample inventory (tomas@sedovic.cz)
  1107. - Adding ability to update ami drive size. (kwoodson@redhat.com)
  1108. - Add origin- prefix to ASB image (fabian@fabianism.us)
  1109. - lint issues (davis.phillips@gmail.com)
  1110. - add vsphere examples in hosts.example (davis.phillips@gmail.com)
  1111. - add template and vsphere.conf (davis.phillips@gmail.com)
  1112. - add vsphere cloud providers (davis.phillips@gmail.com)
  1113. - Fix wrong indentation (ichavero@redhat.com)
  1114. - Fix yaml indentation (ichavero@redhat.com)
  1115. - Add iptables rules for flannel (ichavero@redhat.com)
  1116. * Wed Jan 03 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.16.0
  1117. - Add gluster 3.9 templates (sdodson@redhat.com)
  1118. - Add in-tree CI scripts (mgugino@redhat.com)
  1119. * Wed Jan 03 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.15.0
  1120. -
  1121. * Wed Jan 03 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.14.0
  1122. - Cast openshift_docker_use_system_container to bool (mgugino@redhat.com)
  1123. - Correct kublet_args cloud-provider directories (mgugino@redhat.com)
  1124. - Updating logging_facts to be able to pull values from config maps yaml files,
  1125. use diffs to keep custom changes, white list certain settings when creating
  1126. diffs (ewolinet@redhat.com)
  1127. - Add docker auth credentials to system container install (mgugino@redhat.com)
  1128. - Move wait_for_pods to it's own play openshift_hosted (mgugino@redhat.com)
  1129. - Remove oauth_template bits from openshift_facts (mgugino@redhat.com)
  1130. * Tue Jan 02 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.13.0
  1131. - Bug 1527178 - installation of logging stack failed: Invalid version specified
  1132. for Elasticsearch (nhosoi@redhat.com)
  1133. - Remove bootstrap.yml from main.yml in openshift_node role
  1134. (mgugino@redhat.com)
  1135. * Tue Jan 02 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.12.0
  1136. -
  1137. * Mon Jan 01 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.11.0
  1138. - aws: Fix misnamed variable in provisioning_vars.yml.example
  1139. (mbarnes@fedoraproject.org)
  1140. - Fix container_runtime openshift_containerized_host_groups
  1141. (mgugino@redhat.com)
  1142. - Remove references to deployment_type (mgugino@redhat.com)
  1143. - Must directly specify google-cloud-sdk version (ccoleman@redhat.com)
  1144. - daemonset config role. (kwoodson@redhat.com)
  1145. - Move validate_hosts to prerequisites.yml (mgugino@redhat.com)
  1146. - Move sanity_checks into custom action plugin (mgugino@redhat.com)
  1147. - Remove openshift.common.{is_atomic|is_containerized} (mgugino@redhat.com)
  1148. - Adding support for docker-storage-setup on overlay (kwoodson@redhat.com)
  1149. - Add gcloud to the installer image (ccoleman@redhat.com)
  1150. - Remove some small items from openshift_facts (mgugino@redhat.com)
  1151. - Relocate filter plugins to lib_utils (mgugino@redhat.com)
  1152. - Fix hosted_reg_router selectors (mgugino@redhat.com)
  1153. - set repos after registration: convert to match task -> import_role model.
  1154. (markllama@gmail.com)
  1155. - Remove openshift_node_facts role (mgugino@redhat.com)
  1156. - Move node group tags to openshift_aws_{master,node}_group.
  1157. (abutcher@redhat.com)
  1158. - Add CentOS-OpenShift-Origin37 repo template. (abutcher@redhat.com)
  1159. - Adding no_log to registry_auth. (kwoodson@redhat.com)
  1160. - Fix rhel_repos disable command (mazzystr@gmail.com)
  1161. - Fix rhel_subscribe boolean (mgugino@redhat.com)
  1162. - Move repo and subscribe to prerequisites (mgugino@redhat.com)
  1163. - Deprecate using Ansible tests as filters (rteague@redhat.com)
  1164. - Removing config trigger for ES DC, updating to use a handler to rollout ES at
  1165. the end of a deployment, allowing for override with variable
  1166. (ewolinet@redhat.com)
  1167. - openshift_logging_{fluentd,mux}_file_buffer_limit mismatch
  1168. (nhosoi@redhat.com)
  1169. - Update version check to Ansible 2.4.1 (rteague@redhat.com)
  1170. - Remove openshift_node_facts part 1 (mgugino@redhat.com)
  1171. - Validate node hostname and IP address (rteague@redhat.com)
  1172. - Add missing openshift_service_type (mgugino@redhat.com)
  1173. - prevent TSB pods from spinning on inappropriate nodes (jminter@redhat.com)
  1174. - Add readiness probe to kuryr controller pod (ltomasbo@redhat.com)
  1175. * Thu Dec 14 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.10.0
  1176. - Bump requirements.txt to Ansible 2.4.1 (rteague@redhat.com)
  1177. - Commit to stabalize RHSM operations. This code is derived from contrib
  1178. (mazzystr@gmail.com)
  1179. - Contiv systemd fixes (flamingo@2thebatcave.com)
  1180. - Combine openshift_master/vars with defaults (mgugino@redhat.com)
  1181. - crio: change socket path to /var/run/crio/crio.sock (gscrivan@redhat.com)
  1182. - Remove version requirement from openvswitch package, since listed version got
  1183. removed from repo (riffraff@hobbes.alephone.org)
  1184. * Thu Dec 14 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.9.0
  1185. - etcd: use Fedora /latest/ instead of hardcoding the version
  1186. (gscrivan@redhat.com)
  1187. - docker: use Fedora /latest/ instead of hardcoding the version
  1188. (gscrivan@redhat.com)
  1189. - upgrade node mark 2 (mgugino@redhat.com)
  1190. - Refactor node upgrade to include less serial tasks (mgugino@redhat.com)
  1191. - fix 1519808. Only annotate ops projects when openshift_logging_use_ops=true
  1192. (jcantril@redhat.com)
  1193. - Ensure that clients are version bound (sdodson@redhat.com)
  1194. - Support for making glusterfs storage class a default one.
  1195. (jmencak@redhat.com)
  1196. - Add support for storage classes to openshift_prometheus role.
  1197. (jmencak@redhat.com)
  1198. - Do not escalate privileges in logging stack deployment task
  1199. (iacopo.rozzo@amadeus.com)
  1200. - Multimaster openshift+contiv fixes (landillo@cisco.com)
  1201. - Sync latest image-streams and templates (alexandre.lossent@cern.ch)
  1202. * Tue Dec 12 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.8.0
  1203. - Remove empty openshift_hosted_facts role (mgugino@redhat.com)
  1204. - Refactor upgrade codepaths step 1 (mgugino@redhat.com)
  1205. * Tue Dec 12 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.7.0
  1206. - Remove bad openshift_examples symlink (rteague@redhat.com)
  1207. - Changing the node group format to a list. (kwoodson@redhat.com)
  1208. - Bump RPM version requirement (sdodson@redhat.com)
  1209. - Clarify version selection in README (mgugino@redhat.com)
  1210. * Tue Dec 12 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.6.0
  1211. - add openshift_master_api_port var to example inventory (jdiaz@redhat.com)
  1212. - Allow 2 sets of hostnames for openstack provider (bdobreli@redhat.com)
  1213. * Mon Dec 11 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.5.0
  1214. - Remove unneeded embedded etcd logic (mgugino@redhat.com)
  1215. * Mon Dec 11 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.4.0
  1216. - Copying upstream fix for ansible 2.4 ec2_group module. (kwoodson@redhat.com)
  1217. - Add missing dependencies on openshift_facts role (sdodson@redhat.com)
  1218. * Mon Dec 11 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.3.0
  1219. - remove integration tests from tox (lmeyer@redhat.com)
  1220. - correct ansible-playbook command syntax (jdiaz@redhat.com)
  1221. - Add openshift_facts to upgrade plays for service_type (mgugino@redhat.com)
  1222. - Check for openshift attribute before using it during CNS install.
  1223. (jmencak@redhat.com)
  1224. * Mon Dec 11 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.2.0
  1225. - GlusterFS: Add playbook doc note (jarrpa@redhat.com)
  1226. - Fix openshift hosted registry rollout (rteague@redhat.com)
  1227. - Remove container_runtime from the openshift_version (sdodson@redhat.com)
  1228. * Fri Dec 08 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.1.0
  1229. - Cleanup byo references (rteague@redhat.com)
  1230. - openshift_node: reintroduce restart of CRI-O. (gscrivan@redhat.com)
  1231. - container-engine: skip openshift_docker_log_driver when it is False
  1232. (gscrivan@redhat.com)
  1233. - container-engine: log-opts is a dictionary in the daemon.json file
  1234. (gscrivan@redhat.com)
  1235. - openshift_version: add dependency to openshift_facts (gscrivan@redhat.com)
  1236. - openshift_version: define openshift_use_crio_only (gscrivan@redhat.com)
  1237. - openshift_version: add dependency to container_runtime (gscrivan@redhat.com)
  1238. - crio: define and use l_is_node_system_container (gscrivan@redhat.com)
  1239. - Update deprecation checks - include: (rteague@redhat.com)
  1240. - Add os_firewall to prerequisites.yml (mgugino@redhat.com)
  1241. - add 3.8 templates for gluster ep and svc (lmeyer@redhat.com)
  1242. - Remove openshift.common.service_type (mgugino@redhat.com)
  1243. - Remove unused openshift_env_structures and openshift_env (mgugino@redhat.com)
  1244. - Fix incorrect register name master registry auth (mgugino@redhat.com)
  1245. - Include Deprecation: Convert to import_playbook (rteague@redhat.com)
  1246. - add 3.8 templates for gluster ep and svc (m.judeikis@gmail.com)
  1247. - Remove all uses of openshift.common.admin_binary (sdodson@redhat.com)
  1248. - Implement container_runtime playbooks and changes (mgugino@redhat.com)
  1249. - Playbook Consolidation - byo/config.yml (rteague@redhat.com)
  1250. - openshift_logging_kibana: fix mixing paren (lmeyer@redhat.com)
  1251. - Fix ami building. (kwoodson@redhat.com)
  1252. - Include Deprecation: Convert to include_tasks (rteague@redhat.com)
  1253. - Add missing symlinks in openshift-logging (rteague@redhat.com)
  1254. - Fix generate_pv_pvcs_list plugin undef (mgugino@redhat.com)
  1255. - Playbook Consolidation - etcd Upgrade (rteague@redhat.com)
  1256. - bug 1519622. Disable rollback of ES DCs (jcantril@redhat.com)
  1257. - Remove all references to pacemaker (pcs, pcsd) and
  1258. openshift.master.cluster_method. (abutcher@redhat.com)
  1259. - Remove entry point files no longer needed by CI (rteague@redhat.com)
  1260. - Don't check for the deployment_type (tomas@sedovic.cz)
  1261. - Get the correct value out of openshift_release (tomas@sedovic.cz)
  1262. - Fix oreg_auth_credentials_create register var (mgugino@redhat.com)
  1263. - Fix and cleanup not required dns bits (bdobreli@redhat.com)
  1264. - Fix hosted vars (mgugino@redhat.com)
  1265. - Remove duplicate init import in network_manager.yml (rteague@redhat.com)
  1266. - Document testing repos for dev purposes (bdobreli@redhat.com)
  1267. - Remove unused protected_facts_to_overwrite (mgugino@redhat.com)
  1268. - Use openshift testing repos for openstack (bdobreli@redhat.com)
  1269. - Use openshift_release instead of ose_version (tomas@sedovic.cz)
  1270. - Remove the ose_version check (tomas@sedovic.cz)
  1271. - Allow number of retries in openshift_management to be configurable
  1272. (ealfassa@redhat.com)
  1273. - Bumping to 3.9 (smunilla@redhat.com)
  1274. - Cleanup unused openstack provider code (bdobreli@redhat.com)
  1275. - Adding 3.9 tito releaser (smunilla@redhat.com)
  1276. - Implement container runtime role (mgugino@redhat.com)
  1277. - Fix glusterfs checkpoint info (rteague@redhat.com)
  1278. - storage_glusterfs: fix typo (lmeyer@redhat.com)
  1279. - Playbook Consolidation - Redeploy Certificates (rteague@redhat.com)
  1280. - Fix tox (tomas@sedovic.cz)
  1281. - Remove shell environment lookup (tomas@sedovic.cz)
  1282. - Revert "Fix syntax error caused by an extra paren" (tomas@sedovic.cz)
  1283. - Revert "Fix the env lookup fallback in rhel_subscribe" (tomas@sedovic.cz)
  1284. - Remove reading shell environment in rhel_subscribe (tomas@sedovic.cz)
  1285. - retry package operations (lmeyer@redhat.com)
  1286. - Add v3.9 support (sdodson@redhat.com)
  1287. - Playbook Consolidation - openshift-logging (rteague@redhat.com)
  1288. - Do not escalate privileges in jks generation tasks (iacopo.rozzo@amadeus.com)
  1289. - Fix inventory symlinks in origin-ansible container. (dgoodwin@redhat.com)
  1290. - Initial upgrade for scale groups. (kwoodson@redhat.com)
  1291. - Update the doc text (tomas@sedovic.cz)
  1292. - Optionally subscribe OpenStack RHEL nodes (tomas@sedovic.cz)
  1293. - Fix the env lookup fallback in rhel_subscribe (tomas@sedovic.cz)
  1294. - Fix syntax error caused by an extra paren (tomas@sedovic.cz)
  1295. - Fix no_log warnings for custom module (mgugino@redhat.com)
  1296. - Add external_svc_subnet for k8s loadbalancer type service
  1297. (jihoon.o@samsung.com)
  1298. - Remove openshift_facts project_cfg_facts (mgugino@redhat.com)
  1299. - Remove dns_port fact (mgugino@redhat.com)
  1300. - Bug 1512793- Fix idempotence issues in ASB deploy (fabian@fabianism.us)
  1301. - Remove unused task file from etcd role (rteague@redhat.com)
  1302. - fix type in authroize (jchaloup@redhat.com)
  1303. - Use IP addresses for OpenStack nodes (tomas@sedovic.cz)
  1304. - Update prometheus to 2.0.0 GA (zgalor@redhat.com)
  1305. - remove schedulable from openshift_facts (mgugino@redhat.com)
  1306. - inventory: Add example for service catalog vars (smilner@redhat.com)
  1307. - Correct usage of import_role (rteague@redhat.com)
  1308. - Remove openshift.common.cli_image (mgugino@redhat.com)
  1309. - Fix openshift_env fact creation within openshift_facts. (abutcher@redhat.com)
  1310. - Combine openshift_node and openshift_node_dnsmasq (mgugino@redhat.com)
  1311. - GlusterFS: Remove extraneous line from glusterblock template
  1312. (jarrpa@redhat.com)
  1313. - Remove openshift_clock from meta depends (mgugino@redhat.com)
  1314. - Simplify is_master_system_container logic (mgugino@redhat.com)
  1315. - dist.iteritems() no longer exists in Python 3. (jpazdziora@redhat.com)
  1316. - Remove spurrious file committed by error (diego.abelenda@camptocamp.com)
  1317. - Fix name of the service pointed to by hostname
  1318. (diego.abelenda@camptocamp.com)
  1319. - Missed the default value after the variable name change...
  1320. (diego.abelenda@camptocamp.com)
  1321. - Change the name of the variable and explicitely document the names
  1322. (diego.abelenda@camptocamp.com)
  1323. - Allow to set the hostname for routes to prometheus and alertmanager
  1324. (diego.abelenda@camptocamp.com)
  1325. - Allow openshift_install_examples to be false (michael.fraenkel@gmail.com)
  1326. - Include Deprecation - openshift-service-catalog (rteague@redhat.com)
  1327. - Remove is_openvswitch_system_container from facts (mgugino@redhat.com)
  1328. - Workaround the fact that package state=present with dnf fails for already
  1329. installed but excluded packages. (jpazdziora@redhat.com)
  1330. - With dnf repoquery and excluded packages, --disableexcludes=all is needed to
  1331. list the package with --installed. (jpazdziora@redhat.com)
  1332. - Add support for external glusterfs as registry backend (m.judeikis@gmail.com)
  1333. - cri-o: honor additional and insecure registries again (gscrivan@redhat.com)
  1334. - docker: copy Docker metadata to the alternative storage path
  1335. (gscrivan@redhat.com)
  1336. - Add check for gluterFS DS to stop restarts (m.judeikis@gmail.com)
  1337. - Bug 1514417 - Adding correct advertise-client-urls (shawn.hurley21@gmail.com)
  1338. - Uninstall tuned-profiles-atomic-openshift-node as defined in origin.spec
  1339. (jmencak@redhat.com)
  1340. - Mod startup script to publish all frontend binds (cwilkers@redhat.com)
  1341. * Thu Nov 23 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.13.0
  1342. -
  1343. * Thu Nov 23 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.12.0
  1344. -
  1345. * Thu Nov 23 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.11.0
  1346. -
  1347. * Thu Nov 23 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.10.0
  1348. - tox.ini: simplify unit test reqs (lmeyer@redhat.com)
  1349. - Remove unused task files (rteague@redhat.com)
  1350. - Playbook Consolidation - openshift-provisioners (rteague@redhat.com)
  1351. - Include Deprecation - openshift-prometheus (rteague@redhat.com)
  1352. - Include Deprecation - openshift-node (rteague@redhat.com)
  1353. - Include Deprecation - openshift-management (rteague@redhat.com)
  1354. - Include Deprecation - openshift-glusterfs (rteague@redhat.com)
  1355. - Include Deprecation - openshift-master (rteague@redhat.com)
  1356. - Include Deprecation - openshift-hosted (rteague@redhat.com)
  1357. - Playbook Consolidation - openshift-service-catalog (rteague@redhat.com)
  1358. - Include Deprecation - openshift-nfs (rteague@redhat.com)
  1359. - Include Deprecation - openshift-metrics (rteague@redhat.com)
  1360. - Include Deprecation - openshift-etcd (rteague@redhat.com)
  1361. - Fix system_images_registry variable (mgugino@redhat.com)
  1362. - Include Deprecation - openshift-loadbalancer (rteague@redhat.com)
  1363. - Include Deprecation - openshift-checks (rteague@redhat.com)
  1364. - Playbook Consolidation - openshift-management (rteague@redhat.com)
  1365. - Playbook Consolidation - openshift-master (rteague@redhat.com)
  1366. - Playbook Consolidation - openshift-hosted (rteague@redhat.com)
  1367. - Place-holder for prerequisites.yml (mgugino@redhat.com)
  1368. - Cleanup etcd runtime variable. (mgugino@redhat.com)
  1369. - Fix uninstall option for prometheus (zgalor@redhat.com)
  1370. - Playbook Consolidation - openshift-glusterfs (rteague@redhat.com)
  1371. - Playbook Consolidation - openshift-metrics (rteague@redhat.com)
  1372. - Playbook Consolidation - openshift-loadbalancer (rteague@redhat.com)
  1373. - hosted_registry: clean up tmp mount point and fstab (dusty@dustymabe.com)
  1374. * Wed Nov 22 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.9.0
  1375. - Fix node system container var (mgugino@redhat.com)
  1376. - Add temporary playbook for CI test functionality (rteague@redhat.com)
  1377. - Playbook Consolidation - openshift-node (rteague@redhat.com)
  1378. - Fix logic for any sys containers (mgugino@redhat.com)
  1379. - containerPort must be an int; correctly quote/brace replicas value
  1380. (rmeggins@redhat.com)
  1381. - papr: use new PAPR_PULL_TARGET_BRANCH (jlebon@redhat.com)
  1382. - Refactor etcd image (mgugino@redhat.com)
  1383. - GlusterFS: Files and templates for 3.8 (jarrpa@redhat.com)
  1384. - Only remove empty keys from env if env exists (sdodson@redhat.com)
  1385. - Upgrade to etcd 3.2 (sdodson@redhat.com)
  1386. - Allow modifying and adding prometheus application arguments
  1387. (zgalor@redhat.com)
  1388. - Playbook Consolidation - openshift-nfs (rteague@redhat.com)
  1389. - Playbook Consolidation - openshift-etcd (rteague@redhat.com)
  1390. - Include Deprecation - Init Playbook Paths (rteague@redhat.com)
  1391. * Mon Nov 20 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.8.0
  1392. -
  1393. * Mon Nov 20 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.7.0
  1394. -
  1395. * Mon Nov 20 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.6.0
  1396. -
  1397. * Sun Nov 19 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.5.0
  1398. -
  1399. * Sun Nov 19 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.4.0
  1400. - bug 1498398. Enclose content between store tag (rromerom@redhat.com)
  1401. * Fri Nov 17 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.3.0
  1402. - papr: auto-detect image tag to use and bump to f27 (jlebon@redhat.com)
  1403. - Updating mtu value to int (kwoodson@redhat.com)
  1404. - fix the logging-es-prometheus selector (jcantril@redhat.com)
  1405. - GlusterFS: Add configuration for auto creating block-hosting volumes
  1406. (jarrpa@redhat.com)
  1407. - Playbook Consolidation - openshift-checks (rteague@redhat.com)
  1408. - Combine openshift_node and openshift_node_upgrade (mgugino@redhat.com)
  1409. - registry-console: align image and check (lmeyer@redhat.com)
  1410. - registry-console template 3.8 consistency (lmeyer@redhat.com)
  1411. - registry-console template 3.7 consistency (lmeyer@redhat.com)
  1412. - registry-console template 3.6 consistency (lmeyer@redhat.com)
  1413. * Thu Nov 16 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.2.0
  1414. - Fix openstack init (rteague@redhat.com)
  1415. - Ensure node service is started. (kwoodson@redhat.com)
  1416. - Added aos-3.8 releaser for tito (smunilla@redhat.com)
  1417. - Playbook Consolidation - Initialization (rteague@redhat.com)
  1418. - Minor tweaks to ansible.cfg and example inventory (rteague@redhat.com)
  1419. - Removed old version code (mgugino@redhat.com)
  1420. - Fixing islnk. (kwoodson@redhat.com)
  1421. - Removing setting prefix and version facts in openshift_logging to let the
  1422. component roles set their defaults (ewolinet@redhat.com)
  1423. - Create prometheus configmaps before statefulset (zgalor@redhat.com)
  1424. - Bug 1510496 - logging: honor ES PVC size (jwozniak@redhat.com)
  1425. - Combine master upgrade play with role (mgugino@redhat.com)
  1426. - Fix stale data in openshift_facts for logging (mgugino@redhat.com)
  1427. - Start requiring Ansible 2.4 (rteague@redhat.com)
  1428. - Fixing origin default for es proxy (ewolinet@redhat.com)
  1429. - Addressing tox errors (ewolinet@redhat.com)
  1430. - Addressing comments (ewolinet@redhat.com)
  1431. - Initial Kuryr Ports Pool Support (ltomasbo@redhat.com)
  1432. - Remove an unused retry file (tomas@sedovic.cz)
  1433. - Namespace the docker volumes (tomas@sedovic.cz)
  1434. - Fix tox (tomas@sedovic.cz)
  1435. - Namespace the OpenStack vars (tomas@sedovic.cz)
  1436. - Use `null` instead of `False` where it makes sense (tomas@sedovic.cz)
  1437. - Simplify the template paths for the storage setup (tomas@sedovic.cz)
  1438. - Use the default `item` loop variable for checks (tomas@sedovic.cz)
  1439. - Move the selinux check up (tomas@sedovic.cz)
  1440. - Add the DNS updates and rename the openstack vars (tomas@sedovic.cz)
  1441. - Remove the subnet_update_dns_servers task list (tomas@sedovic.cz)
  1442. - Move the vars/main.yml to defaults (tomas@sedovic.cz)
  1443. - FIXUP ANSIBLE CFG (tomas@sedovic.cz)
  1444. - Remove the static_inventory and bastion samples (tomas@sedovic.cz)
  1445. - Use the existing ansible.cfg file (tomas@sedovic.cz)
  1446. - Remove the subscription-manager role (tomas@sedovic.cz)
  1447. - Add a stub of the dns record update code in (tomas@sedovic.cz)
  1448. - Use correct host group in provision.yml (tomas@sedovic.cz)
  1449. - Remove the post-install and scale-up playbooks (tomas@sedovic.cz)
  1450. - Remove the openstack custom-actions for now (tomas@sedovic.cz)
  1451. - Remove the extra roles (tomas@sedovic.cz)
  1452. - Add openshift_openstack role and move tasks there (tomas@sedovic.cz)
  1453. - Use the docker-storage-setup role (tomas@sedovic.cz)
  1454. - Update readme (tomas@sedovic.cz)
  1455. - Update lookup plugins path (tomas@sedovic.cz)
  1456. - .gitignore casl-infra (tomas@sedovic.cz)
  1457. - Move the OpenStack playbooks (tomas@sedovic.cz)
  1458. - Updating logging components image defaulting pattern to match
  1459. openshift_logging pattern (ewolinet@redhat.com)
  1460. - logging with static pvc: allow specifying the storage class name
  1461. (bart.vanbos@kbc.be)
  1462. - Add role to configure project request template (hansmi@vshn.ch)
  1463. - Remove bash highlight (tomas@sedovic.cz)
  1464. - Revert the console hostname change (tomas@sedovic.cz)
  1465. - Add Extra CAs (custom post-provision action) (#801) (tlacencin@gmail.com)
  1466. - Add Flannel support (#814) (bdobreli@redhat.com)
  1467. - Docker storage fix (#812) (cwilkers@redhat.com)
  1468. - [WIP] Merge server with nofloating server heat templates (#761)
  1469. (bdobreli@redhat.com)
  1470. - Support separate data network for Flannel SDN (#757) (bdobreli@redhat.com)
  1471. - Add Extra Docker Registry URLs (custom post-provision action) (#794)
  1472. (tlacencin@gmail.com)
  1473. - Make the private key examples consistent (tomas@sedovic.cz)
  1474. - Allow the specification of server group policies when provisioning openstack
  1475. (#747) (tzumainn@redhat.com)
  1476. - Attach additional RHN Pools (post-provision custom action) (#753)
  1477. (tlacencin@gmail.com)
  1478. - Streamline the OpenStack provider README (tomas@sedovic.cz)
  1479. - Adding support for cluster-autoscaler role (kwoodson@redhat.com)
  1480. - Fix for this issue https://bugzilla.redhat.com/show_bug.cgi?id=1495372 (#793)
  1481. (edu@redhat.com)
  1482. - Add CentOS support to the docker-storage-setup role (tomas@sedovic.cz)
  1483. - Replace the CASL references (#778) (tomas@sedovic.cz)
  1484. - Set public_v4 to private_v4 if it doesn't exist (tomas@sedovic.cz)
  1485. - Fix flake8 errors (tomas@sedovic.cz)
  1486. - Add dynamic inventory (tomas@sedovic.cz)
  1487. - Fixing various contrib changes causing CASL breakage (#771)
  1488. (oybed@users.noreply.github.com)
  1489. - Required variables to create dedicated lv (#766) (edu@redhat.com)
  1490. - Adding the option to use 'stack_state' to allow for easy de-provisioning
  1491. (#754) (oybed@users.noreply.github.com)
  1492. - Fix public master cluster DNS record when using bastion (#752)
  1493. (bdobreli@redhat.com)
  1494. - Upscaling OpenShift application nodes (#571) (tlacencin@gmail.com)
  1495. - load balancer formatting fix (#745) (tzumainn@redhat.com)
  1496. - Docker ansible host (#742) (tomas@sedovic.cz)
  1497. - Empty ssh (#729) (tomas@sedovic.cz)
  1498. - Remove the `rhsm_register` value from inventory (tomas@sedovic.cz)
  1499. - Make the `rhsm_register` value optional (tomas@sedovic.cz)
  1500. - Clear the previous inventory during provisioning (tomas@sedovic.cz)
  1501. - Fix the cinder_registry_volume conditional (tomas@sedovic.cz)
  1502. - Pre-create a Cinder registry volume (tomas@sedovic.cz)
  1503. - Add ability to support custom api and console ports (#712)
  1504. (etsauer@gmail.com)
  1505. - Support Cinder-backed Openshift registry (#707) (tomas@sedovic.cz)
  1506. - openstack: make server ports be trunk ports (#713) (celebdor@gmail.com)
  1507. - Point openshift_master_cluster_public_hostname at master or lb if defined
  1508. (#706) (tzumainn@redhat.com)
  1509. - Allow using a provider network (#701) (tomas@sedovic.cz)
  1510. - Document global DNS security options (#694) (bdobreli@redhat.com)
  1511. - Add custom post-provision playbook for adding yum repos (#697)
  1512. (tzumainn@redhat.com)
  1513. - Support external/pre-provisioned authoritative cluster DNS (#690)
  1514. (bdobreli@redhat.com)
  1515. - Added checks for configured images and flavors (#688) (tlacencin@gmail.com)
  1516. - Cast num_* as int for jinja templates (#685) (bdobreli@redhat.com)
  1517. - Do not repeat pre_tasks for post-provision playbook (#689)
  1518. (bdobreli@redhat.com)
  1519. - Fix node label customisation (#679) (tlacencin@gmail.com)
  1520. - Add documentation regarding running custom post-provision tasks (#678)
  1521. (tzumainn@redhat.com)
  1522. - Add docs and defaults for multi-master setup (bdobreli@redhat.com)
  1523. - Ignore *.cfg and *.crt in the openstack inventory (#672) (tomas@sedovic.cz)
  1524. - Update openshift_release in the sample inventory (#647) (tomas@sedovic.cz)
  1525. - Configure different Docker volume sizes for different roles (#644)
  1526. (tlacencin@gmail.com)
  1527. - Avoid server recreation in case of user_data modification. (#651)
  1528. (robipolli@gmail.com)
  1529. - Set custom hostnames for servers (#643) (tlacencin@gmail.com)
  1530. - Access UI via a bastion node (#596) (bdobreli@redhat.com)
  1531. - group_vars/all.yml, stack_params.yaml, README: specifying flavors enabled and
  1532. documented (#638) (tlacencin@gmail.com)
  1533. - Specify different image names for roles (#637) (tlacencin@gmail.com)
  1534. - Support multiple private networks for static inventory (#604)
  1535. (bdobreli@redhat.com)
  1536. - Allow using ephemeral volumes for docker storage (#615) (tomas@sedovic.cz)
  1537. - Remove clouds.yaml from sample-inventory (tomas@sedovic.cz)
  1538. - Moving common DNS roles out of the playbook area (#605)
  1539. (oybed@users.noreply.github.com)
  1540. - Note about jmespath requirement for control node (#599) (bdobreli@redhat.com)
  1541. - removed openstack (djurgens@redhat.com)
  1542. - Add wildcard pointer to Private DNS (djurgens@redhat.com)
  1543. - Options for bastion, SSH config, static inventory autogeneration
  1544. (bdobreli@redhat.com)
  1545. - Add bastion and ssh config for the static inventory role
  1546. (bdobreli@redhat.com)
  1547. - Set openshift_hostname explicitly for openstack (#579) (tomas@sedovic.cz)
  1548. - README: Added note about infra-ansible installation (#574)
  1549. (tlacencin@gmail.com)
  1550. - Static inventory autogeneration (#550) (bdobreli@redhat.com)
  1551. - Generate static inventory with shade inventory (#538) (bdobreli@redhat.com)
  1552. - Include masters into etcd group, when it is empty (#559)
  1553. (bdobreli@redhat.com)
  1554. - During provisioning, make unnecessary packages optional under a switch (#561)
  1555. (tlacencin@gmail.com)
  1556. - Set ansible_become for the OSEv3 group (tomas@sedovic.cz)
  1557. - README: fix (kpilatov@redhat.com)
  1558. - README: typo (kpilatov@redhat.com)
  1559. - dependencies: python-heatclient and python-openstackclient added to optional
  1560. dependencies (kpilatov@redhat.com)
  1561. - README: added prerequisity for a repository needed for python-openstackclient
  1562. installation (kpilatov@redhat.com)
  1563. - Add a role to generate a static inventory (#540) (bdobreli@redhat.com)
  1564. - Retry tasks in the subscription manager role (#552) (tlacencin@gmail.com)
  1565. - Set up NetworkManager automatically (#542) (tomas@sedovic.cz)
  1566. - Replace greaterthan and equalto in openstack-stack (tomas@sedovic.cz)
  1567. - Switch the sample inventory to CentOS (#541) (tomas@sedovic.cz)
  1568. - Add defaults values for some openstack vars (#539) (tomas@sedovic.cz)
  1569. - Install DNS roles from casl-infra with galaxy (#529) (bdobreli@redhat.com)
  1570. - Playbook prerequisites.yml checks that prerequisites are met before
  1571. provisioning (#518) (tlacencin@gmail.com)
  1572. - Persist DNS configuration for nodes for openstack provider
  1573. (bdobreli@redhat.com)
  1574. - Manage packages to install/update for openstack provider
  1575. (bdobreli@redhat.com)
  1576. - Fix yaml indentation (tomas@sedovic.cz)
  1577. - Use wait_for_connection for the Heat nodes (tomas@sedovic.cz)
  1578. - Put back node/flat secgrp for infra nodes on openstack (bdobreli@redhat.com)
  1579. - README.md: fixing typo (kpilatov@redhat.com)
  1580. - README.md: list jinja2 as a dependency (kpilatov@redhat.com)
  1581. - Modify sec groups for provisioned openstack servers (bdobreli@redhat.com)
  1582. - rename node_removal_policies, add some comments and defaults
  1583. (tzumainn@redhat.com)
  1584. - all.yml: removed whitespaces in front of variables (kpilatov@redhat.com)
  1585. - removed whitespace in front of commented variable (kpilatov@redhat.com)
  1586. - OSEv3.yml: trailing space... (kpilatov@redhat.com)
  1587. - OSEv3.yml: added option to ignore set hardware limits for RAM and DISK
  1588. (kpilatov@redhat.com)
  1589. - Fix flat sec group and infra/dns sec rules (bdobreli@redhat.com)
  1590. - Add node_removal_policies variable to allow for scaling down
  1591. (tzumainn@redhat.com)
  1592. - Use cached facts, do not become for localhost (#484) (bdobreli@redhat.com)
  1593. - Add profiling and skippy stdout (#470) (bdobreli@redhat.com)
  1594. - Fix flake8 errors with the openstack inventory (tomas@sedovic.cz)
  1595. - Fix yamllint errors (tomas@sedovic.cz)
  1596. - Update sample inventory with the latest changes (tomas@sedovic.cz)
  1597. - Gather facts for provision playbook (bdobreli@redhat.com)
  1598. - Drop atomic-openshift-utils, update docs for origin (bdobreli@redhat.com)
  1599. - Add ansible.cfg for openstack provider (bdobreli@redhat.com)
  1600. - Add a flat sec group for openstack provider (bdobreli@redhat.com)
  1601. - Always let the openshift nodes access the DNS (tomas@sedovic.cz)
  1602. - Fix privileges in the pre-install playbook (tomas@sedovic.cz)
  1603. - Add default values to provision-openstack.yml (tomas@sedovic.cz)
  1604. - Move pre_tasks from to the openstack provisioner (tomas@sedovic.cz)
  1605. - Add readme (tomas@sedovic.cz)
  1606. - Add license for openstack.py in inventory (tomas@sedovic.cz)
  1607. - Add a sample inventory for openstack provisioning (tomas@sedovic.cz)
  1608. - Symlink roles to provisioning/openstack/roles (tomas@sedovic.cz)
  1609. - Add a single provisioning playbook (tomas@sedovic.cz)
  1610. - Move the openstack provisioning playbooks (tomas@sedovic.cz)
  1611. - Update CASL to use nsupdate for DNS records (#48)
  1612. (oybed@users.noreply.github.com)
  1613. - Conditionally set the openshift_master_default_subdomain to avoid overriding
  1614. it unecessary (#47) (oybed@users.noreply.github.com)
  1615. - More ansible migration and deploy OCP from local workstation (#376)
  1616. (pschiffe@redhat.com)
  1617. - Removed hardcoded values from ansible roles (edu@redhat.com)
  1618. - First attempt at a simple multi-master support (#39) (etsauer@gmail.com)
  1619. - Stack refactor (#38) (etsauer@gmail.com)
  1620. - Ensure DNS configuration has wildcards set for infra nodes (#24)
  1621. (oybed@users.noreply.github.com)
  1622. - Fixing two significant bugs in the HEAT deployment (#13) (etsauer@gmail.com)
  1623. - update for yamllint errors (jdetiber@redhat.com)
  1624. - Making providers common (#126) (rcook@redhat.com)
  1625. - Openstack heat (#2) (etsauer@gmail.com)
  1626. - Fixing ansible impl to work with OSP9 and ansible 2.2 (bedin@redhat.com)
  1627. - Updated env_id to be a sub-domain + make the logic a bit more flexible
  1628. (bedin@redhat.com)
  1629. - Fixes Issue #163 if rhsm_password is not defined (vvaldez@redhat.com)
  1630. - Cleande up hostname role to make it more generic (bedin@redhat.com)
  1631. - Updated to run as root rather than cloud-user, for now... (bedin@redhat.com)
  1632. - Channging hard coded host groups to match openshift-ansible expected host
  1633. groups. Importing byo playbook now instead of nested ansible run. Need to
  1634. refactor how we generate hostnames to make it fit this. (esauer@redhat.com)
  1635. - Subscription manager role should accomodate orgs with spaces
  1636. (esauer@redhat.com)
  1637. - Reverting previous commit and making template adjustments (esauer@redhat.com)
  1638. - Changes to allow runs from inside a container. Also allows for running
  1639. upstream openshift-ansible installer (esauer@redhat.com)
  1640. - Changes by JayKayy for a full provision of OpenShift on OpenStack
  1641. (esauer@redhat.com)
  1642. - Fix typo in task name (vvaldez@redhat.com)
  1643. - Add org parameter to Satellite with user/pass (vvaldez@redhat.com)
  1644. - Remove vars_prompt, add info to README to re-enable and for ansible-vault
  1645. (vvaldez@redhat.com)
  1646. - Cosmetic changes to task names and move yum clean all to prereqs
  1647. (vvaldez@redhat.com)
  1648. - Refactor use of rhsm_password to prevent display to CLI (vvaldez@redhat.com)
  1649. - Fix bad syntax with extra 'and' in when using rhsm_pool (vvaldez@redhat.com)
  1650. - Refactor role to dynamically determine rhsm_method (vvaldez@redhat.com)
  1651. - Add subscription-manager support for Hosted or Satellite (vvaldez@redhat.com)
  1652. - New OSE3 docker host builder and OpenStack ansible provisioning support
  1653. (andy.block@gmail.com)
  1654. * Wed Nov 15 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.1.0
  1655. - Allow disabling authorization migration check (sdodson@redhat.com)
  1656. - Alternative method to create docker registry auth creds (mgugino@redhat.com)
  1657. - Nuke /var/lib/dockershim/sandbox/* while nodes are drained
  1658. (sdodson@redhat.com)
  1659. - crio: sync crio.conf (gscrivan@redhat.com)
  1660. - Updating provisioning order. (kwoodson@redhat.com)
  1661. - Regex anchors changed to match protocol start and ports.
  1662. (kwoodson@redhat.com)
  1663. - First pass at v3.8 support (sdodson@redhat.com)
  1664. - Run registry auth after docker restart (mgugino@redhat.com)
  1665. - Fix extension script for catalog (mgugino@redhat.com)
  1666. - Adding instance profile support for node groups. (kwoodson@redhat.com)
  1667. - Bumping openshift-ansible to 3.8 (smunilla@redhat.com)
  1668. - ansible.cfg: error when inventory does not parse (lmeyer@redhat.com)
  1669. - removing kind restrictions from oc_edit (kwoodson@redhat.com)
  1670. - Update Docs. Make Clearer where the actual docs are. (tbielawa@redhat.com)
  1671. - Remove upgrade playbooks for 3.3 through 3.5 (rteague@redhat.com)
  1672. - GlusterFS: Add gluster-s3 functionality (jarrpa@redhat.com)
  1673. - GlusterFS: Add glusterblock functionality (jarrpa@redhat.com)
  1674. - GlusterFS: Update heketi templates for latest version (jarrpa@redhat.com)
  1675. - GlusterFS: Specify resource requests (jarrpa@redhat.com)
  1676. - Remove remaining haproxy files with uninstallation
  1677. (nakayamakenjiro@gmail.com)
  1678. - Proposal: container_runtime role (mgugino@redhat.com)
  1679. - Fix contenerized documentation? (mickael.canevet@camptocamp.com)
  1680. - Cleans up additional artifacts in uninstall. Closes 3082
  1681. (gregswift@gmail.com)
  1682. - Add execution times to checkpoint status (rteague@redhat.com)
  1683. - Make clearer *_nfs_directory and *_volume_name (lpsantil@gmail.com)
  1684. - Allow cluster IP for docker-registry service to be set (hansmi@vshn.ch)
  1685. * Thu Nov 09 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.5-1
  1686. -
  1687. * Wed Nov 08 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.4-1
  1688. -
  1689. * Wed Nov 08 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.3-1
  1690. - Adding configuration for keeping transient namespace on error.
  1691. (shawn.hurley21@gmail.com)
  1692. - Use openshift.common.client_binary (sdodson@redhat.com)
  1693. - Fix examples image streams (mgugino@redhat.com)
  1694. - Remove duplicate defaulting for ASB and TSB (sdodson@redhat.com)
  1695. - Fix preupgrade authorization objects are in sync minor versions
  1696. (mgugino@redhat.com)
  1697. - General template updates for v3.7 (sdodson@redhat.com)
  1698. - Update to xPaaS v1.4.6 (sdodson@redhat.com)
  1699. - Bug 1511044- Slurp the etcd certs instead of using the lookup
  1700. (fabian@fabianism.us)
  1701. - Change prometheus default namespace to 'openshift-metrics'
  1702. (zgalor@redhat.com)
  1703. - Bootstrap enhancements. (kwoodson@redhat.com)
  1704. - reconcile registry-console and docker_image_availability (lmeyer@redhat.com)
  1705. * Wed Nov 08 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.2-1
  1706. - Remove debug code that was mistakenly committed (zgalor@redhat.com)
  1707. - Correct service restart command (sdodson@redhat.com)
  1708. - Give service-catalog controller-manager permissions to update status of
  1709. ClusterServiceClasses and ClusterServicePlans (staebler@redhat.com)
  1710. * Wed Nov 08 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.1-1
  1711. - Bug 1510636- add name to local registry config (fabian@fabianism.us)
  1712. * Wed Nov 08 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.198.0
  1713. - container_binary_sync: Remove atomic prefix from image (smilner@redhat.com)
  1714. - Bug 1510546- Fix previous fix, task was indented one level too deep
  1715. (fabian@fabianism.us)
  1716. - Use oc rather than kubectl (sdodson@redhat.com)
  1717. - Re-add challenge auth verification to github and google (mgugino@redhat.com)
  1718. - Move fact definition that breaks when check to end of block
  1719. (fabian@fabianism.us)
  1720. - [Bug 1509354] Check if routers have certificates and use them
  1721. (kwoodson@redhat.com)
  1722. - Fix v3.6 xpaas image streams (sdodson@redhat.com)
  1723. - Fix v3.7 xpaas image streams (sdodson@redhat.com)
  1724. - Fix prometheus default vars (mgugino@redhat.com)
  1725. - openshift_checks: Add OVS versions for OCP 3.7 (miciah.masters@gmail.com)
  1726. - Proper quotes (dymurray@redhat.com)
  1727. - Update service broker configmap and serviceaccount privileges
  1728. (dymurray@redhat.com)
  1729. - Add etcd as part of inventory file. Otherwise, it fails as "Running etcd as
  1730. an embedded service is no longer supported." (sarumuga@redhat.com)
  1731. - Add centos based dotnet 2.0 image streams (sdodson@redhat.com)
  1732. * Tue Nov 07 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.197.0
  1733. - Temporarily set master servingInfo.clientCA as client-ca-bundle.crt during
  1734. rolling CA redeployment. (abutcher@redhat.com)
  1735. - container-engine: ensure /var/lib/containers/ is properly labelled
  1736. (gscrivan@redhat.com)
  1737. - Moving docker location to share path with system containers.
  1738. (kwoodson@redhat.com)
  1739. - Retry restarting master controllers (mgugino@redhat.com)
  1740. - Bug 1509680- Fix ansible-service-broker registry validations
  1741. (fabian@fabianism.us)
  1742. - Fix preupgrade authorization objects are in sync (mgugino@redhat.com)
  1743. - Bug 1507617- Move etcd into its own service/dc with SSL (fabian@fabianism.us)
  1744. * Mon Nov 06 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.196.0
  1745. - Bug 1509052 - Remove logfile from broker config (david.j.zager@gmail.com)
  1746. - Fix github auth validation (mgugino@redhat.com)
  1747. - Re-generate lib_openshift (mail@jkroepke.de)
  1748. - Remove provisioner restrictions on oc_storageclass (mail@jkroepke.de)
  1749. * Mon Nov 06 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.195.0
  1750. - Bug 1507787- add full path to default asb etcd image (fabian@fabianism.us)
  1751. * Sun Nov 05 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.194.0
  1752. - Revert "Bootstrap enhancements." (ccoleman@redhat.com)
  1753. * Sun Nov 05 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.193.0
  1754. - management: enterprise users must acknowledge use of beta software
  1755. (tbielawa@redhat.com)
  1756. * Sat Nov 04 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.192.0
  1757. - Bootstrap enhancements. (kwoodson@redhat.com)
  1758. - Fix master upgrade version detect and systemd enable (mgugino@redhat.com)
  1759. - Correct groupname during upgrade_control_plane play (mgugino@redhat.com)
  1760. - openshift_hosted: Add docker-gc (smilner@redhat.com)
  1761. - Remove old /etc/yum.repos.d/openshift_additional.repo file.
  1762. (abutcher@redhat.com)
  1763. - CFME: Use cluster_hostname if cluster_public_hostname isn't available
  1764. (tbielawa@redhat.com)
  1765. - Use client binary and well defined kubeconfig (sdodson@redhat.com)
  1766. - Ensure install and remove are mutually exclusive via
  1767. openshift_sanitize_inventory (sdodson@redhat.com)
  1768. - Enable SC, ASB, TSB by default (sdodson@redhat.com)
  1769. - Using the currently attached pvc for an ES dc if available, otherwise falling
  1770. back to current logic (ewolinet@redhat.com)
  1771. - Adding elb changes to provision elbs and add to scale group.
  1772. (kwoodson@redhat.com)
  1773. - Give admin and edit roles permission to patch ServiceInstances and
  1774. ServiceBindings (staebler@redhat.com)
  1775. * Fri Nov 03 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.191.0
  1776. - Adding CONFIG_FILE option back. (kwoodson@redhat.com)
  1777. - Configurable node config location. (kwoodson@redhat.com)
  1778. - Add enterprise prometheus image defaults (sdodson@redhat.com)
  1779. - Adding meta/main.yml to allow for Galaxy use of this repo (bedin@redhat.com)
  1780. * Thu Nov 02 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.190.0
  1781. - check presence of v2 snapshot before the migration proceeds
  1782. (jchaloup@redhat.com)
  1783. - Remove delegate_to from openshift_facts within the openshift_ca role.
  1784. (abutcher@redhat.com)
  1785. - Don't use possibly undefined variables in error messages
  1786. (tbielawa@redhat.com)
  1787. - MTU for bootstrapping should default to openshift_node_sdn_mtu
  1788. (ccoleman@redhat.com)
  1789. - Retry service account bootstrap kubeconfig creation (ccoleman@redhat.com)
  1790. - Docker: make use of new etc/containers/registries.conf optional
  1791. (mgugino@redhat.com)
  1792. - Add rules to the view ClusterRole for service catalog. (staebler@redhat.com)
  1793. - Updating console OPENSHIFT_CONSTANTS flag for TSB (ewolinet@redhat.com)
  1794. - GlusterFS: Fix registry storage documentation (jarrpa@redhat.com)
  1795. - fix comment and make it visible to end-user (azagayno@redhat.com)
  1796. - escape also custom_cors_origins (azagayno@redhat.com)
  1797. - add comment on regexp specifics (azagayno@redhat.com)
  1798. - escape corsAllowedOrigins regexp strings and anchor them
  1799. (azagayno@redhat.com)
  1800. * Wed Nov 01 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.189.0
  1801. - Stating that certificate it is required when doing SSL on ELB.
  1802. (kwoodson@redhat.com)
  1803. - Ensure GCP image build instance gets cleaned up on teardown
  1804. (ccoleman@redhat.com)
  1805. - Switch from bind-interfaces to bind-dynamic (sdodson@redhat.com)
  1806. - Remove unused osm_controller_lease_ttl (mgugino@redhat.com)
  1807. - Delete images located in a family named {{ prefix }}images
  1808. (ccoleman@redhat.com)
  1809. - Use global IP to indicate node should pick DNS (ccoleman@redhat.com)
  1810. - Remove project metadata prefixed with the cluster prefix
  1811. (ccoleman@redhat.com)
  1812. - Use openshift.node.registry_url instead of oreg_url (ccoleman@redhat.com)
  1813. - Allow master node group to wait for stable on GCP (ccoleman@redhat.com)
  1814. - GCP cannot use AWS growpart package (ccoleman@redhat.com)
  1815. - dnsmasq cache-size dns-forward-max change (pcameron@redhat.com)
  1816. - Also require that we match the release (sdodson@redhat.com)
  1817. - Add arbitrary firewall port config to master too (sdodson@redhat.com)
  1818. - remove master.service during the non-ha to ha upgrade (jchaloup@redhat.com)
  1819. - Removing unneeded bootstrap which moved into the product.
  1820. (kwoodson@redhat.com)
  1821. - Add retry logic to docker auth credentials (mgugino@redhat.com)
  1822. - Retry restarting journald (mgugino@redhat.com)
  1823. - Modify StorageClass name to standard (piqin@redhat.com)
  1824. - Give PV & PVC empty storage class to avoid being assigned default gp2
  1825. (mawong@redhat.com)
  1826. - Use oc_project to ensure openshift_provisioners_project present
  1827. (mawong@redhat.com)
  1828. - Fix yaml formatting (mawong@redhat.com)
  1829. - Create default storageclass for cloudprovider openstack (piqin@redhat.com)
  1830. - preserve the oo-install ansible_inventory_path value (rmeggins@redhat.com)
  1831. * Tue Oct 31 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.188.0
  1832. - Add dm_thin_pool for gluster use (sdodson@redhat.com)
  1833. - Fix broken oc_secret update function (barlik@gmx.com)
  1834. - add new clusterNetworks fields to new installs (jtanenba@redhat.com)
  1835. - docker: Create openshift_docker_is_node_or_master variable
  1836. (smilner@redhat.com)
  1837. - Correctly install cockpit (sdodson@redhat.com)
  1838. - Glusterfs storage templates for v1.5 added (chinacoolhacker@gmail.com)
  1839. - bug 1501599. Omit logging project from overcommit restrictions
  1840. (jcantril@redhat.com)
  1841. - GlusterFS: Remove image option from heketi command (jarrpa@redhat.com)
  1842. * Mon Oct 30 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.187.0
  1843. -
  1844. * Sun Oct 29 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.186.0
  1845. -
  1846. * Sat Oct 28 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.185.0
  1847. - bug 1506073. Lower cpu request for logging when it exceeds limit
  1848. (jcantril@redhat.com)
  1849. - Update the name of the service-catalog binary (staebler@redhat.com)
  1850. - disk_availability check: include submount storage (lmeyer@redhat.com)
  1851. * Fri Oct 27 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.184.0
  1852. - cri-o: Set max log size to 50 mb (mrunalp@gmail.com)
  1853. - cri-o: open port 10010 (gscrivan@redhat.com)
  1854. - bug 1435144. Remove uneeded upgrade in openshift_logging role
  1855. (jcantril@redhat.com)
  1856. - Remove inadvertently committed inventory file (rteague@redhat.com)
  1857. - crio: restorcon /var/lib/containers (smilner@redhat.com)
  1858. - Correct openshift_release regular expression (rteague@redhat.com)
  1859. - crio: Add failed_when to overlay check (smilner@redhat.com)
  1860. - docker: set credentials when using system container (gscrivan@redhat.com)
  1861. - Change dnsmasq to bind-interfaces + except-interfaces (mgugino@redhat.com)
  1862. - Fix CA Bundle passed to service-catalog broker for ansible-service-broker
  1863. (staebler@redhat.com)
  1864. - Renaming csr to bootstrap for consistency. (kwoodson@redhat.com)
  1865. - Add master config upgrade hook to upgrade-all plays (mgugino@redhat.com)
  1866. - Remove 'Not Started' status from playbook checkpoint (rteague@redhat.com)
  1867. - Force import_role to static for loading openshift_facts module
  1868. (rteague@redhat.com)
  1869. - Make openshift-ansible depend on all subpackages (sdodson@redhat.com)
  1870. - Refactor health check playbooks (rteague@redhat.com)
  1871. * Fri Oct 27 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.183.0
  1872. -
  1873. * Thu Oct 26 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.182.0
  1874. - Fixing documentation for the cert_key_path variable name.
  1875. (kwoodson@redhat.com)
  1876. - Moving removal of unwanted artifacts to image_prep. (kwoodson@redhat.com)
  1877. - Ensure journald persistence directories exist (mgugino@redhat.com)
  1878. - Fix lint (tbielawa@redhat.com)
  1879. - Move add_many_container_providers.yml to playbooks/byo/openshift-management
  1880. with a noop task include to load filter plugins. (abutcher@redhat.com)
  1881. - Refactor adding multiple container providers (tbielawa@redhat.com)
  1882. - Management Cleanup and Provider Integration (tbielawa@redhat.com)
  1883. * Thu Oct 26 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.181.0
  1884. - Fix loop_var warnings during logging install (mgugino@redhat.com)
  1885. - Fix typo and add detailed comments in kuryr (sngchlko@gmail.com)
  1886. * Thu Oct 26 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.179.0
  1887. - Remove pause from master service startup (rteague@redhat.com)
  1888. - Change default in prometheus storage type to emptydir (zgalor@redhat.com)
  1889. - Bug 1491636 - honor node selectors (jwozniak@redhat.com)
  1890. - Sync latest imagestreams and templates (sdodson@redhat.com)
  1891. - Remove base package install (mgugino@redhat.com)
  1892. - etcd: remove hacks for the system container (gscrivan@redhat.com)
  1893. - Ensure deployment_subtype is set within openshift_sanitize_inventory.
  1894. (abutcher@redhat.com)
  1895. - Add installer checkpoint for prometheus (zgalor@redhat.com)
  1896. - Remove unused registry_volume_claim variable (hansmi@vshn.ch)
  1897. * Wed Oct 25 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.178.0
  1898. - Split prometheus image defaults to prefix and version (zgalor@redhat.com)
  1899. - Remove extraneous spaces that yamllint dislikes (staebler@redhat.com)
  1900. - Fix edit and admin role patching for service catalog (staebler@redhat.com)
  1901. - strip dash when comparing version with Python3 (jchaloup@redhat.com)
  1902. - Bug 1452939 - change Logging & Metrics imagePullPolicy (jwozniak@redhat.com)
  1903. - Remove role bindings during service catalog un-install (staebler@redhat.com)
  1904. - Fix a few small issues in service catalog uninstall (staebler@redhat.com)
  1905. - Remove incorrect validation for OpenIDIdentityProvider (mgugino@redhat.com)
  1906. - Enable oreg_auth credential replace during upgrades (mgugino@redhat.com)
  1907. - Handle bootstrap behavior in GCP template (ccoleman@redhat.com)
  1908. - Ensure upgrades apply latest journald settings (mgugino@redhat.com)
  1909. * Tue Oct 24 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.177.0
  1910. - Check if the master service is non-ha or not (jchaloup@redhat.com)
  1911. - Correct host group for controller restart (rteague@redhat.com)
  1912. - Set the proper external etcd ip address when migrating embeded etcd
  1913. (jchaloup@redhat.com)
  1914. - Switch to stateful set in prometheus (zgalor@redhat.com)
  1915. - cli: use the correct name for the master system container
  1916. (gscrivan@redhat.com)
  1917. - cli: do not pull again the image when using Docker (gscrivan@redhat.com)
  1918. - verstion_gte seems unreliable on containerized installs (sdodson@redhat.com)
  1919. - Retry reconcile in case of error and give up eventually (simo@redhat.com)
  1920. - Updating ocp es proxy image to use openshift_logging_proxy_image_prefix if
  1921. specified (ewolinet@redhat.com)
  1922. - Generate all internal hostnames of no_proxy (ghuang@redhat.com)
  1923. - Add nfs variables documentation to README file (zgalor@redhat.com)
  1924. - Avoid undefined variable in master sysconfig template (hansmi@vshn.ch)
  1925. - Ensure proper variable templating for skopeo auth credentials
  1926. (mgugino@redhat.com)
  1927. * Mon Oct 23 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.176.0
  1928. - Update defaults (fabian@fabianism.us)
  1929. - Use service-ca.crt instead of master ca.crt (fabian@fabianism.us)
  1930. - use master cert (fabian@fabianism.us)
  1931. - Bug 1496426 - add asb-client secret to openshift-ansible-service-broker
  1932. namespace (fabian@fabianism.us)
  1933. - docker: Move enterprise registry from pkg to main (smilner@redhat.com)
  1934. - systemcontainers: Verify atomic.conf proxy is always configured
  1935. (smilner@redhat.com)
  1936. - Add variable to control whether NetworkManager hook is installed
  1937. (hansmi@vshn.ch)
  1938. * Mon Oct 23 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.175.0
  1939. -
  1940. * Sun Oct 22 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.174.0
  1941. -
  1942. * Sun Oct 22 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.173.0
  1943. -
  1944. * Sun Oct 22 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.172.0
  1945. -
  1946. * Sat Oct 21 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.171.0
  1947. - Use "requests" for CPU resources instead of limits
  1948. (peter.portante@redhat.com)
  1949. - [bz1501271] Attempt to use ami ssh user and default to ansible_ssh_user.
  1950. (kwoodson@redhat.com)
  1951. - Fix undefined variable for master upgrades (mgugino@redhat.com)
  1952. - Adding pre check to verify clusterid is set along with cloudprovider when
  1953. performing upgrade. (kwoodson@redhat.com)
  1954. * Fri Oct 20 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.170.0
  1955. - Check for container runtime prior to restarting when updating system CA
  1956. trust. (abutcher@redhat.com)
  1957. - bug 1489498. preserve replica and shard settings (jcantril@redhat.com)
  1958. - Set servingInfo.clientCA to ca.crt during upgrade. (abutcher@redhat.com)
  1959. * Fri Oct 20 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.169.0
  1960. - Initial Kuryr support (mdulko@redhat.com)
  1961. - Indentation errors (dymurray@redhat.com)
  1962. - Bug 1503233 - Add liveness and readiness probe checks to ASB deploymentconfig
  1963. (dymurray@redhat.com)
  1964. * Fri Oct 20 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.168.0
  1965. -
  1966. * Thu Oct 19 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.167.0
  1967. -
  1968. * Thu Oct 19 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.166.0
  1969. -
  1970. * Thu Oct 19 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.165.0
  1971. -
  1972. * Thu Oct 19 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.164.0
  1973. - Change to service-signer.crt for template_service_broker CA_BUNDLE
  1974. (staebler@redhat.com)
  1975. - Use service-signer.crt for ca_bundle passed to clusterservicebroker
  1976. (staebler@redhat.com)
  1977. - Rename ServiceBroker to ClusterServiceBroker for ansible_service_broker task.
  1978. (staebler@redhat.com)
  1979. - Add apiserver.crt to service-catalog controller-manager deployment.
  1980. (staebler@redhat.com)
  1981. - Remove redundant faulty role binding ifrom
  1982. kubeservicecatalog_roles_bindings.yml (staebler@redhat.com)
  1983. - Update service catalog playbook for service-catalog rc1 (staebler@redhat.com)
  1984. * Thu Oct 19 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.163.0
  1985. - set use_manageiq as default (efreiber@redhat.com)
  1986. * Thu Oct 19 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.162.0
  1987. - Wait longer for stable GCP instances (ccoleman@redhat.com)
  1988. - Remove unneeded master config updates during upgrades (mgugino@redhat.com)
  1989. * Wed Oct 18 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.161.0
  1990. -
  1991. * Wed Oct 18 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.160.0
  1992. - Fix pvc selector default to be empty dict instead of string
  1993. (zgalor@redhat.com)
  1994. - Fix typo in setting prom-proxy memory limit (zgalor@redhat.com)
  1995. - Do not remove files for bootstrap if resolv or dns. (kwoodson@redhat.com)
  1996. - Fix missing docker option signature-verification (mgugino@redhat.com)
  1997. - Fix prometheus role nfs (zgalor@redhat.com)
  1998. * Wed Oct 18 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.159.0
  1999. - Updating openshift-ansible.spec file to include files dir
  2000. (sdodson@redhat.com)
  2001. - Bug 1501768: fix eventrouter nodeSelector padding (jwozniak@redhat.com)
  2002. - Reverting proxy image version to v1.0.0 to pass CI (ewolinet@redhat.com)
  2003. - Making travis happy (ewolinet@redhat.com)
  2004. - cri-o: error out when node is a Docker container (gscrivan@redhat.com)
  2005. - Rewire openshift_template_service_broker_namespaces configurable
  2006. (jminter@redhat.com)
  2007. - Ensure controllerConfig.serviceServingCert is correctly set during upgrade.
  2008. (abutcher@redhat.com)
  2009. - Updating pattern for elasticsearch_proxy images (ewolinet@redhat.com)
  2010. - Updating ES proxy image prefix and version to match other components
  2011. (ewolinet@redhat.com)
  2012. - Add ability to set node and master imageConfig to latest (mgugino@redhat.com)
  2013. - Restart all controllers to force reconfiguration during upgrade
  2014. (sdodson@redhat.com)
  2015. * Tue Oct 17 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.158.0
  2016. - Refactor openshift-management entry point (rteague@redhat.com)
  2017. - Add switch to enable/disable container engine's audit log being stored in ES.
  2018. (jkarasek@redhat.com)
  2019. * Mon Oct 16 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.157.0
  2020. - data migration of embedded etcd not allowed (jchaloup@redhat.com)
  2021. - GlusterFS: remove topology reference from deploy-heketi (jarrpa@redhat.com)
  2022. * Mon Oct 16 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.156.0
  2023. - set initial etcd cluster properly during system container scale up
  2024. (jchaloup@redhat.com)
  2025. * Sun Oct 15 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.155.0
  2026. -
  2027. * Sat Oct 14 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.154.0
  2028. -
  2029. * Fri Oct 13 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.153.0
  2030. - default groups.oo_new_etcd_to_config to an empty list (jchaloup@redhat.com)
  2031. * Fri Oct 13 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.152.0
  2032. -
  2033. * Fri Oct 13 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.151.0
  2034. - updated dynamic provision section for openshift metrics to support storage
  2035. class name (elvirkuric@gmail.com)
  2036. * Fri Oct 13 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.150.0
  2037. - Ensure upgrade playbook exits on health check failures (rteague@redhat.com)
  2038. - Ensure docker is installed for containerized load balancers
  2039. (mgugino@redhat.com)
  2040. - Fix containerized node service unit placement order (mgugino@redhat.com)
  2041. - Provisioning Documentation Updates (mgugino@redhat.com)
  2042. * Thu Oct 12 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.149.0
  2043. - Fix broken debug_level (mgugino@redhat.com)
  2044. - Ensure host was reached for proper conditional validation
  2045. (rteague@redhat.com)
  2046. - Ensure docker service status actually changes (mgugino@redhat.com)
  2047. - Display warnings at the end of the control plane upgrade (sdodson@redhat.com)
  2048. - Force reconciliation of role for 3.6 (simo@redhat.com)
  2049. - Remove etcd health check (sdodson@redhat.com)
  2050. - migrate embedded etcd to external etcd (jchaloup@redhat.com)
  2051. * Wed Oct 11 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.148.0
  2052. - Bug 1490647 - logging-fluentd deployed with openshift_logging_use_mux=false
  2053. fails to start due to missing (nhosoi@redhat.com)
  2054. - Fix typo in inventory example (rteague@redhat.com)
  2055. - Separate tuned daemon setup into a role. (jmencak@redhat.com)
  2056. - crio, docker: expect openshift_release to have 'v' (gscrivan@redhat.com)
  2057. - rebase on master (maxamillion@fedoraproject.org)
  2058. - Add fedora compatibility (maxamillion@fedoraproject.org)
  2059. - Allow checkpoint status to work across all groups (rteague@redhat.com)
  2060. - Add valid search when search does not exist on resolv.conf
  2061. (nakayamakenjiro@gmail.com)
  2062. * Tue Oct 10 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.147.0
  2063. - Add PartOf to docker systemd service unit. (mgugino@redhat.com)
  2064. - crio: use systemd manager (gscrivan@redhat.com)
  2065. - Ensure servingInfo.clientCA is set as ca.crt rather than ca-bundle.crt.
  2066. (abutcher@redhat.com)
  2067. - crio, docker: use openshift_release when openshift_image_tag is not used
  2068. (gscrivan@redhat.com)
  2069. - crio: fix typo (gscrivan@redhat.com)
  2070. - Update registry_config.j2 (jialiu@redhat.com)
  2071. - Update registry_config.j2 (jialiu@redhat.com)
  2072. * Mon Oct 09 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.146.0
  2073. - docker_image_availability: credentials to skopeo (mgugino@redhat.com)
  2074. - Rename openshift_cfme role to openshift_management (tbielawa@redhat.com)
  2075. * Mon Oct 09 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.145.0
  2076. - add missing restart node handler to flannel (jchaloup@redhat.com)
  2077. - Switch to configmap leader election on 3.7 upgrade (mkhan@redhat.com)
  2078. - crio.conf.j2: sync from upstream (gscrivan@redhat.com)
  2079. - cri-o: use overlay instead of overlay2 (gscrivan@redhat.com)
  2080. - Ensure docker is restarted when iptables is restarted (mgugino@redhat.com)
  2081. - Stop including origin and ose hosts example file (sdodson@redhat.com)
  2082. - node: make node service PartOf=openvswitch.service when openshift-sdn is used
  2083. (dcbw@redhat.com)
  2084. * Fri Oct 06 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.144.0
  2085. - fix typo for default in etcd (mgugino@redhat.com)
  2086. - Bumping version of service catalog image for 3.7 (ewolinet@redhat.com)
  2087. - remove duplicate [OSEv3:children] group (jfchevrette@gmail.com)
  2088. - Fix lint error (tbielawa@redhat.com)
  2089. - Update hosts.ose.example (ephillipe@gmail.com)
  2090. - Remove the no-longer-used App/DB pv size override variables from inventories
  2091. (tbielawa@redhat.com)
  2092. - openshift_checks: lb and nfs do not need docker (lmeyer@redhat.com)
  2093. - openshift_checks: use oo group names everywhere (lmeyer@redhat.com)
  2094. - Add notes about SA token. Improve NFS validation. (tbielawa@redhat.com)
  2095. - Hooks for installing CFME during full openshift installation
  2096. (tbielawa@redhat.com)
  2097. - Documentation (tbielawa@redhat.com)
  2098. - Import upstream templates. Do the work. Validate parameters.
  2099. (tbielawa@redhat.com)
  2100. - CFME 4.6 work begins. CFME 4.5 references added to the release-3.6 branch
  2101. (tbielawa@redhat.com)
  2102. - Update hosts.origin.example (ephillipe@gmail.com)
  2103. - Add logging es prometheus endpoint (jcantril@redhat.com)
  2104. - bug 1497401. Default logging and metrics images to 3.7 (jcantril@redhat.com)
  2105. - Ensure docker service started prior to credentials (mgugino@redhat.com)
  2106. - Adding support for an inventory directory/hybrid inventory
  2107. (esauer@redhat.com)
  2108. - Remove unused tasks file in openshift_named_certificates (rteague@redhat.com)
  2109. - Move node cert playbook into node config path (rteague@redhat.com)
  2110. - Move master cert playbooks into master config path (rteague@redhat.com)
  2111. - Move etcd cert playbooks into etcd config path (rteague@redhat.com)
  2112. - Fix hosted selector variable migration (mgugino@redhat.com)
  2113. - Bug 1496271 - Perserve SCC for ES local persistent storage
  2114. (jcantril@redhat.com)
  2115. - Limit hosts that run openshift_version role (mgugino@redhat.com)
  2116. - Update ansible-service-broker config to track latest broker
  2117. (fabian@fabianism.us)
  2118. - fix master-facts for provisioning (mgugino@redhat.com)
  2119. - Make provisioning steps more reusable (mgugino@redhat.com)
  2120. - logging: honor openshift_logging_es_cpu_limit (jwozniak@redhat.com)
  2121. - Addressing tox issues (ewolinet@redhat.com)
  2122. - bug 1482661. Preserve ES dc nodeSelector and supplementalGroups
  2123. (jcantril@redhat.com)
  2124. - Checking if any openshift_*_storage_kind variables are set to dynamic without
  2125. enabling dynamic provisioning (ewolinet@redhat.com)
  2126. - Removing setting pvc size and dynamic to remove looped var setting
  2127. (ewolinet@redhat.com)
  2128. * Wed Oct 04 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.143.0
  2129. - Limit base-package install during master upgrades (mgugino@redhat.com)
  2130. - Fix provisiong scale group and elb logic (mgugino@redhat.com)
  2131. * Tue Oct 03 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.142.0
  2132. - Document that nfs_directory must conform to DNS-1123 (sdodson@redhat.com)
  2133. - Move node aws credentials to config.yml (mgugino@redhat.com)
  2134. - Use etcd_ip when communicating with the cluster as a peer in etcd scaleup.
  2135. (abutcher@redhat.com)
  2136. - Ensure openshift.common.portal_net updated during scaleup.
  2137. (abutcher@redhat.com)
  2138. - docker: fix some tox warnings (gscrivan@redhat.com)
  2139. - Require openshift_image_tag in the inventory with openshift-enterprise
  2140. (gscrivan@redhat.com)
  2141. - crio: use the image_tag on RHEL (gscrivan@redhat.com)
  2142. - docker: use the image_tag on RHEL (gscrivan@redhat.com)
  2143. * Tue Oct 03 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.141.0
  2144. - Restore registires to /etc/sysconfig/docker (mgugino@redhat.com)
  2145. - Fix Prometheus byo entry point (rteague@redhat.com)
  2146. - Update to the openshift_aws style scheme for variables (ccoleman@redhat.com)
  2147. * Tue Oct 03 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.140.0
  2148. - openshift_checks: Fix incorrect list cast (smilner@redhat.com)
  2149. - lib/base: Allow for empty option value (jarrpa@redhat.com)
  2150. * Mon Oct 02 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.139.0
  2151. - Fix mispelling in error message yammlint -> yamllint (simo@redhat.com)
  2152. - Separate certificate playbooks. (abutcher@redhat.com)
  2153. - Reverting using uninstall variables for logging and metrics
  2154. (ewolinet@redhat.com)
  2155. - Add --image flag to setup-openshift-heketi-storage (ttindell@isenpai.com)
  2156. * Mon Oct 02 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.138.0
  2157. - Fix typo in openshift_default_storage_class/README (hansmi@vshn.ch)
  2158. - GlusterFS: make ServiceAccounts privileged when either glusterfs or heketi is
  2159. native (jarrpa@redhat.com)
  2160. - Fix some provisioning variables (mgugino@redhat.com)
  2161. * Mon Oct 02 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.137.0
  2162. - openshift_node: Add MASTER_SERVICE on system container install
  2163. (smilner@redhat.com)
  2164. - openshift_node: Set DOCKER_SERVICE for system container (smilner@redhat.com)
  2165. * Sun Oct 01 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.136.0
  2166. - Include openshift_hosted when redeploying router certificates to handle auto-
  2167. generated wildcard certificate or custom openshift_hosted_router_certificate.
  2168. (abutcher@redhat.com)
  2169. - Check for router service annotations when redeploying router certificates.
  2170. (abutcher@redhat.com)
  2171. - Remove oo_option symlink from specfile. (abutcher@redhat.com)
  2172. - Add a README.md to lookup_plugins/ (abutcher@redhat.com)
  2173. - Remove oo_option facts. (abutcher@redhat.com)
  2174. - block 3.6->3.7 upgrade if storage backend is not set to etcd3
  2175. (jchaloup@redhat.com)
  2176. - Changes necessary to support AMI building (mgugino@redhat.com)
  2177. * Sat Sep 30 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.135.0
  2178. - fix whitespace for centos repos (jdetiber@redhat.com)
  2179. - Fix registry auth variable (mgugino@redhat.com)
  2180. - move health-checks and control-plane-verification before excluders
  2181. (jchaloup@redhat.com)
  2182. - Fix typo in files (Docker registries) (william17.burton@gmail.com)
  2183. - Registering the broker for TSB (ewolinet@redhat.com)
  2184. - Quick formatting updates to the logging README. (steveqtran@gmail.com)
  2185. - openshift_facts: coerce docker_use_system_container to bool
  2186. (smilner@redhat.com)
  2187. - Migrate enterprise registry logic to docker role (mgugino@redhat.com)
  2188. - minor update to README and removed dead file (steveqtran@gmail.com)
  2189. - Added new variables for logging role for remote-syslog plugin
  2190. (steveqtran@gmail.com)
  2191. - Remove some reminants of Atomic Enterprise (sdodson@redhat.com)
  2192. - Allow examples management to be disabled (sdodson@redhat.com)
  2193. - rename vars to avoid double negatives and ensuing confusion
  2194. (jsanda@redhat.com)
  2195. - set prometheus endpoint properties to false by default (jsanda@redhat.com)
  2196. - add options to disable prometheus endpoints (jsanda@redhat.com)
  2197. - Enable JMX reporting of internal metrics (jsanda@redhat.com)
  2198. * Thu Sep 28 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.134.0
  2199. - OpenShift-Ansible Installer Checkpointing (rteague@redhat.com)
  2200. - evaluate etcd_backup_tag variable (jchaloup@redhat.com)
  2201. * Thu Sep 28 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.133.0
  2202. - papr: use F26 container for extended tests (jlebon@redhat.com)
  2203. - Fix typo in drop_etcdctl.yml (hansmi@vshn.ch)
  2204. - Rename filter_plugins to unique names (rteague@redhat.com)
  2205. - Fix missing quotes on openshift_aws_build_ami_ssh_user default
  2206. (mgugino@redhat.com)
  2207. - papr: Workaround for RHBZ#1483553 (smilner@redhat.com)
  2208. - Adding default for volume size if not set (ewolinet@redhat.com)
  2209. - Fix origin repo deployment (mgugino@redhat.com)
  2210. - More variables in AWS provisioning plays (mgugino@redhat.com)
  2211. - Support installation of NetworkManager for provisioned nodes
  2212. (mgugino@redhat.com)
  2213. - Set the etcd backend quota to 4GB by default (jchaloup@redhat.com)
  2214. - logging: introducing event router (jwozniak@redhat.com)
  2215. - logging: fix kibana and kibana-ops defaults (jwozniak@redhat.com)
  2216. - papr: Use Fedora 26 (smilner@redhat.com)
  2217. * Wed Sep 27 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.132.0
  2218. - make difference filter output a list for Python3 (jchaloup@redhat.com)
  2219. - Updating to check for netnamespace kube-service-catalog to be ready
  2220. (ewolinet@redhat.com)
  2221. - consolidate etcd_common role (jchaloup@redhat.com)
  2222. - Fluentd: one output tag, one output plugin (nhosoi@redhat.com)
  2223. * Tue Sep 26 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.131.0
  2224. - Generate aggregator api client config in temporary directory.
  2225. (abutcher@redhat.com)
  2226. * Tue Sep 26 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.130.0
  2227. - Passing in image parameter for tsb template (ewolinet@redhat.com)
  2228. * Tue Sep 26 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.129.0
  2229. - Refactor openshift_hosted plays and role (mgugino@redhat.com)
  2230. - Remove logging ES_COPY feature (jcantril@redhat.com)
  2231. * Tue Sep 26 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.128.0
  2232. - check if the storage backend is set to etcd3 before upgrading to 3.7
  2233. (jchaloup@redhat.com)
  2234. - crio: detect the correct version of the images (gscrivan@redhat.com)
  2235. - crio: set the correct image name with OSE (gscrivan@redhat.com)
  2236. - resolve #5428: python-dbus not found (ltheisen@mitre.org)
  2237. - Updating default behavior for installing metrics and logging. Separating out
  2238. uninstall to own variable (ewolinet@redhat.com)
  2239. - Add booleans to prevent unwanted install of nuage roles. (mgugino@redhat.com)
  2240. - Set master facts prior to adding new etcd client urls to master config.
  2241. (abutcher@redhat.com)
  2242. - Remove debugging statements and pause module (sdodson@redhat.com)
  2243. - Fix registry_auth logic for upgrades (mgugino@redhat.com)
  2244. - crio: skip installation on lbs and nfs nodes (gscrivan@redhat.com)
  2245. - Remove override default.py callback plugin (rteague@redhat.com)
  2246. - consolidate etcd_migrate role (jchaloup@redhat.com)
  2247. - Add python3-PyYAML for Fedora installs (mgugino@redhat.com)
  2248. - Do a full stop/start when etcd certificates had expired.
  2249. (abutcher@redhat.com)
  2250. - Move additional/block/insecure registires to /etc/containers/registries.conf
  2251. (mgugino@redhat.com)
  2252. - Improve CA playbook restart logic and skip restarts when related services had
  2253. previously expired certificates. (abutcher@redhat.com)
  2254. - health checks: add diagnostics check (lmeyer@redhat.com)
  2255. - Remove unused openshift_hosted_logging role (mgugino@redhat.com)
  2256. - consolidate etcd_upgrade role (jchaloup@redhat.com)
  2257. - disable excluders after all pre-checks (jchaloup@redhat.com)
  2258. - Fixed AnsibleUnsafeText by converting to int (edu@redhat.com)
  2259. - Ensure that hostname is lowercase (sdodson@redhat.com)
  2260. - Fix deprecated subscription-manager command
  2261. (bliemli@users.noreply.github.com)
  2262. - Returning actual results of yedit query. Empty list was returning empty
  2263. dict. (kwoodson@redhat.com)
  2264. - Default openshift_pkg_version to full version-release during upgrades
  2265. (sdodson@redhat.com)
  2266. - Creating structure to warn for use of deprecated variables and set them in a
  2267. single location before they are no longer honored (ewolinet@redhat.com)
  2268. - Remove default value for oreg_url (mgugino@redhat.com)
  2269. - Creating initial tsb role to consume and apply templates provided for tsb
  2270. (ewolinet@redhat.com)
  2271. - Set network facts using first master's config during scaleup.
  2272. (abutcher@redhat.com)
  2273. - Use 3.7 RPM repo (ahaile@redhat.com)
  2274. - Changes for Nuage atomic ansible install
  2275. (rohan.s.parulekar@nuagenetworks.net)
  2276. - Add 3.7 scheduler predicates (jsafrane@redhat.com)
  2277. - Consolidate etcd certs roles (jchaloup@redhat.com)
  2278. - GlusterFS can now be run more than once. Ability to add devices to nodes
  2279. (ttindell@isenpai.com)
  2280. - Ensure valid search on resolv.conf (mateus.caruccio@getupcloud.com)
  2281. - move (and rename) get_dns_ip filter into openshift_node_facts
  2282. (jdiaz@redhat.com)
  2283. - cri-o: Allow full image override (smilner@redhat.com)
  2284. * Thu Sep 21 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.127.0
  2285. - Updating to always configure api aggregation with installation
  2286. (ewolinet@redhat.com)
  2287. - Do not reconcile in >= 3.7 (simo@redhat.com)
  2288. - Cleanup old deployment types (mgugino@redhat.com)
  2289. - crio: ensure no default CNI configuration files are left
  2290. (gscrivan@redhat.com)
  2291. - node: specify the DNS domain (gscrivan@redhat.com)
  2292. - more retries on repoquery_cmd (lmeyer@redhat.com)
  2293. - fix etcd back message error (jchaloup@redhat.com)
  2294. - openshift_checks: enable providing file outputs (lmeyer@redhat.com)
  2295. - Fix registry auth task ordering (mgugino@redhat.com)
  2296. - Prometheus role fixes (zgalor@redhat.com)
  2297. - papr: Update inventory to include required vars (smilner@redhat.com)
  2298. - testing: Skip net vars on integration tests (smilner@redhat.com)
  2299. - inventory: Update network variable doc (smilner@redhat.com)
  2300. - installer image: use tmp file for vaultpass (lmeyer@redhat.com)
  2301. - system container: use ansible root as cwd (lmeyer@redhat.com)
  2302. - openshift_sanitize_inventory: Check for required vars (smilner@redhat.com)
  2303. - No conversion to boolean and no quoting for include_granted_scopes.
  2304. (jpazdziora@redhat.com)
  2305. - Correct firewall install for openshift-nfs (rteague@redhat.com)
  2306. - inventory: Update versions to 3.7 (smilner@redhat.com)
  2307. - Port origin-gce roles for cluster setup to copy AWS provisioning
  2308. (ccoleman@redhat.com)
  2309. - Bug 1491636 - honor openshift_logging_es_ops_nodeselector
  2310. (jwozniak@redhat.com)
  2311. - Setup tuned after the node has been restarted. (jmencak@redhat.com)
  2312. - Only attempt to start iptables on hosts in the current batch
  2313. (sdodson@redhat.com)
  2314. - Removing setting of pod presets (ewolinet@redhat.com)
  2315. - cri-o: Fix Fedora image name (smilner@redhat.com)
  2316. - add retry on repoquery_cmd (lmeyer@redhat.com)
  2317. - add retries to repoquery module (lmeyer@redhat.com)
  2318. - Rework openshift-cluster into deploy_cluster.yml (rteague@redhat.com)
  2319. - inventory generate: fix config doc (lmeyer@redhat.com)
  2320. - inventory generate: remove refs to openshift_cluster_user (lmeyer@redhat.com)
  2321. - inventory generate: always use kubeconfig, no login (lmeyer@redhat.com)
  2322. - Scaffold out the entire build defaults hash (tbielawa@redhat.com)
  2323. - Use openshift.common.ip rather than ansible_default_ipv4 in etcd migration
  2324. playbook. (abutcher@redhat.com)
  2325. - Add IMAGE_VERSION to the image stream tag source (sdodson@redhat.com)
  2326. - Add loadbalancer config entry point (rteague@redhat.com)
  2327. - pull openshift_master deps out into a play (jchaloup@redhat.com)
  2328. - Don't assume storage_migration control variables are already boolean
  2329. (mchappel@redhat.com)
  2330. - upgrade: Updates warning on missing required variables (smilner@redhat.com)
  2331. - Update master config with new client urls during etcd scaleup.
  2332. (abutcher@redhat.com)
  2333. - Increase rate limiting in journald.conf (maszulik@redhat.com)
  2334. - Correct logic for openshift_hosted_*_wait (rteague@redhat.com)
  2335. - Adding mangagement-admin SC to admin role for management-infra project
  2336. (ewolinet@redhat.com)
  2337. - Only install base openshift package on masters and nodes (mgugino@redhat.com)
  2338. - Workaround Ansible Jinja2 delimiter warning (rteague@redhat.com)
  2339. - openshift-checks: add role symlink (lmeyer@redhat.com)
  2340. - double the required disk space for etcd backup (jchaloup@redhat.com)
  2341. - openshift_health_check: allow disabling all checks (lmeyer@redhat.com)
  2342. - docker_image_availability: fix local image search (lmeyer@redhat.com)
  2343. - docker_image_availability: probe registry connectivity (lmeyer@redhat.com)
  2344. - openshift_checks: add retries in python (lmeyer@redhat.com)
  2345. - add inventory-generator under new sub pkg (jvallejo@redhat.com)
  2346. - Re-enabling new tuned profile hierarchy (PR5089) (jmencak@redhat.com)
  2347. - Add `openshift_node_open_ports` to allow arbitrary firewall exposure
  2348. (ccoleman@redhat.com)
  2349. - Fix: authenticated registry support for containerized hosts
  2350. (mgugino@redhat.com)
  2351. - [Proposal] OpenShift-Ansible Proposal Process (rteague@redhat.com)
  2352. - Improve searching when conditions for Jinja2 delimiters (rteague@redhat.com)
  2353. - Clarify requirement of having etcd group (sdodson@redhat.com)
  2354. - add health checks 3_6,3_7 upgrade path (jvallejo@redhat.com)
  2355. - container-engine: Allow full image override (smilner@redhat.com)
  2356. - Add openshift_public_hostname length check (mgugino@redhat.com)
  2357. - Skip failure dedup instead of crashing (rhcarvalho@gmail.com)
  2358. - Properly quote "true" and "false" strings for include_granted_scopes.
  2359. (jpazdziora@redhat.com)
  2360. - Move sysctl.conf customizations to a separate file (jdesousa@redhat.com)
  2361. - Fix new_master or new_node fail check (denverjanke@gmail.com)
  2362. - [Proposal] OpenShift-Ansible Playbook Consolidation (rteague@redhat.com)
  2363. - GlusterFS: Allow option to use or ignore default node selectors
  2364. (jarrpa@redhat.com)
  2365. - GlusterFS: Clarify heketi URL documentation (jarrpa@redhat.com)
  2366. - GlusterFS: Add files/templates for v3.7 (jarrpa@redhat.com)
  2367. - Support setting annotations on Hawkular route (hansmi@vshn.ch)
  2368. - add additional preflight checks to upgrade path (jvallejo@redhat.com)
  2369. - hot fix for env variable resolve (m.judeikis@gmail.com)
  2370. - GlusterFS: Correct firewall port names (jarrpa@redhat.com)
  2371. - Make RH subscription more resilient to temporary failures
  2372. (lhuard@amadeus.com)
  2373. * Mon Sep 11 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.126.0
  2374. - Fix rpm version logic for hosts (mgugino@redhat.com)
  2375. - Revert back to hostnamectl and previous default of not setting hostname
  2376. (sdodson@redhat.com)
  2377. - Correct include path to not follow symlink (rteague@redhat.com)
  2378. - Fix include path for docker upgrade tasks (rteague@redhat.com)
  2379. - Fix issue with etcd_common when using pre_upgrade tag (rteague@redhat.com)
  2380. - inventory: Denote new required upgrade variables (smilner@redhat.com)
  2381. - upgrade: Verify required network items are set (smilner@redhat.com)
  2382. - ami build process calls openshift-node/config.yml (kwoodson@redhat.com)
  2383. * Fri Sep 08 2017 Scott Dodson <sdodson@redhat.com> 3.7.0-0.125.1
  2384. - Consolidating AWS roles and variables underneath openshift_aws role.
  2385. (kwoodson@redhat.com)
  2386. - Fix README.md typo (mgugino@redhat.com)
  2387. - Fixing variables and allowing custom ami. (kwoodson@redhat.com)
  2388. - Remove openshift-common (mgugino@redhat.com)
  2389. - Fix openshift_master_config_dir (sdodson@redhat.com)
  2390. - remove experimental-cri flag from node config (sjenning@redhat.com)
  2391. - cri-o: Split RHEL and CentOS images (smilner@redhat.com)
  2392. - openshift_checks aos_version: also check installed under yum
  2393. (lmeyer@redhat.com)
  2394. - Create ansible role for deploying prometheus on openshift (zgalor@redhat.com)
  2395. - Fix: set openshift_master_config_dir to the correct value.
  2396. (mgugino@redhat.com)
  2397. - Bump ansible requirement to 2.3 (sdodson@redhat.com)
  2398. - Move master additional config out of base (rteague@redhat.com)
  2399. - Import dnf only if importing yum fails (jhadvig@redhat.com)
  2400. - output skopeo image check command (nakayamakenjiro@gmail.com)
  2401. - skip openshift_cfme_nfs_server if not using nfs (sdw35@cornell.edu)
  2402. - bug 1487573. Bump the allowed ES versions (jcantril@redhat.com)
  2403. - update env in etcd.conf.j2 to reflect the latest naming (jchaloup@redhat.com)
  2404. - logging set memory request to limit (jcantril@redhat.com)
  2405. - Use the proper pod subnet instead the services one (edu@redhat.com)
  2406. - elasticsearch: reintroduce readiness probe (jwozniak@redhat.com)
  2407. - cri-o: add support for additional registries (gscrivan@redhat.com)
  2408. - reverse order between router cert generation (mewt.fr@gmail.com)
  2409. - ensured to always use a certificate for the router (mewt.fr@gmail.com)
  2410. - Adding proxy env vars for dc/docker-registry (kwoodson@redhat.com)
  2411. - oc_atomic_container: support Skopeo output (gscrivan@redhat.com)
  2412. * Tue Sep 05 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.125.0
  2413. -
  2414. * Tue Sep 05 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.124.0
  2415. - Fix ansible_syntax check (rteague@redhat.com)
  2416. - Standardize etcd entry point playbooks (rteague@redhat.com)
  2417. - Adding deprecation checks to ansible_syntax (rteague@redhat.com)
  2418. - Break out master config into stand-alone playbook (rteague@redhat.com)
  2419. - Move all-in-one fail check to evaluate_groups.yml (rteague@redhat.com)
  2420. - Break out node config into stand-alone playbook (rteague@redhat.com)
  2421. - Adding another default to protect against missing name/desc
  2422. (kwoodson@redhat.com)
  2423. - Removed dns role (mgugino@redhat.com)
  2424. - Fix typo in variable names for glusterfs firewall configuration
  2425. (bacek@bacek.com)
  2426. - disk_availability: fix bug where msg is overwritten (lmeyer@redhat.com)
  2427. - Added firwall defaults to etcd role. (kwoodson@redhat.com)
  2428. - Remove meta depends from clock (mgugino@redhat.com)
  2429. - Only run migrate auth for < 3.7 (rteague@redhat.com)
  2430. - Fix openshift_master upgrade (mgugino@redhat.com)
  2431. - Merging openshift_node with openshift bootstrap. (kwoodson@redhat.com)
  2432. - Test: Fail on entry point playbooks in common (rteague@redhat.com)
  2433. - Bug 1467265 - logging: add 'purge' option with uninstall
  2434. (jwozniak@redhat.com)
  2435. - openshift_checks: ignore hidden files in checks dir
  2436. (miciah.masters@gmail.com)
  2437. * Wed Aug 30 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.123.0
  2438. -
  2439. * Wed Aug 30 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.122.0
  2440. - Update openshift_hosted_routers example to be in ini format.
  2441. (abutcher@redhat.com)
  2442. - Update calico to v2.5 (djosborne10@gmail.com)
  2443. * Wed Aug 30 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.121.0
  2444. - Revert "logging set memory request to limit" (sdodson@redhat.com)
  2445. - Move firewall install and fix scaleup playbooks (rteague@redhat.com)
  2446. - Fix group conditional requirements (rteague@redhat.com)
  2447. - Updating openshift_service_catalog to use oc_service over oc_obj to resolve
  2448. idempotency issues being seen from rerunning role (ewolinet@redhat.com)
  2449. - annotate the infra projects for logging to fix bz1480988
  2450. (jcantril@redhat.com)
  2451. - docker_image_availability: timeout skopeo inspect (lmeyer@redhat.com)
  2452. - Fix scaleup on containerized installations (sdodson@redhat.com)
  2453. - bug 1480878. Default pvc for logging (jcantril@redhat.com)
  2454. - logging set memory request to limit (jcantril@redhat.com)
  2455. - openshift_cfme: add nfs directory support (fsimonce@redhat.com)
  2456. * Tue Aug 29 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.120.0
  2457. - Nuage changes to add custom mounts for atomic-openshift-node service
  2458. (rohan.s.parulekar@nuagenetworks.net)
  2459. - Add independent registry auth support (mgugino@redhat.com)
  2460. - roles: use openshift_use_crio (gscrivan@redhat.com)
  2461. - cri-o: change to system runc (gscrivan@redhat.com)
  2462. - cri-o: rename openshift_docker_use_crio to openshift_use_crio
  2463. (gscrivan@redhat.com)
  2464. - Remove unsupported playbooks and utilities (rteague@redhat.com)
  2465. - Updating default tag for enterprise installation for ASB
  2466. (ewolinet@redhat.com)
  2467. - Only validate certificates that are passed to oc_route (zgalor@redhat.com)
  2468. * Mon Aug 28 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.118.0
  2469. - Fix origin metrics and logging container version
  2470. (gevorg15@users.noreply.github.com)
  2471. - Removing deprecation warnings for when conditions. (kwoodson@redhat.com)
  2472. - Default to global setting for firewall. (kwoodson@redhat.com)
  2473. - system-containers: Fallback for system_images_registry (smilner@redhat.com)
  2474. - inventory: Add system_images_registry example (smilner@redhat.com)
  2475. - Remove near-meta role openshift_cli_facts (mgugino@redhat.com)
  2476. - Update error message: s/non-unique/duplicate (rhcarvalho@gmail.com)
  2477. - Make pylint disables more specific (rhcarvalho@gmail.com)
  2478. - Handle exceptions in failure summary cb plugin (rhcarvalho@gmail.com)
  2479. - Rewrite failure summary callback plugin (rhcarvalho@gmail.com)
  2480. - Handle more exceptions when running checks (rhcarvalho@gmail.com)
  2481. - List known checks/tags when check name is invalid (rhcarvalho@gmail.com)
  2482. - List existing health checks when none is requested (rhcarvalho@gmail.com)
  2483. - Add playbook for running arbitrary health checks (rhcarvalho@gmail.com)
  2484. - Update health check README (rhcarvalho@gmail.com)
  2485. - Standardize openshift_provisioners entry point (rteague@redhat.com)
  2486. - Remove unused upgrade playbook (rteague@redhat.com)
  2487. - Bug 1471322: logging roles based image versions (jwozniak@redhat.com)
  2488. * Fri Aug 25 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.117.0
  2489. - Standardize openshift-checks code paths (rteague@redhat.com)
  2490. * Fri Aug 25 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.116.0
  2491. - Add missing hostnames to registry cert (sdodson@redhat.com)
  2492. * Fri Aug 25 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.115.0
  2493. -
  2494. * Fri Aug 25 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.114.0
  2495. -
  2496. * Fri Aug 25 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.113.0
  2497. - openshift_version: enterprise accepts new style pre-release
  2498. (smilner@redhat.com)
  2499. - Nuage changes for Atomic hosts OSE Integration
  2500. (rohan.s.parulekar@nuagenetworks.net)
  2501. * Fri Aug 25 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.112.0
  2502. - fix #5206. Default ES cpu limit (jcantril@redhat.com)
  2503. * Fri Aug 25 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.111.0
  2504. - Upgrade check for OpenShift authorization objects (rteague@redhat.com)
  2505. * Fri Aug 25 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.110.0
  2506. - Setup tuned profiles in /etc/tuned (jmencak@redhat.com)
  2507. * Thu Aug 24 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.109.0
  2508. -
  2509. * Thu Aug 24 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.108.0
  2510. -
  2511. * Thu Aug 24 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.107.0
  2512. -
  2513. * Thu Aug 24 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.106.0
  2514. - Add dotnet 2.0 to v3.6 (sdodson@redhat.com)
  2515. - Add dotnet 2.0 to v3.7 (sdodson@redhat.com)
  2516. - Update v3.6 content (sdodson@redhat.com)
  2517. - Update all image streams and templates (sdodson@redhat.com)
  2518. - Passing memory and cpu limit for ops ES install (ewolinet@redhat.com)
  2519. - If IP4_NAMESERVERS are unset then pull the value from /etc/resolv.conf
  2520. (sdodson@redhat.com)
  2521. - New tuned profile hierarchy. (jmencak@redhat.com)
  2522. - GlusterFS: add minor README note for #5071 (jarrpa@redhat.com)
  2523. - Update cfme templates to auto-generate postgresql password
  2524. https://bugzilla.redhat.com/show_bug.cgi?id=1461973 (simaishi@redhat.com)
  2525. * Wed Aug 23 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.105.0
  2526. - Fix generated content (sdodson@redhat.com)
  2527. - Switch to migrating one host and forming a new cluster (sdodson@redhat.com)
  2528. - First attempt at provisioning. (kwoodson@redhat.com)
  2529. - First attempt at creating the cert signer. (kwoodson@redhat.com)
  2530. - remove out of scope variable from exception message
  2531. (maxamillion@fedoraproject.org)
  2532. - raise AosVersionException if no expected packages found by dnf query
  2533. (maxamillion@fedoraproject.org)
  2534. - Fix missing space in calico ansible roles (djosborne10@gmail.com)
  2535. - Allow GCS object storage to be configured (ccoleman@redhat.com)
  2536. - add dnf support to roles/openshift_health_checker/library/aos_version.py
  2537. (maxamillion@fedoraproject.org)
  2538. - Add hostname/nodename length check (mgugino@redhat.com)
  2539. - Refactor openshift_hosted's docker-registry route setup (dms@redhat.com)
  2540. - bug 1468987: kibana_proxy OOM (jwozniak@redhat.com)
  2541. * Sun Aug 20 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.104.0
  2542. - Ensure that openshift_node_facts has been called for dns_ip
  2543. (sdodson@redhat.com)
  2544. * Sat Aug 19 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.103.0
  2545. -
  2546. * Fri Aug 18 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.102.0
  2547. -
  2548. * Fri Aug 18 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.101.0
  2549. -
  2550. * Fri Aug 18 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.100.0
  2551. - Change memory requests and limits units (mak@redhat.com)
  2552. - Display "origin 3.6" as in previous installer 3.5 (brunovern.a@gmail.com)
  2553. - Use sdn_cluster_network_cidr as default calico pool (djosborne10@gmail.com)
  2554. - fix missing console appending in logging (jcantril@redhat.com)
  2555. - Enable version 3.6 for OSE (bacek@bacek.com)
  2556. - Adding std_include to the metrics playbook. (kwoodson@redhat.com)
  2557. - Don't include noop (rteague@redhat.com)
  2558. - Remove openshift_repos dependencies (rteague@redhat.com)
  2559. - polish openshift-master role (jchaloup@redhat.com)
  2560. - etc_traffic check: factor away short_version (lmeyer@redhat.com)
  2561. - openshift-checks: have playbooks invoke std_include (lmeyer@redhat.com)
  2562. - bug: container_binary_sync no longer moves upon symlinks (smilner@redhat.com)
  2563. - Remove orphan files (rteague@redhat.com)
  2564. - Additional os_firewall role refactoring (rteague@redhat.com)
  2565. - Standardize usage of std_include in byo (rteague@redhat.com)
  2566. - Cleanup validate_hostnames (rteague@redhat.com)
  2567. - Use openshift.node.dns_ip as listening address (sdodson@redhat.com)
  2568. - Remove obsolete yum check (rteague@redhat.com)
  2569. - Clean up Calico readme (djosborne10@gmail.com)
  2570. - Change vsd user nodes parameter name (rohan.s.parulekar@nuagenetworks.net)
  2571. - Removing dependencies for openshift_repos and setting them up early in the
  2572. cluster build. (kwoodson@redhat.com)
  2573. - Default values for CFME container images are invalid (jkaur@redhat.com)
  2574. - Fix duplicate evaluate_groups.yml call during install (rteague@redhat.com)
  2575. - Minor update to correct firewall play name (rteague@redhat.com)
  2576. - Moving firewall rules under the role to work with refactor.
  2577. (kwoodson@redhat.com)
  2578. - Fix Restore Master AWS Options (michael.fraenkel@gmail.com)
  2579. - Update etcd scaleup entrypoint includes and use etcd_{hostname,ip} facts for
  2580. new member registration. (abutcher@redhat.com)
  2581. - openshift_checks: allow OVS 2.7 on OCP 3.5 and 3.6 (miciah.masters@gmail.com)
  2582. - Refactor group initialization (rteague@redhat.com)
  2583. - Updated README to reflect refactor. Moved firewall initialize into separate
  2584. file. (kwoodson@redhat.com)
  2585. - system_container.yml: fix braces (lmeyer@redhat.com)
  2586. - Error check project creation. (kwoodson@redhat.com)
  2587. - Update README.md (sdodson@redhat.com)
  2588. - Fix syntax for when statement (rhcarvalho@gmail.com)
  2589. - configure kibana index mode (jcantril@redhat.com)
  2590. - Change default CFME namespace to use reserved openshift- prefix
  2591. (tbielawa@redhat.com)
  2592. - Start iptables on each master in serial (denverjanke@gmail.com)
  2593. - Remove additional 'restart master' handler references. (abutcher@redhat.com)
  2594. - Adding a default condition and removing unneeded defaults.
  2595. (kwoodson@redhat.com)
  2596. - adding check to a yaml dump to work properly with new ruamel lib
  2597. (ihorvath@redhat.com)
  2598. - Bump calico to v2.4.1 (djosborne10@gmail.com)
  2599. - openshift_checks: refactor find_ansible_mount (lmeyer@redhat.com)
  2600. - More complete discovery of entry point playbooks (rteague@redhat.com)
  2601. - Add missing byo v3_7 playbooks (sdodson@redhat.com)
  2602. - Add v3_7 upgrades (sdodson@redhat.com)
  2603. - Remove remaining references to openshift-master.service (ccoleman@redhat.com)
  2604. - Disable old openshift-master.service on upgrade (ccoleman@redhat.com)
  2605. - Use the new election mode (client based) instead of direct etcd access
  2606. (ccoleman@redhat.com)
  2607. - Remove the origin-master.service and associated files (ccoleman@redhat.com)
  2608. - Make native clustering the default everywhere (ccoleman@redhat.com)
  2609. - Warn when user has no etcd group member nodes (ccoleman@redhat.com)
  2610. - First attempt at refactor of os_firewall (kwoodson@redhat.com)
  2611. - Refactor of openshift_version. (kwoodson@redhat.com)
  2612. - Fix lint errors (sdodson@redhat.com)
  2613. - integration tests: keep openshift_version happy (lmeyer@redhat.com)
  2614. - New pattern involves startup and initializing through the std_include.yml
  2615. (kwoodson@redhat.com)
  2616. - adding readme for openshift_manageiq (efreiber@redhat.com)
  2617. - papr: Update to use v3.6.0 images (smilner@redhat.com)
  2618. - Removing tasks from module openshift_facts. (kwoodson@redhat.com)
  2619. - Updating PVC generation to only be done if the pvc does not already exist to
  2620. avoid idempotent issues (ewolinet@redhat.com)
  2621. - Origin image build: add oc client (lmeyer@redhat.com)
  2622. - Add v3.7 hosted templates (sdodson@redhat.com)
  2623. - GlusterFS: Don't use /dev/null for empty file. (jarrpa@redhat.com)
  2624. - Quick Installer should specify which config file to edit. (jkaur@redhat.com)
  2625. - cri-o: configure the CNI network (gscrivan@redhat.com)
  2626. - nfs only run if cloud_provider not defined (sdw35@cornell.edu)
  2627. - Default gte_3_7 to false (sdodson@redhat.com)
  2628. - Add v3.7 content (sdodson@redhat.com)
  2629. - Update version checks to tolerate 3.7 (skuznets@redhat.com)
  2630. - cri-o: Restart cri-o after openshift sdn installation (smilner@redhat.com)
  2631. - cri-o: Continue node without SELinux check (smilner@redhat.com)
  2632. - examples: use the correct variable name (gscrivan@redhat.com)
  2633. - cri-o: allow to override CRI-O image indipendently from Docker
  2634. (gscrivan@redhat.com)
  2635. - docker: introduce use_crio_only (gscrivan@redhat.com)
  2636. - docker: skip Docker setup when using CRI-O (gscrivan@redhat.com)
  2637. - openvswitch: system container depends on the cri-o service
  2638. (gscrivan@redhat.com)
  2639. - cli_image: do not require Docker when using CRI-O (gscrivan@redhat.com)
  2640. - cri-o: skip Set precise containerized version check (gscrivan@redhat.com)
  2641. - cri-o: skip Docker version test (gscrivan@redhat.com)
  2642. - cri-o: use only images from Docker Hub (gscrivan@redhat.com)
  2643. - cri-o: Enable systemd-modules-load if required (smilner@redhat.com)
  2644. - openshift_node: fix typo for experimental-cri (smilner@redhat.com)
  2645. - cri-o: Fix node template to use full variable (smilner@redhat.com)
  2646. - cri-o: Ensure overlay is available (smilner@redhat.com)
  2647. - cri-o: Default insecure registries to "" (smilner@redhat.com)
  2648. - crio: use a template for the configuration (gscrivan@redhat.com)
  2649. - openshift_docker_facts: Add use_crio (smilner@redhat.com)
  2650. - cri-o: Minor fixes for tasks (smilner@redhat.com)
  2651. - cri-o: Hardcode image name to cri-o (smilner@redhat.com)
  2652. - cri-o: Add cri-o as a Wants in node units (smilner@redhat.com)
  2653. - cri-o: configure storage and insecure registries (gscrivan@redhat.com)
  2654. - node.yaml: configure node to use cri-o when openshift.common.use_crio
  2655. (gscrivan@redhat.com)
  2656. - inventory: Add use_crio example (smilner@redhat.com)
  2657. - cri-o: Allow cri-o usage. (smilner@redhat.com)
  2658. - adding pods/logs to manageiq role (efreiber@redhat.com)
  2659. - openshift_checks: refactor logging checks (lmeyer@redhat.com)
  2660. - GlusterFS: Copy SSH private key to master node. (jarrpa@redhat.com)
  2661. - openshift_checks: add property to track 'changed' (lmeyer@redhat.com)
  2662. - Fixing SA and clusterrole namespaces (ewolinet@redhat.com)
  2663. - package_version check: tolerate release version 3.7 (lmeyer@redhat.com)
  2664. - Missing space (kp@tigera.io)
  2665. - add pre-flight checks to ugrade path (jvallejo@redhat.com)
  2666. - add fluentd logging driver config check (jvallejo@redhat.com)
  2667. - Paren wrap integration print(). (abutcher@redhat.com)
  2668. - Update openshift_cert_expiry for py3 support. (abutcher@redhat.com)
  2669. - Use enterprise images for CFME enterprise deployments (sdodson@redhat.com)
  2670. - use mux_client_mode instead of use_mux_client (rmeggins@redhat.com)
  2671. - openshift_checks: enable variable conversion (lmeyer@redhat.com)
  2672. - GlusterFS: Check for namespace if deploying a StorageClass
  2673. (jarrpa@redhat.com)
  2674. - Switch logging and metrics OCP image tag from 3.6.0 to v3.6
  2675. (sdodson@redhat.com)
  2676. - Fixing storageclass doc variable. (kwoodson@redhat.com)
  2677. - GlusterFS: Fix variable names in defaults. (jarrpa@redhat.com)
  2678. - Fix aws_secret_key check (carlpett@users.noreply.github.com)
  2679. - Impl fluentd file buffer (nhosoi@redhat.com)
  2680. - Use existing OPENSHIFT_DEFAULT_REGISTRY setting during masters scaleup
  2681. (tbielawa@redhat.com)
  2682. - GlusterFS: Default glusterfs_name in loop items. (jarrpa@redhat.com)
  2683. - Remove cluster in favor of rolebindings. (kwoodson@redhat.com)
  2684. - Updating metrics role to create serviceaccounts and roles immediately
  2685. (ewolinet@redhat.com)
  2686. - GlusterFS: Use default namespace when not native. (jarrpa@redhat.com)
  2687. - Set the openshift_version from the openshift.common.version in case it is
  2688. empty (jchaloup@redhat.com)
  2689. - Revert "Add health checks to upgrade playbook" (rhcarvalho@gmail.com)
  2690. - move common tasks to a single file included by both systemd_units.yml
  2691. (jchaloup@redhat.com)
  2692. - Fixes for auth_proxy, vxlan mode (srampal@cisco.com)
  2693. - Tolerate non existence of /etc/sysconfig/atomic-openshift-master
  2694. (sdodson@redhat.com)
  2695. - Block etcdv3 migration for supported configurations (sdodson@redhat.com)
  2696. - Shut down masters before taking an etcd backup (sdodson@redhat.com)
  2697. - Move node facts to new openshift_node_facts role. (abutcher@redhat.com)
  2698. - Add glusterfs_registry hosts to oo_all_hosts. (jarrpa@redhat.com)
  2699. - Updating template parameter replica to be more unique to avoid var scope
  2700. creeping (ewolinet@redhat.com)
  2701. - Add 3.7 releaser (sdodson@redhat.com)
  2702. - add selector and storage class name to oc_pvc module (jcantril@redhat.com)
  2703. - backport 'Add systemctl daemon-reload handler to openshift_node' #4403 to
  2704. openshift_node_upgrade (jchaloup@redhat.com)
  2705. - Normalize list of checks passed to action plugin (rhcarvalho@gmail.com)
  2706. - Clean up unnecessary quotes (rhcarvalho@gmail.com)
  2707. - Make LoggingCheck.run return the correct type (rhcarvalho@gmail.com)
  2708. - Clean up openshift-checks playbooks (rhcarvalho@gmail.com)
  2709. - fixes after rebasing with #4485 (jvallejo@redhat.com)
  2710. - add pre-flight checks to ugrade path (jvallejo@redhat.com)
  2711. - Refactor openshift_facts BIOS vendor discovery (rteague@redhat.com)
  2712. - Normalize logging entry. (kwoodson@redhat.com)
  2713. - Nuage changes to support IPTables kube-proxy in OpenShift
  2714. (siva_teja.areti@nokia.com)
  2715. - Remove default provisioner. (kwoodson@redhat.com)
  2716. - Fix for : https://bugzilla.redhat.com/show_bug.cgi?id=1467423
  2717. (jkaur@redhat.com)
  2718. - allow to specify docker registry for system containers (jchaloup@redhat.com)
  2719. - Fail within scaleup playbooks when new_{nodes,masters} host groups are empty.
  2720. (abutcher@redhat.com)
  2721. - Add rate limit configurability (sdodson@redhat.com)
  2722. - Resolve deprecation warnings in Contiv roles (rteague@redhat.com)
  2723. - add etcd scaleup playbook (jawed.khelil@amadeus.com)
  2724. - Spacing and moving deleget_to to bottom. (kwoodson@redhat.com)
  2725. - Updated to use modules instead of command for user permissions.
  2726. (kwoodson@redhat.com)
  2727. - fix BZ1422541 on master branch (weshi@redhat.com)
  2728. * Thu Jul 27 2017 Scott Dodson <sdodson@redhat.com> 3.7.1-1
  2729. - Fix incorrect delegate_to in control plane upgrade (sdodson@redhat.com)
  2730. - Follow the new naming conventions. (zhang.wanmin@zte.com.cn)
  2731. - Simplify generation of /etc/origin/node/resolv.conf (sdodson@redhat.com)
  2732. - Add glusterfs hosts to oo_all_hosts so that hosts set initial facts.
  2733. (abutcher@redhat.com)
  2734. - Sync all openshift.common.use_openshift_sdn uses in yaml files
  2735. (jchaloup@redhat.com)
  2736. - Fixing podpresets perms for service-catalog-controller (ewolinet@redhat.com)
  2737. - Fixing route spec caCertificate to be correctly capitalized
  2738. (ewolinet@redhat.com)
  2739. - Set TimeoutStartSec=300 (sdodson@redhat.com)
  2740. - Revert "set KillMode to process in node service file" (sdodson@redhat.com)
  2741. - openshift_checks: refactor to internalize task_vars (lmeyer@redhat.com)
  2742. - openshift_checks: get rid of deprecated module_executor (lmeyer@redhat.com)
  2743. - openshift_checks: improve comments/names (lmeyer@redhat.com)
  2744. - add default value for router path in the cert (efreiber@redhat.com)
  2745. - Router wildcard certificate created by default (efreiber@redhat.com)
  2746. - Remove unsupported parameters from example inventory files.
  2747. (jarrpa@redhat.com)
  2748. - Fix lint errors (sdodson@redhat.com)
  2749. - Metrics: grant hawkular namespace listener role (mwringe@redhat.com)
  2750. - Removing nolog from htpasswd invocation so not to supress errors
  2751. (ewolinet@redhat.com)
  2752. - Removed kubernetes.io string from default. (kwoodson@redhat.com)
  2753. - Allow storage migrations to be optional and/or non fatal (sdodson@redhat.com)
  2754. - libvirt: fall back to mkisofs if genisoimage isn't available
  2755. (dcbw@redhat.com)
  2756. - libvirt: add documentation about SSH keypair requirements (dcbw@redhat.com)
  2757. - Updating how storage type is determined, adding bool filter in
  2758. openshift_logging_elasticsearch (ewolinet@redhat.com)
  2759. - Pass the provisioner to the module. (kwoodson@redhat.com)
  2760. - Use absolute path when unexcluding (Sergi Jimenez)
  2761. - Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1474246 (Sergi Jimenez)
  2762. - Support enabling the centos-openshift-origin-testing repository
  2763. (dms@redhat.com)
  2764. - 1472467- add ose- prefix to ansible service broker name (fabian@fabianism.us)
  2765. - Updating openshift_logging_kibana default for kibana hostname
  2766. (ewolinet@redhat.com)
  2767. - GlusterFS: Create registry storage svc and ep in registry namespace
  2768. (jarrpa@redhat.com)
  2769. - Default an empty list for etcd_to_config if not there (tbielawa@redhat.com)
  2770. - If proxy in effect, add etcd host IP addresses to NO_PROXY list on masters
  2771. (tbielawa@redhat.com)
  2772. - GlusterFS: Pass all booleans through bool filter. (jarrpa@redhat.com)
  2773. - GlusterFS: Fix bug in detecting whether to open firewall ports.
  2774. (jarrpa@redhat.com)
  2775. - Pass first master's openshift_image_tag to openshift_loadbalancer for
  2776. containerized haproxy installation. (abutcher@redhat.com)
  2777. - verify sane log times in logging stack (jvallejo@redhat.com)
  2778. - Fix log dumping on service failure (sdodson@redhat.com)
  2779. - Updating verbs for serviceclasses objects (ewolinet@redhat.com)
  2780. - Fix broken link to Docker image instructions (rhcarvalho@gmail.com)
  2781. - Added parameters inside of gce defaults. Pass all params to the module.
  2782. (kwoodson@redhat.com)
  2783. - add etcd increased-traffic check (jvallejo@redhat.com)
  2784. - Add etcd exports to openshift_storage_nfs (abutcher@redhat.com)
  2785. - Hopefully finally fix the no_proxy settings (tbielawa@redhat.com)
  2786. - openshift_checks/docker_storage: overlay/2 support (lmeyer@redhat.com)
  2787. - Removing parameter kind and allowing default to be passed.
  2788. (kwoodson@redhat.com)
  2789. - Remove openshift_use_dnsmasq from aws and libvirt playbooks
  2790. (sdodson@redhat.com)
  2791. - 1471973- default to bootstrapping the broker on startup (fabian@fabianism.us)
  2792. - image builds: remove dependency on playbook2image (jvallejo@redhat.com)
  2793. - Setting node selector to be empty string (ewolinet@redhat.com)
  2794. - Add drain retries after 60 second delay (sdodson@redhat.com)
  2795. - Dump some logs (sdodson@redhat.com)
  2796. - daemon_reload on node and ovs start (sdodson@redhat.com)
  2797. - Ensure proper fact evaluation (sdodson@redhat.com)
  2798. - Wrap additional service changes in retries (sdodson@redhat.com)
  2799. - Wrap docker stop in retries (sdodson@redhat.com)
  2800. - Add retries to node restart handlers (sdodson@redhat.com)
  2801. - Test docker restart with retries 3 delay 30 (smilner@redhat.com)
  2802. - Adding podpreset config into master-config (ewolinet@redhat.com)
  2803. - Update image-gc-high-threshold value (decarr@redhat.com)
  2804. - Adding a check for variable definition. (kwoodson@redhat.com)
  2805. - docker: fix docker_selinux_enabled (lmeyer@redhat.com)
  2806. - Changing cluster role to admin (rhallise@redhat.com)
  2807. - drain still pending in below files without fix : (jkaur@redhat.com)
  2808. - Fixed spacing and lint errors. (kwoodson@redhat.com)
  2809. - Switch CI to ansible-2.3.1.0 (sdodson@redhat.com)
  2810. - Allow OVS 2.7 in latest OpenShift releases (rhcarvalho@gmail.com)
  2811. - Make aos_version module handle multiple versions (rhcarvalho@gmail.com)
  2812. - Split positive and negative unit tests (rhcarvalho@gmail.com)
  2813. - GlusterFS: Create in custom namespace by default (jarrpa@redhat.com)
  2814. - hosted registry: Use proper node name in GlusterFS storage setup
  2815. (jarrpa@redhat.com)
  2816. - GlusterFS: Make heketi-cli command configurable (jarrpa@redhat.com)
  2817. - GlusterFS: Reintroduce heketi-cli check for non-native heketi
  2818. (jarrpa@redhat.com)
  2819. - GlusterFS: Bug fixes for external GlusterFS nodes (jarrpa@redhat.com)
  2820. - GlusterFS: Improve and extend example inventory files (jarrpa@redhat.com)
  2821. - Fixed tests and added sleep for update. (kwoodson@redhat.com)
  2822. - Fixing needs_update comparison. Added a small pause for race conditions.
  2823. Fixed doc. Fix kind to storageclass (kwoodson@redhat.com)
  2824. - Adding storageclass support to lib_openshift. (kwoodson@redhat.com)
  2825. - Add an SA policy to the ansible-service-broker (rhallise@redhat.com)
  2826. - Import templates will fail if user is not system:admin (jkaur@redhat.com)
  2827. - Additional optimization parameters for ansible.cfg (sejug@redhat.com)
  2828. - Fix etcd conditional check failure (admin@webresource.nl)
  2829. - Remove invalid when: from vars: (rteague@redhat.com)
  2830. * Tue Jul 18 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.153-1
  2831. - Updating to compare sets instead of sorted lists (ewolinet@redhat.com)
  2832. - Adding ability to create podpreset for service-catalog-controller for
  2833. bz1471881 (ewolinet@redhat.com)
  2834. - Updating to use oc replace and conditionally update edit and admin roles
  2835. (ewolinet@redhat.com)
  2836. - Other playbooks maybe expecting this to be at least an empty string. I think
  2837. they default it to an empty list if its not found. (tbielawa@redhat.com)
  2838. - Fix NO_PROXY environment variable setting (tbielawa@redhat.com)
  2839. - Changing the passing of data for sc creation. (kwoodson@redhat.com)
  2840. - Fixed variable name. (kwoodson@redhat.com)
  2841. - Adding disk encryption to storageclasses and to openshift registry
  2842. (kwoodson@redhat.com)
  2843. * Mon Jul 17 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.152-1
  2844. -
  2845. * Sun Jul 16 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.151-1
  2846. -
  2847. * Sun Jul 16 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.150-1
  2848. -
  2849. * Sat Jul 15 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.149-1
  2850. - Config was missed before replace. (jkaur@redhat.com)
  2851. - Redeploy-certificates will fail for registry and router if user is not
  2852. system:admin (jkaur@redhat.com)
  2853. * Fri Jul 14 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.148-1
  2854. - Adding in permissions to edit and admin cluster roles (ewolinet@redhat.com)
  2855. - making kube-service-catalog project network global when using redhat
  2856. /openshift-ovs-multitenant plugin (ewolinet@redhat.com)
  2857. - set KillMode to process in node service file (jchaloup@redhat.com)
  2858. - Upgrade fails when "Drain Node for Kubelet upgrade" (jkaur@redhat.com)
  2859. - openvswitch, syscontainer: specify the Docker service name
  2860. (gscrivan@redhat.com)
  2861. * Thu Jul 13 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.144-1
  2862. - Created js file for enabling tech preview for console, updated master-config
  2863. for pod presets and console tech preview (ewolinet@redhat.com)
  2864. - GlusterFS: Add updated example hosts files (jarrpa@redhat.com)
  2865. - GlusterFS: Fix SSH-based heketi configuration (jarrpa@redhat.com)
  2866. * Wed Jul 12 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.143-1
  2867. -
  2868. * Wed Jul 12 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.142-1
  2869. - add scheduled pods check (jvallejo@redhat.com)
  2870. - Only store failures that were not ignored. (rhcarvalho@gmail.com)
  2871. - Add overlay to supported Docker storage drivers (rhcarvalho@gmail.com)
  2872. - ansible.cfg: improve ssh ControlPath (lmeyer@redhat.com)
  2873. - openshift_checks: fix execute_module params (lmeyer@redhat.com)
  2874. - OCP build: override python-directed envvars (lmeyer@redhat.com)
  2875. - OCP build: fix bug 1465724 (lmeyer@redhat.com)
  2876. - OCP build: sync packages needed (lmeyer@redhat.com)
  2877. - Adding create permissions for serviceclasses.servicecatalog.k8s.io to
  2878. service-catalog-controller role (ewolinet@redhat.com)
  2879. - Fix calico when certs are auto-generated (djosborne10@gmail.com)
  2880. - Removing trailing newline. (kwoodson@redhat.com)
  2881. - Error upgrading control_plane when user is not system:admin
  2882. (jkaur@redhat.com)
  2883. - [Bz 1468113] Configure the rest of the masters with the correct URL.
  2884. (kwoodson@redhat.com)
  2885. * Tue Jul 11 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.141-1
  2886. - Add evaluate_groups.yml to network_manager playbook (rteague@redhat.com)
  2887. - updating fetch tasks to be flat paths (ewolinet@redhat.com)
  2888. * Mon Jul 10 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.140-1
  2889. -
  2890. * Sat Jul 08 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.139-1
  2891. - increase implicit 300s default timeout to explicit 600s (jchaloup@redhat.com)
  2892. * Sat Jul 08 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.138-1
  2893. - Wait for etcd to become healthy before migrating TTL (tbielawa@redhat.com)
  2894. - Use openshift.node.nodename as glusterfs_hostname. (abutcher@redhat.com)
  2895. - container-engine: Update Fedora registry url (smilner@redhat.com)
  2896. - updating configmap map definition to fix asb not starting up correctly
  2897. (ewolinet@redhat.com)
  2898. - xPaas v1.4.1 for 3.4 (sdodson@redhat.com)
  2899. - xPaas v1.4.1 for 3.5 (sdodson@redhat.com)
  2900. - xPaaS 1.4.1 for 3.6 (sdodson@redhat.com)
  2901. - Only add entries to NO_PROXY settings if a NO_PROXY value is set
  2902. (tbielawa@redhat.com)
  2903. - fixing configuation values. (shurley@redhat.com)
  2904. * Fri Jul 07 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.137-1
  2905. - Install container-selinux with container-engine (smilner@redhat.com)
  2906. - Bug 1466152 - Json-file log driver: Neither
  2907. "openshift_logging_fluentd_use_journal=false" nor omitted collects the log
  2908. entries (rmeggins@redhat.com)
  2909. - Adding serial: 1 to play to ensure we run one at a time (ewolinet@redhat.com)
  2910. - Fix yamllint (sdodson@redhat.com)
  2911. - Workaround seboolean module with setsebool command. (abutcher@redhat.com)
  2912. - Removed quotes and added env variable to be specific. (kwoodson@redhat.com)
  2913. - [BZ 1467786] Fix for OPENSHIFT_DEFAULT_REGISTRY setting.
  2914. (kwoodson@redhat.com)
  2915. - set the proper label of /var/lib/etcd directory (jchaloup@redhat.com)
  2916. * Thu Jul 06 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.136-1
  2917. - Synching certs and aggregator configs from first master to all other masters
  2918. (ewolinet@redhat.com)
  2919. - Addressing servicecatalog doesnt have enough permissions and multimaster
  2920. config for service-catalog (ewolinet@redhat.com)
  2921. - add back mux_client config that was removed (rmeggins@redhat.com)
  2922. - use master etcd certificates when delegating oadm migrate etcd-ttl
  2923. (jchaloup@redhat.com)
  2924. * Wed Jul 05 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.135-1
  2925. - Update the tag for enterprise service catalog (sdodson@redhat.com)
  2926. - Fix missing service domain .svc in NO_PROXY settings (tbielawa@redhat.com)
  2927. - drop etcdctl before the etcd_container service (jchaloup@redhat.com)
  2928. - Fix prefix for OCP service-catalog prefix (sdodson@redhat.com)
  2929. - Fully qualify ocp ansible_service_broker_image_prefix (sdodson@redhat.com)
  2930. * Wed Jul 05 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.134-1
  2931. -
  2932. * Tue Jul 04 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.133-1
  2933. - etcd, syscontainer: fix copy of existing datastore (gscrivan@redhat.com)
  2934. - pre-pull images before stopping docker (jchaloup@redhat.com)
  2935. - Always convert no_proxy from string into a list (sdodson@redhat.com)
  2936. - fix 1466680. Fix logging deploying to the specified namespace
  2937. (jcantril@redhat.com)
  2938. - logging_es: temporarily disable readiness probe (jwozniak@redhat.com)
  2939. - Fixes to storage migration (sdodson@redhat.com)
  2940. * Mon Jul 03 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.132-1
  2941. -
  2942. * Sun Jul 02 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.131-1
  2943. - Fix upgrade (sdodson@redhat.com)
  2944. - Prevent the script to use default route ip as upstream nameserver.
  2945. (steveteuber@users.noreply.github.com)
  2946. - Use default ports for dnsmasq and node dns (sdodson@redhat.com)
  2947. - Run dns on the node and use that for dnsmasq (sdodson@redhat.com)
  2948. - Using ca-bundle.crt to connect to local etcd if master.etcd-ca.crt DNE
  2949. (ewolinet@redhat.com)
  2950. - Set OPENSHIFT_DEFAULT_REGISTRY in registry dc. (abutcher@redhat.com)
  2951. - Updating to use openshift.master.etcd_hosts for etcd servers for apiserver
  2952. (ewolinet@redhat.com)
  2953. - Update v1.4 image streams and templates (sdodson@redhat.com)
  2954. - xPaaS v1.4.0 for v3.4 (sdodson@redhat.com)
  2955. - Sync latest image streams and templates for v1.5 (sdodson@redhat.com)
  2956. - xPaaS v1.4.0 for v3.5 (sdodson@redhat.com)
  2957. - Update latest image streams for v3.6 (sdodson@redhat.com)
  2958. - Bump xPaas v1.4.0 for v3.6 (sdodson@redhat.com)
  2959. - docker_image_availability: fix containerized etcd (lmeyer@redhat.com)
  2960. - evalute etcd backup directory name only once (jchaloup@redhat.com)
  2961. - run etcd_container with type:spc_t label (jchaloup@redhat.com)
  2962. - Fixing ops storage options being passed to openshift_logging_elasticsearch
  2963. role fixing default ops pv selector (ewolinet@redhat.com)
  2964. - Adding labels for elasticsearch and kibana services (ewolinet@redhat.com)
  2965. - Add a retry to the docker restart handler (sdodson@redhat.com)
  2966. - docker_storage check: make vgs return sane output (lmeyer@redhat.com)
  2967. - Capture exceptions when resolving available checks (rhcarvalho@gmail.com)
  2968. - PAPR: customize disk space requirements (rhcarvalho@gmail.com)
  2969. - Enable disk check on containerized installs (rhcarvalho@gmail.com)
  2970. - Add module docstring (rhcarvalho@gmail.com)
  2971. - Add suggestion to check disk space in any path (rhcarvalho@gmail.com)
  2972. - Require at least 1GB in /usr/bin/local and tempdir (rhcarvalho@gmail.com)
  2973. - Refactor DiskAvailability for arbitrary paths (rhcarvalho@gmail.com)
  2974. - Adding some more sections to additional considerations, being less rigid on
  2975. large roles for composing -- can also be a playbook (ewolinet@redhat.com)
  2976. - Updating snippet contents, formatting and providing urls
  2977. (ewolinet@redhat.com)
  2978. - Update snippets and add bullet point on role dependency (ewolinet@redhat.com)
  2979. - Creating initial proposal doc for review (ewolinet@redhat.com)
  2980. * Fri Jun 30 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.129-1
  2981. - Fix generate role binding destination for the HOSA service account
  2982. (steveteuber@users.noreply.github.com)
  2983. - Correct version comparisons to ensure proper evaluation (rteague@redhat.com)
  2984. - Adding become: false to local_action tasks (ewolinet@redhat.com)
  2985. - upgrade: fix name for the etcd system container (gscrivan@redhat.com)
  2986. - fix backup and working directory for etcd run as a system container
  2987. (jchaloup@redhat.com)
  2988. - etcd_migrate: Add /var/usrlocal/bin to path for oadm (smilner@redhat.com)
  2989. - etcd_migrate: Add /usr/local/bin to path for oadm (smilner@redhat.com)
  2990. - Sync environment variables FLUENTD/MUX_CPU_LIMIT FLUENTD/MUX_MEMORY_LIMIT
  2991. with the resource limit values. (nhosoi@redhat.com)
  2992. - Update master configuration for named certificates during master cert
  2993. redeploy. (abutcher@redhat.com)
  2994. - Get rid of openshift_facts dep in rhel_subscribe (sdodson@redhat.com)
  2995. - logging: write ES heap dump to persistent storage (jwozniak@redhat.com)
  2996. * Thu Jun 29 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.128-1
  2997. - parameterize etcd binary path (fabian@fabianism.us)
  2998. - attach leases via the first master only and only once (jchaloup@redhat.com)
  2999. - evalute groups when running etcd upgrade from byo/openshift-
  3000. cluster/upgrades/upgrade_etcd.yml (jchaloup@redhat.com)
  3001. - Bug 1465168 - mux doesn't recognize ansible boolean parameters correctly
  3002. (rmeggins@redhat.com)
  3003. * Tue Jun 27 2017 Scott Dodson <sdodson@redhat.com> 3.6.123.1003-1
  3004. - Generate loopback kubeconfig separately to preserve OpenShift CA certificate.
  3005. (abutcher@redhat.com)
  3006. - registry: look for the oc executable in /usr/local/bin and ~/bin
  3007. (gscrivan@redhat.com)
  3008. - router: look for the oc executable in /usr/local/bin and ~/bin
  3009. (gscrivan@redhat.com)
  3010. - Retry docker startup once (sdodson@redhat.com)
  3011. * Tue Jun 27 2017 Scott Dodson <sdodson@redhat.com> 3.6.123.1002-1
  3012. - Fix typo in fluentd_secureforward_contents variable
  3013. (Andreas.Dembach@dg-i.net)
  3014. - Reverting quotation change in ansible_service_broker install for etcd
  3015. (ewolinet@redhat.com)
  3016. * Mon Jun 26 2017 Scott Dodson <sdodson@redhat.com> 3.6.123.1001-1
  3017. - oc_atomic_container: use rpm to check the version. (gscrivan@redhat.com)
  3018. - Fix .spec for stagecut (jupierce@redhat.com)
  3019. - Picking change from sdodson (ewolinet@redhat.com)
  3020. - openshift_version: skip nfs and lb hosts (smilner@redhat.com)
  3021. - openshift_checks: eval groups before including role (lmeyer@redhat.com)
  3022. - Adding volume fact for etcd for openshift ansible service broker
  3023. (ewolinet@redhat.com)
  3024. - Updating to label node and wait for apiservice to be healthy and started
  3025. (ewolinet@redhat.com)
  3026. - Also configure default registry on HA masters (sdodson@redhat.com)
  3027. - Fix parsing certs with very large serial numbers (tbielawa@redhat.com)
  3028. - fix yamllint issues (fabian@fabianism.us)
  3029. - openshift_logging: use empty default for storage labels (fsimonce@redhat.com)
  3030. - Set clean install and etcd storage on first master to fix scaleup
  3031. (sdodson@redhat.com)
  3032. - images, syscontainer: change default value for ANSIBLE_CONFIG
  3033. (gscrivan@redhat.com)
  3034. - Cleanup/updates for env variables and etcd image (fabian@fabianism.us)
  3035. - Sync 3.5 cfme templates over to 3.6 (sdodson@redhat.com)
  3036. - Moving checks down after required initialization happens.
  3037. (kwoodson@redhat.com)
  3038. - add play and role to install ansible-service-broker (fabian@fabianism.us)
  3039. - Creation of service_catalog and placeholder broker roles
  3040. (ewolinet@redhat.com)
  3041. - GlusterFS: Use proper namespace for heketi command and service account
  3042. (jarrpa@redhat.com)
  3043. - Fixing quote issue. (kwoodson@redhat.com)
  3044. - GlusterFS: Fix heketi secret name (jarrpa@redhat.com)
  3045. - Fix for dynamic pvs when using storageclasses. (kwoodson@redhat.com)
  3046. - Ensure that host pki tree is mounted in containerized components
  3047. (sdodson@redhat.com)
  3048. * Fri Jun 23 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.123-1
  3049. - releases: enable build/push with multiple tags (lmeyer@redhat.com)
  3050. - Update template examples for 3.6 (rteague@redhat.com)
  3051. - Reverting v prefix introduced by stagecut (smunilla@redhat.com)
  3052. - Fixed readme doc. (kwoodson@redhat.com)
  3053. - Adding version field for stagecut (smunilla@redhat.com)
  3054. - Remove package_update from install playbook (rhcarvalho@gmail.com)
  3055. - Restart NetworkManager only if dnsmasq was used
  3056. (bliemli@users.noreply.github.com)
  3057. - remove extra close brace in example inventory (gpei@redhat.com)
  3058. - Adding option for serviceAccountConfig.limitSecretReferences
  3059. (kwoodson@redhat.com)
  3060. - doc: Add system_container examples to inventory (smilner@redhat.com)
  3061. - system_containers: Add openshift_ to other system_container vars
  3062. (smilner@redhat.com)
  3063. - system_containers: Add openshift_ to use_system_containers var
  3064. (smilner@redhat.com)
  3065. - detect etcd service name based on etcd runtime when restarting
  3066. (jchaloup@redhat.com)
  3067. - set proper etcd_data_dir for system container (jchaloup@redhat.com)
  3068. - etcd, system_container: do not mask etcd_container (gscrivan@redhat.com)
  3069. - etcd, system_container: do not enable system etcd (gscrivan@redhat.com)
  3070. - oc_atomic_container: Require 1.17.2 (smilner@redhat.com)
  3071. - Verify matched openshift_upgrade_nodes_label (rteague@redhat.com)
  3072. - bug 1457642. Use same SG index to avoid seeding timeout (jcantril@redhat.com)
  3073. * Wed Jun 21 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.122-1
  3074. -
  3075. * Tue Jun 20 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.121-1
  3076. - Updating default from null to "" (ewolinet@redhat.com)
  3077. * Tue Jun 20 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.120-1
  3078. - Update atomic-openshift-master.j2 (sdodson@redhat.com)
  3079. - Enable push to registry via dns only on clean 3.6 installs
  3080. (sdodson@redhat.com)
  3081. - Disable actually pushing to the registry via dns for now (sdodson@redhat.com)
  3082. - Add openshift_node_dnsmasq role to upgrade (sdodson@redhat.com)
  3083. - Push to the registry via dns (sdodson@redhat.com)
  3084. * Tue Jun 20 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.119-1
  3085. - Temporarilly only migrate jobs as we were before (sdodson@redhat.com)
  3086. - Disable TLS verification in skopeo inspect (rhcarvalho@gmail.com)
  3087. - Preserve etcd3 storage if it's already in use (sdodson@redhat.com)
  3088. - GlusterFS: Generate better secret keys (jarrpa@redhat.com)
  3089. - GlusterFS: Fix error when groups.glusterfs_registry is undefined.
  3090. (jarrpa@redhat.com)
  3091. - GlusterFS: Use proper identity in heketi secret (jarrpa@redhat.com)
  3092. - GlusterFS: Allow configuration of heketi port (jarrpa@redhat.com)
  3093. - GlusterFS: Fix variable typo (jarrpa@redhat.com)
  3094. - GlusterFS: Minor template fixes (jarrpa@redhat.com)
  3095. - registry: mount GlusterFS storage volume from correct host
  3096. (jarrpa@redhat.com)
  3097. * Mon Jun 19 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.117-1
  3098. - Run storage upgrade pre and post master upgrade (rteague@redhat.com)
  3099. - Introduce etcd migrate role (jchaloup@redhat.com)
  3100. - Add support for rhel, aci, vxlan (srampal@cisco.com)
  3101. * Sun Jun 18 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.116-1
  3102. - PAPR: define openshift_image_tag via command line (rhcarvalho@gmail.com)
  3103. - Ensure only one ES pod per PV (peter.portante@redhat.com)
  3104. - etcd v3 for clean installs (sdodson@redhat.com)
  3105. - Rename cockpit-shell -> cockpit-system (rhcarvalho@gmail.com)
  3106. - Update image repo name, images have been moved from 'cloudforms' to
  3107. 'cloudforms42' for CF 4.2. (simaishi@redhat.com)
  3108. - Update image repo name, images have been moved from 'cloudforms' to
  3109. 'cloudforms45' for CF 4.5. (simaishi@redhat.com)
  3110. - CloudForms 4.5 templates (simaishi@redhat.com)
  3111. * Fri Jun 16 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.114-1
  3112. -
  3113. * Fri Jun 16 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.113-1
  3114. - Make rollout status check best-effort, add poll (skuznets@redhat.com)
  3115. - Verify the rollout status of the hosted router and registry
  3116. (skuznets@redhat.com)
  3117. - fix es routes for new logging roles (rmeggins@redhat.com)
  3118. * Thu Jun 15 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.112-1
  3119. - Add the the other featured audit-config paramters as example (al-
  3120. git001@none.at)
  3121. * Thu Jun 15 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.111-1
  3122. - doc: Info for system container installer options (smilner@redhat.com)
  3123. - Add ANSIBLE_CONFIG to system container installer (smilner@redhat.com)
  3124. - Add missing file. Remove debugging prompt. (tbielawa@redhat.com)
  3125. - Update readme one last time (tbielawa@redhat.com)
  3126. - Reconfigure masters in serial to avoid HA meltdowns (tbielawa@redhat.com)
  3127. - First POC of a CFME turnkey solution in openshift-anisble
  3128. (tbielawa@redhat.com)
  3129. - Reverted most of this pr 4356 except: adding
  3130. openshift_logging_fluentd_buffer_queue_limit: 1024
  3131. openshift_logging_fluentd_buffer_size_limit: 1m
  3132. openshift_logging_mux_buffer_queue_limit: 1024
  3133. openshift_logging_mux_buffer_size_limit: 1m and setting the matched
  3134. environment variables. (nhosoi@redhat.com)
  3135. - Adding the defaults for openshift_logging_fluentd_{cpu,memory}_limit to
  3136. roles/openshift_logging_fluentd/defaults/main.yml. (nhosoi@redhat.com)
  3137. - Adding environment variables FLUENTD_CPU_LIMIT, FLUENTD_MEMORY_LIMIT,
  3138. MUX_CPU_LIMIT, MUX_MEMORY_LIMIT. (nhosoi@redhat.com)
  3139. - Introducing fluentd/mux buffer_queue_limit, buffer_size_limit, cpu_limit, and
  3140. memory_limit. (nhosoi@redhat.com)
  3141. * Thu Jun 15 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.110-1
  3142. - papr: add documentation to YAML and simplify context (jlebon@redhat.com)
  3143. - docs: better documentation for PAPR (jlebon@redhat.com)
  3144. - papr: install libffi-devel (jlebon@redhat.com)
  3145. - pre-install checks: add more during byo install (lmeyer@redhat.com)
  3146. - move etcd backup to etcd_common role (jchaloup@redhat.com)
  3147. - Support installing HOSA via ansible (mwringe@redhat.com)
  3148. - GlusterFS: Remove requirement for heketi-cli (jarrpa@redhat.com)
  3149. - GlusterFS: Fix bugs in wipe (jarrpa@redhat.com)
  3150. - GlusterFS: Skip heketi-cli install on Atomic (jarrpa@redhat.com)
  3151. - GlusterFS: Create a StorageClass if specified (jarrpa@redhat.com)
  3152. - GlusterFS: Use proper secrets (jarrpa@redhat.com)
  3153. - GlusterFS: Allow cleaner separation of multiple clusters (jarrpa@redhat.com)
  3154. - GlusterFS: Minor corrections and cleanups (jarrpa@redhat.com)
  3155. - GlusterFS: Improve documentation (jarrpa@redhat.com)
  3156. - GlusterFS: Allow configuration of kube namespace for heketi
  3157. (jarrpa@redhat.com)
  3158. - GlusterFS: Adjust when clauses for registry config (jarrpa@redhat.com)
  3159. - GlusterFS: Allow failure reporting when deleting deploy-heketi
  3160. (jarrpa@redhat.com)
  3161. - GlusterFS: Tweak pod probe parameters (jarrpa@redhat.com)
  3162. - GlusterFS: Allow for configuration of node selector (jarrpa@redhat.com)
  3163. - GlusterFS: Label on Openshift node name (jarrpa@redhat.com)
  3164. - GlusterFS: Make sure timeout is an int (jarrpa@redhat.com)
  3165. - GlusterFS: Use groups variables (jarrpa@redhat.com)
  3166. - papr: rename redhat-ci related files to papr (jlebon@redhat.com)
  3167. - singletonize some role tasks that repeat a lot (lmeyer@redhat.com)
  3168. * Wed Jun 14 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.109-1
  3169. -
  3170. * Wed Jun 14 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.108-1
  3171. - Upgraded Calico to 2.2.1 Release (vincent.schwarzer@yahoo.de)
  3172. * Wed Jun 14 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.107-1
  3173. - Disable negative caching, set cache TTL to 1s (skuznets@redhat.com)
  3174. - Update mounts in system container installer (smilner@redhat.com)
  3175. - Set ansible retry file location (smilner@redhat.com)
  3176. - installer: add bind mount for /etc/resolv.conf (gscrivan@redhat.com)
  3177. - Making pylint happy (ewolinet@redhat.com)
  3178. - Fix possible access to undefined variable (rhcarvalho@gmail.com)
  3179. - certificates: copy the certificates for the etcd system container
  3180. (gscrivan@redhat.com)
  3181. - Separate etcd and OpenShift CA redeploy playbooks. (abutcher@redhat.com)
  3182. - lib/base: allow for results parsing on non-zero return code
  3183. (jarrpa@redhat.com)
  3184. - etcd: system container defines ETCD_(PEER_)?TRUSTED_CA_FILE
  3185. (gscrivan@redhat.com)
  3186. - etcd: unmask system container service before installing it
  3187. (gscrivan@redhat.com)
  3188. - etcd: copy previous database when migrating to system container
  3189. (gscrivan@redhat.com)
  3190. - etcd: define data dir location for the system container (gscrivan@redhat.com)
  3191. - oc_obj: set _delete() rc to 0 if err is 'not found' (jarrpa@redhat.com)
  3192. - oc_obj: only check 'items' if exists in delete (jarrpa@redhat.com)
  3193. - Removed hardocded Calico Policy Controller URL (vincent.schwarzer@yahoo.de)
  3194. - Allowing openshift_metrics to specify PV selectors and allow way to define
  3195. selectors when creating pv (ewolinet@redhat.com)
  3196. * Tue Jun 13 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.6.100-1
  3197. - Change default key for gce (hekumar@redhat.com)
  3198. - set etcd working directory for embedded etcd (jchaloup@redhat.com)
  3199. - Add daemon-reload handler to openshift_node and notify when /etc/systemd
  3200. files have been updated. (abutcher@redhat.com)
  3201. - Use volume.beta.kubernetes.io annotation for storage-classes
  3202. (per.carlson@vegvesen.no)
  3203. - Correct master-config update during upgrade (rteague@redhat.com)
  3204. * Mon Jun 12 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.99-1
  3205. - Replace repoquery with module (jchaloup@redhat.com)
  3206. - Consider previous value of 'changed' when updating (rhcarvalho@gmail.com)
  3207. - Improve code readability (rhcarvalho@gmail.com)
  3208. - Disable excluder only on nodes that are not masters (jchaloup@redhat.com)
  3209. - Added includes to specify openshift version for libvirt cluster create.
  3210. Otherwise bin/cluster create fails on unknown version for libvirt deployment.
  3211. (schulthess@puzzle.ch)
  3212. - docker checks: finish and refactor (lmeyer@redhat.com)
  3213. - oc_secret: allow use of force for secret type (jarrpa@redhat.com)
  3214. - add docker storage, docker driver checks (jvallejo@redhat.com)
  3215. - Add dependency and use same storageclass name as upstream
  3216. (hekumar@redhat.com)
  3217. - Add documentation (hekumar@redhat.com)
  3218. - Install default storageclass in AWS & GCE envs (hekumar@redhat.com)
  3219. * Fri Jun 09 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.98-1
  3220. -
  3221. * Fri Jun 09 2017 Scott Dodson <sdodson@redhat.com> 3.6.97-1
  3222. - Updated to using oo_random_word for secret gen (ewolinet@redhat.com)
  3223. - Updating kibana to store session and oauth secrets for reuse, fix oauthclient
  3224. generation for ops (ewolinet@redhat.com)
  3225. * Thu Jun 08 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.89.5-1
  3226. - Rename container image to origin-ansible / ose-ansible (pep@redhat.com)
  3227. * Thu Jun 08 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.89.4-1
  3228. - Guard check for container install based on openshift dictionary key
  3229. (ayoung@redhat.com)
  3230. - Separate client config removal in uninstall s.t. ansible_ssh_user is removed
  3231. from with_items. (abutcher@redhat.com)
  3232. - Remove supported/implemented barrier for registry object storage providers.
  3233. (abutcher@redhat.com)
  3234. - Add node unit file on upgrade (smilner@redhat.com)
  3235. - fix up openshift-ansible for use with 'oc cluster up' (jcantril@redhat.com)
  3236. - specify all logging index mappings for kibana (jcantril@redhat.com)
  3237. - openshift-master: set r_etcd_common_etcd_runtime (gscrivan@redhat.com)
  3238. - rename daemon.json to container-daemon.json (smilner@redhat.com)
  3239. - Updating probe timeout and exposing variable to adjust timeout in image
  3240. (ewolinet@redhat.com)
  3241. - Do not attempt to override openstack nodename (jdetiber@redhat.com)
  3242. - Update image stream to openshift/origin:2c55ade (skuznets@redhat.com)
  3243. * Wed Jun 07 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.89.3-1
  3244. - Use local openshift.master.loopback_url when generating initial master
  3245. loopback kubeconfigs. (abutcher@redhat.com)
  3246. * Tue Jun 06 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.89.2-1
  3247. -
  3248. * Tue Jun 06 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.89.1-1
  3249. - Updating image for registry_console (ewolinet@redhat.com)
  3250. - add elasticseatch, fluentd, kibana check (jvallejo@redhat.com)
  3251. - show correct default value in inventory (mmckinst@redhat.com)
  3252. - Skip service restarts within ca redeployment playbook when expired
  3253. certificates are detected. (abutcher@redhat.com)
  3254. - Add mtu setting to /etc/sysconfig/docker-network (sdodson@redhat.com)
  3255. - Add daemon_reload parameter to service tasks (tbielawa@redhat.com)
  3256. - mux uses fluentd cert/key to talk to ES (rmeggins@redhat.com)
  3257. - fix curator host, port params; remove curator es volumes
  3258. (rmeggins@redhat.com)
  3259. - add mux docs; allow to specify mux namespaces (rmeggins@redhat.com)
  3260. - oc_secret: allow for specifying secret type (jarrpa@redhat.com)
  3261. - Revert "Merge pull request #4271 from DG-i/master" (skuznets@redhat.com)
  3262. - verify upgrade targets separately for each group (masters, nodes, etcd)
  3263. (jchaloup@redhat.com)
  3264. - Updating Kibana-proxy secret key name, fixing deleting secrets, fixed extra
  3265. ES dc creation (ewolinet@redhat.com)
  3266. - upgrade: Reload systemd before restart (smilner@redhat.com)
  3267. - Skip router/registry cert redeploy when
  3268. openshift_hosted_manage_{router,registry}=false (abutcher@redhat.com)
  3269. - disable docker excluder before it is updated to remove older excluded
  3270. packages (jchaloup@redhat.com)
  3271. - Support byo etcd for calico (djosborne10@gmail.com)
  3272. - preflight int tests: fix for package_version changes (lmeyer@redhat.com)
  3273. - Remove unnecessary comment. (rhcarvalho@gmail.com)
  3274. - update aos_version module to support generic pkgs and versions
  3275. (jvallejo@redhat.com)
  3276. - Add separate variables for control plane nodes (sdodson@redhat.com)
  3277. - Copy Nuage VSD generated user certificates to Openshift master nodes
  3278. (sneha.deshpande@nokia.com)
  3279. - add existing_ovs_version check (jvallejo@redhat.com)
  3280. - Tolerate failures in the node upgrade playbook (sdodson@redhat.com)
  3281. * Wed May 31 2017 Scott Dodson <sdodson@redhat.com> 3.6.89.0-1
  3282. - AMP 2.0 (sdodson@redhat.com)
  3283. - add support for oc_service for labels, externalIPs (rmeggins@redhat.com)
  3284. - [JMAN4-161] Add templates and pv example for cloudforms jboss middleware
  3285. manager (pgier@redhat.com)
  3286. * Wed May 31 2017 Scott Dodson <sdodson@redhat.com> 3.6.89-1
  3287. - Adding default value for openshift_hosted_logging_storage_kind
  3288. (ewolinet@redhat.com)
  3289. - memory check: use GiB/MiB and adjust memtotal (lmeyer@redhat.com)
  3290. - bool (sdodson@redhat.com)
  3291. - Metrics: update the imagePullPolicy to be always (mwringe@redhat.com)
  3292. - Remove typos that got reintroduced (smilner@redhat.com)
  3293. - oc_atomic_container: Workaround for invalid json from atomic command
  3294. (smilner@redhat.com)
  3295. - Remove system-package=no from container-engine install (smilner@redhat.com)
  3296. - oc_atomic_container: Hard code system-package=no (smilner@redhat.com)
  3297. - Updating to generate PVC when storage type is passed in as nfs
  3298. (ewolinet@redhat.com)
  3299. - disable become for local actions (Mathias.Merscher@dg-i.net)
  3300. - check for rpm version and docker image version equality only if
  3301. openshift_pkg_version and openshift_image_tag are not defined
  3302. (jchaloup@redhat.com)
  3303. * Tue May 30 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.86-1
  3304. - Reduce memory requirement to 2gb for fedora ci jobs (sdodson@redhat.com)
  3305. - openshift_logging: increasing *_elasticsearch_* default CPU and memory
  3306. (jwozniak@redhat.com)
  3307. - Updating python-passlib assert (ewolinet@redhat.com)
  3308. - allow to configure oreg_url specifically for node or master. refs #4233
  3309. (tobias@tobru.ch)
  3310. - Updating registry-console version to be v3.6 instead of 3.6
  3311. (ewolinet@redhat.com)
  3312. * Thu May 25 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.85-1
  3313. - Prepending v to registry-console version (ewolinet@redhat.com)
  3314. - memory health check: adjust threshold for etcd (lmeyer@redhat.com)
  3315. - health checks: specify check skip reason (lmeyer@redhat.com)
  3316. - health checks: configure failure output in playbooks (lmeyer@redhat.com)
  3317. - disk/memory checks: make threshold configurable (lmeyer@redhat.com)
  3318. - Show help on how to disable checks after failure (rhcarvalho@gmail.com)
  3319. - Allow disabling checks via Ansible variable (rhcarvalho@gmail.com)
  3320. - Verify memory and disk requirements before install (rhcarvalho@gmail.com)
  3321. - filter_plugins: Allow for multiple pairs in map_from_pairs()
  3322. (jarrpa@redhat.com)
  3323. * Wed May 24 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.84-1
  3324. - oc_process: Better error output on failed template() call (jarrpa@redhat.com)
  3325. * Wed May 24 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.83-1
  3326. - Allow a hostname to resolve to 127.0.0.1 during validation (dms@redhat.com)
  3327. * Wed May 24 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.82-1
  3328. - Fixing tux warnings and some final clean up (ewolinet@redhat.com)
  3329. - Appease travis (sdodson@redhat.com)
  3330. - preflight int tests: fix test flake (lmeyer@redhat.com)
  3331. - Add a readiness probe to the Kibana container (skuznets@redhat.com)
  3332. - Create logging deployments with non-zero replica counts (skuznets@redhat.com)
  3333. - Pulling changes from master branch (ewolinet@redhat.com)
  3334. - Adding some missing changes (ewolinet@redhat.com)
  3335. - fixing available variables for 2.3.0 (ewolinet@redhat.com)
  3336. - Updating pvc generation names (ewolinet@redhat.com)
  3337. - updating delete_logging to use modules (ewolinet@redhat.com)
  3338. - Pulling in changes from master (ewolinet@redhat.com)
  3339. - Decomposing openshift_logging role into subcomponent roles
  3340. (ewolinet@redhat.com)
  3341. - Fix renaming error with calico template files (djosborne10@gmail.com)
  3342. * Tue May 23 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.80-1
  3343. - RPM workaround for the move of cert playbooks (pep@redhat.com)
  3344. - health check playbooks: relocate and expand (lmeyer@redhat.com)
  3345. * Tue May 23 2017 Scott Dodson <sdodson@redhat.com> 3.6.69-1
  3346. - preflight int tests: fix for openshift_version dep (lmeyer@redhat.com)
  3347. - Removing requirement to pass aws credentials (esauer@redhat.com)
  3348. - Workaround sysctl module issue with py3 by converting task to lineinfile.
  3349. (abutcher@redhat.com)
  3350. - inventory: rename certificates->certificate in router example
  3351. (smilner@redhat.com)
  3352. - remove skopeo dependency on docker-py (jvallejo@redhat.com)
  3353. - improve error handling for missing vars (jvallejo@redhat.com)
  3354. - lib/base: Allow for more complex template params (jarrpa@redhat.com)
  3355. - Fix yamllint problems (sdodson@redhat.com)
  3356. - add ability to expose Elasticsearch as an external route
  3357. (rmeggins@redhat.com)
  3358. - Parameterized Calico/Node Arguments (vincent.schwarzer@yahoo.de)
  3359. - Fix auditConfig for non-HA environments (rteague@redhat.com)
  3360. - Added Docker Registry Port 5000 to Firewalld (vincent.schwarzer@yahoo.de)
  3361. - Added Calicoctl to deployment of Master Nodes (vincent.schwarzer@yahoo.de)
  3362. - move etcd upgrade related code into etcd_upgrade role (jchaloup@redhat.com)
  3363. - Localhost TMP Dir Fix (vincent.schwarzer@yahoo.de)
  3364. - Adjusted Naming Schema of Calico Roles (vincent.schwarzer@yahoo.de)
  3365. - Update hosts.*.example to include openshift_hosted_metrics_deployer_version
  3366. (pat2man@gmail.com)
  3367. - Fix gpg key path in our repo (sdodson@redhat.com)
  3368. - Uninstall: restart docker when container-engine restart hasn't changed.
  3369. (abutcher@redhat.com)
  3370. - add etcd cluster size check (jvallejo@redhat.com)
  3371. - fix etcd_container_version detection (jchaloup@redhat.com)
  3372. - systemcontainercustom.conf.j2: use Environment instead of ENVIRONMENT
  3373. (gscrivan@redhat.com)
  3374. - node, systemd: change Requires to Wants for openvswitch (gscrivan@redhat.com)
  3375. - Add teams attribute to github identity provider (dms@redhat.com)
  3376. - Don't escalate privileges in local tmpdir creation (skuznets@redhat.com)
  3377. - Remove use of local_action with delegate_to and switch 'delegate_to:
  3378. localhost' temporary directory cleanup actions to local_actions.
  3379. (abutcher@redhat.com)
  3380. - Rework openshift_excluders role (rteague@redhat.com)
  3381. - Add regexp for container-engine lineinfile (smilner@redhat.com)
  3382. - Default image policy on new clusters to on (ccoleman@redhat.com)
  3383. - revert role-specific var name (jvallejo@redhat.com)
  3384. - Filter non-strings from the oc_adm_ca_server_cert hostnames parameter.
  3385. (abutcher@redhat.com)
  3386. - Don't set-up origin repositories if they've already been configured
  3387. (dms@redhat.com)
  3388. - byo inventory versions 1.5 -> 3.6 (smilner@redhat.com)
  3389. - byo inventory versions 3.5 -> 3.6 (smilner@redhat.com)
  3390. - use dest instead of path for lineinfile (smilner@redhat.com)
  3391. - openshift_version: skip rpm version==image version on Atomic
  3392. (gscrivan@redhat.com)
  3393. - Add NO_PROXY workaround for container-engine atomic command
  3394. (smilner@redhat.com)
  3395. - Add no_proxy to atomic.conf (smilner@redhat.com)
  3396. - Include object validation in 3.6 upgrades (sdodson@redhat.com)
  3397. - uninstall: handle container-engine (gscrivan@redhat.com)
  3398. - Added Calico BGP Port 179 to Firewalld (vincent.schwarzer@yahoo.de)
  3399. - Fixed for python3 with Fedora 25 Atomic (donny@fortnebula.com)
  3400. - Add docker package for container-engine install (smilner@redhat.com)
  3401. - Fix python3 error in repoquery (jpeeler@redhat.com)
  3402. - check if hostname is in list of etcd hosts (jvallejo@redhat.com)
  3403. - Fix templating of static service files (rteague@redhat.com)
  3404. - Fix container image build references (pep@redhat.com)
  3405. - Reset selinux context on /var/lib/origin/openshift.common.volumes
  3406. (sdodson@redhat.com)
  3407. - Adding assert to check for python-passlib on control host
  3408. (ewolinet@redhat.com)
  3409. - Update variable name to standard (rhcarvalho@gmail.com)
  3410. - Make class attribute name shorter (rhcarvalho@gmail.com)
  3411. - Add module docstring (rhcarvalho@gmail.com)
  3412. - Update check (rhcarvalho@gmail.com)
  3413. - Change based on feedback (vincent.schwarzer@yahoo.de)
  3414. - Removed Hardcoded Calico URLs (vincent.schwarzer@yahoo.de)
  3415. - int -> float (rhcarvalho@gmail.com)
  3416. - Remove vim line (rhcarvalho@gmail.com)
  3417. - add etcd volume check (jvallejo@redhat.com)
  3418. - Added additional Calico Network Plugin Checks (vincent.schwarzer@yahoo.de)
  3419. - Ensure good return code for specific until loops (smilner@redhat.com)
  3420. - add template service broker configurable (jminter@redhat.com)
  3421. - Prevent line wrap in yaml dump of IDP, fixes #3912 (rikkuness@gmail.com)
  3422. * Sat May 13 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.68-1
  3423. - Updating registry-console image version during a post_control_plane upgrade
  3424. (ewolinet@redhat.com)
  3425. - Remove userland-proxy-path from daemon.json (smilner@redhat.com)
  3426. - Fix whistespace issues in custom template (smilner@redhat.com)
  3427. - Always add proxy items to atomic.conf (smilner@redhat.com)
  3428. - Move container-engine systemd environment to updated location
  3429. (smilner@redhat.com)
  3430. - doc: Add link to daemon.json upstream doc (smilner@redhat.com)
  3431. - Remove unused daemon.json keys (smilner@redhat.com)
  3432. - bug 1448860. Change recovery_after_nodes to match node_quorum
  3433. (jcantril@redhat.com)
  3434. - bug 1441369. Kibana memory limits bug 1439451. Kibana crash
  3435. (jcantril@redhat.com)
  3436. - Extend repoquery command (of lib_utils role) to ignore excluders
  3437. (jchaloup@redhat.com)
  3438. - lower case in /etc/daemon.json and correct block-registry (ghuang@redhat.com)
  3439. - Fix for yedit custom separators (mwoodson@redhat.com)
  3440. - Updating 3.6 enterprise registry-console template image version
  3441. (ewolinet@redhat.com)
  3442. - Default to iptables on master (sdodson@redhat.com)
  3443. - Rename blocked-registries to block-registries (smilner@redhat.com)
  3444. - Ensure true is lowercase in daemon.json (smilner@redhat.com)
  3445. - use docker_log_driver and /etc/docker/daemon.json to determine log driver
  3446. (rmeggins@redhat.com)
  3447. - Temporarily revert to OSEv3 host group usage (rteague@redhat.com)
  3448. - Add service file templates for master and node (smilner@redhat.com)
  3449. - Update systemd units to use proper container service name
  3450. (smilner@redhat.com)
  3451. - polish etcd_common role (jchaloup@redhat.com)
  3452. - Note existence of Fedora tests and how to rerun (rhcarvalho@gmail.com)
  3453. - Fix for OpenShift SDN Check (vincent.schwarzer@yahoo.de)
  3454. - Updating oc_obj to use get instead of getattr (ewolinet@redhat.com)
  3455. - Updating size suffix for metrics in role (ewolinet@redhat.com)
  3456. - GlusterFS: Allow swapping an existing registry's backend storage
  3457. (jarrpa@redhat.com)
  3458. - GlusterFS: Allow for a separate registry-specific playbook
  3459. (jarrpa@redhat.com)
  3460. - GlusterFS: Improve role documentation (jarrpa@redhat.com)
  3461. - hosted_registry: Get correct pod selector for GlusterFS storage
  3462. (jarrpa@redhat.com)
  3463. - hosted registry: Fix typo (jarrpa@redhat.com)
  3464. - run excluders over selected set of hosts during control_plane/node upgrade
  3465. (jchaloup@redhat.com)
  3466. - Reserve kubernetes and 'kubernetes-' prefixed namespaces
  3467. (jliggitt@redhat.com)
  3468. - oc_volume: Add missing parameter documentation (jarrpa@redhat.com)
  3469. * Wed May 10 2017 Scott Dodson <sdodson@redhat.com> 3.6.67-1
  3470. - byo: correct option name (gscrivan@redhat.com)
  3471. - Fail if rpm version != docker image version (jchaloup@redhat.com)
  3472. - Perform package upgrades in one transaction (sdodson@redhat.com)
  3473. - Properly fail if OpenShift RPM version is undefined (rteague@redhat.com)
  3474. * Wed May 10 2017 Scott Dodson <sdodson@redhat.com> 3.6.66-1
  3475. - Fix issue with Travis-CI using old pip version (rteague@redhat.com)
  3476. - Remove vim configuration from Python files (rhcarvalho@gmail.com)
  3477. - Use local variables for daemon.json template (smilner@redhat.com)
  3478. - Fix additional master cert & client config creation. (abutcher@redhat.com)
  3479. * Tue May 09 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.62-1
  3480. -
  3481. * Tue May 09 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.61-1
  3482. -
  3483. * Mon May 08 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.60-1
  3484. -
  3485. * Mon May 08 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.59-1
  3486. - Updating logging and metrics to restart api, ha and controllers when updating
  3487. master config (ewolinet@redhat.com)
  3488. - Adding defaults for es_indices (ewolinet@redhat.com)
  3489. - Updating logic for generating pvcs and their counts to prevent reuse when
  3490. looping (ewolinet@redhat.com)
  3491. * Mon May 08 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.58-1
  3492. - Moving Dockerfile content to images dir (jupierce@redhat.com)
  3493. * Mon May 08 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.57-1
  3494. -
  3495. * Sun May 07 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.56-1
  3496. -
  3497. * Sat May 06 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.55-1
  3498. - Fix 1448368, and some other minors issues (ghuang@redhat.com)
  3499. - mux startup is broken without this fix (rmeggins@redhat.com)
  3500. - Dockerfile: create symlink for /opt/app-root/src (gscrivan@redhat.com)
  3501. - docs: Add basic system container dev docs (smilner@redhat.com)
  3502. - installer: Add system container variable for log saving (smilner@redhat.com)
  3503. - installer: support running as a system container (gscrivan@redhat.com)
  3504. * Fri May 05 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.54-1
  3505. - Allow oc_ modules to pass unicode results (rteague@redhat.com)
  3506. - Ensure repo cache is clean on the first run (rteague@redhat.com)
  3507. - move etcdctl.yml from etcd to etcd_common role (jchaloup@redhat.com)
  3508. - Modified pick from release-1.5 for updating hawkular htpasswd generation
  3509. (ewolinet@redhat.com)
  3510. * Thu May 04 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.53-1
  3511. - Correctly setting the primary and replica shard count settings
  3512. (ewolinet@redhat.com)
  3513. - System container docker (smilner@redhat.com)
  3514. - Stop logging AWS credentials in master role. (dgoodwin@redhat.com)
  3515. - Remove set operations from openshift_master_certificates iteration.
  3516. (abutcher@redhat.com)
  3517. - Refactor system fact gathering to avoid dictionary size change during
  3518. iteration. (abutcher@redhat.com)
  3519. - Refactor secret generation for python3. (abutcher@redhat.com)
  3520. - redhat-ci: use requirements.txt (jlebon@redhat.com)
  3521. * Wed May 03 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.52-1
  3522. - Making mux with_items list evaluate as empty if didnt get objects before
  3523. (ewolinet@redhat.com)
  3524. - etcd Upgrade Refactor (rteague@redhat.com)
  3525. - v3.3 Upgrade Refactor (rteague@redhat.com)
  3526. - v3.4 Upgrade Refactor (rteague@redhat.com)
  3527. - v3.5 Upgrade Refactor (rteague@redhat.com)
  3528. - v3.6 Upgrade Refactor (rteague@redhat.com)
  3529. - Fix variants for v3.6 (rteague@redhat.com)
  3530. - Normalizing groups. (kwoodson@redhat.com)
  3531. - Use openshift_ca_host's hostnames to sign the CA (sdodson@redhat.com)
  3532. * Tue May 02 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.51-1
  3533. - Remove std_include from playbooks/byo/rhel_subscribe.yml
  3534. (abutcher@redhat.com)
  3535. - Adding way to add labels and nodeselectors to logging project
  3536. (ewolinet@redhat.com)
  3537. * Tue May 02 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.50-1
  3538. - Don't double quote when conditions (sdodson@redhat.com)
  3539. - Remove jinja template delimeters from when conditions (sdodson@redhat.com)
  3540. - move excluder upgrade validation tasks under openshift_excluder role
  3541. (jchaloup@redhat.com)
  3542. - Fix test compatibility with OpenSSL 1.1.0 (pierre-
  3543. louis.bonicoli@libregerbil.fr)
  3544. * Mon May 01 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.49-1
  3545. - Warn users about conflicts with docker0 CIDR range (lpsantil@gmail.com)
  3546. - Bump ansible rpm dependency to 2.2.2.0 (sdodson@redhat.com)
  3547. * Mon May 01 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.48-1
  3548. -
  3549. * Mon May 01 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.47-1
  3550. -
  3551. * Mon May 01 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.46-1
  3552. - Contrib: Hook to verify modules match assembled fragments
  3553. (tbielawa@redhat.com)
  3554. * Mon May 01 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.45-1
  3555. -
  3556. * Sun Apr 30 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.44-1
  3557. - Refactor etcd roles (jchaloup@redhat.com)
  3558. * Sat Apr 29 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.43-1
  3559. - Document the Pull Request process (rhcarvalho@gmail.com)
  3560. - Add Table of Contents (rhcarvalho@gmail.com)
  3561. - Improve Contribution Guide (rhcarvalho@gmail.com)
  3562. - Replace absolute with relative URLs (rhcarvalho@gmail.com)
  3563. - Move repo structure to a separate document (rhcarvalho@gmail.com)
  3564. - Remove outdated information about PRs (rhcarvalho@gmail.com)
  3565. - Move link to BUILD.md to README.md (rhcarvalho@gmail.com)
  3566. - Adding checks for starting mux for 2.2.0 (ewolinet@redhat.com)
  3567. - Fix OpenShift registry deployment on OSE 3.2 (lhuard@amadeus.com)
  3568. * Fri Apr 28 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.42-1
  3569. - Fix certificate check Job examples (pep@redhat.com)
  3570. - Add python-boto requirement (pep@redhat.com)
  3571. * Thu Apr 27 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.41-1
  3572. - Add bool for proper conditional handling (rteague@redhat.com)
  3573. * Thu Apr 27 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.40-1
  3574. - Fix cluster creation with `bin/cluster` when there’s no glusterfs node
  3575. (lhuard@amadeus.com)
  3576. * Thu Apr 27 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.39-1
  3577. - Move container build instructions to BUILD.md (pep@redhat.com)
  3578. - Elaborate container image usage instructions (pep@redhat.com)
  3579. * Wed Apr 26 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.38-1
  3580. - .redhat-ci.yml: also publish journal logs (jlebon@redhat.com)
  3581. - Standardize all Origin versioning on 3.6 (rteague@redhat.com)
  3582. - integration tests: add CI scripts (lmeyer@redhat.com)
  3583. - preflight int tests: define image builds to support tests (lmeyer@redhat.com)
  3584. - preflight int tests: generalize; add tests (lmeyer@redhat.com)
  3585. - Add stub of preflight integration tests (rhcarvalho@gmail.com)
  3586. - Move Python unit tests to subdirectory (rhcarvalho@gmail.com)
  3587. - Revert "Add /etc/sysconfig/etcd to etcd_container" (sdodson@redhat.com)
  3588. - Replace original router cert variable names. (abutcher@redhat.com)
  3589. - oc_obj: Allow for multiple kinds in delete (jarrpa@redhat.com)
  3590. - Update v1.5 content (sdodson@redhat.com)
  3591. - Update v1.6 content (sdodson@redhat.com)
  3592. - Make the rhel_subscribe role subscribe to OSE 3.5 channel by default
  3593. (lhuard@amadeus.com)
  3594. - Addressing yamllint (ewolinet@redhat.com)
  3595. - Updating kibana-proxy secret key for server-tls entry (ewolinet@redhat.com)
  3596. - Pick from issue3896 (ewolinet@redhat.com)
  3597. - Cleanup comments and remove extraneous tasks (sdodson@redhat.com)
  3598. - Store backups in /var/lib/etcd/openshift-backup (sdodson@redhat.com)
  3599. - Create member/snap directory encase it doesn't exist (sdodson@redhat.com)
  3600. - Copy v3 data dir when performing backup (sdodson@redhat.com)
  3601. * Tue Apr 25 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.37-1
  3602. - Differentiate between service serving router certificate and custom
  3603. openshift_hosted_router_certificate when replacing the router certificate.
  3604. (abutcher@redhat.com)
  3605. * Tue Apr 25 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.36-1
  3606. - Update swap disable tasks (rteague@redhat.com)
  3607. - Removing resource version to remove object conflicts caused by race
  3608. conditions. (kwoodson@redhat.com)
  3609. - cast openshift_logging_use_mux_client to bool (rmeggins@redhat.com)
  3610. - mux does not require privileged, only hostmount-anyuid (rmeggins@redhat.com)
  3611. - Switched Heapster to use certificates generated by OpenShift
  3612. (juraci@kroehling.de)
  3613. - Use metrics and logging deployer tag v3.4 for enterprise (sdodson@redhat.com)
  3614. - Remove v1.5 and v1.6 metrics/logging templates (sdodson@redhat.com)
  3615. * Sun Apr 23 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.35-1
  3616. -
  3617. * Fri Apr 21 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.34-1
  3618. - GlusterFS: provide default for groups.oo_glusterfs_to_config in with_items
  3619. (jarrpa@redhat.com)
  3620. * Fri Apr 21 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.33-1
  3621. - Adding module calls instead of command for idempotency. (kwoodson@redhat.com)
  3622. - Use return_value when value is constant (pierre-
  3623. louis.bonicoli@libregerbil.fr)
  3624. - Add missing mock for locate_oc_binary method (pierre-
  3625. louis.bonicoli@libregerbil.fr)
  3626. * Fri Apr 21 2017 Scott Dodson <sdodson@redhat.com> 3.6.32-1
  3627. - Don't check excluder versions when they're not enabled (sdodson@redhat.com)
  3628. * Fri Apr 21 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.31-1
  3629. - Stop all services prior to upgrading, start all services after
  3630. (sdodson@redhat.com)
  3631. * Thu Apr 20 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.30-1
  3632. - Add Ansible syntax checks to tox (rteague@redhat.com)
  3633. - Add /etc/sysconfig/etcd to etcd_container (me@fale.io)
  3634. - openshift_version: improve messaging (lmeyer@redhat.com)
  3635. - Simplify memory availability check, review tests (rhcarvalho@gmail.com)
  3636. - Simplify mixin class (rhcarvalho@gmail.com)
  3637. - Simplify disk availability check, review tests (rhcarvalho@gmail.com)
  3638. - add disk and memory availability check tests (jvallejo@redhat.com)
  3639. - add ram and storage preflight check (jvallejo@redhat.com)
  3640. - Fix paths for file includes (rteague@redhat.com)
  3641. - Fix instantiation of action plugin in test fixture (rhcarvalho@gmail.com)
  3642. - Introduce Elasticsearch readiness probe (lukas.vlcek@gmail.com)
  3643. - added a empty file to the contiv empty dir. This allows contiv to be vendored
  3644. in git (mwoodson@redhat.com)
  3645. * Wed Apr 19 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.29-1
  3646. - Create openshift-metrics entrypoint playbook (rteague@redhat.com)
  3647. * Tue Apr 18 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.28-1
  3648. - Minor v3.6 upgrade docs fixes (rteague@redhat.com)
  3649. * Tue Apr 18 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.27-1
  3650. - repo: start testing PRs on Fedora Atomic Host (jlebon@redhat.com)
  3651. * Tue Apr 18 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.26-1
  3652. - Correct role dependencies (rteague@redhat.com)
  3653. - Allow for GlusterFS to provide registry storage (jarrpa@redhat.com)
  3654. - Integrate GlusterFS into OpenShift installation (jarrpa@redhat.com)
  3655. - GlusterFS playbook and role (jarrpa@redhat.com)
  3656. * Mon Apr 17 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.25-1
  3657. - Fix default image tag for enterprise (sdodson@redhat.com)
  3658. - Cast etcd_debug to a boolean (skuznets@redhat.com)
  3659. * Fri Apr 14 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.24-1
  3660. - tox tests: pin test requirement versions (lmeyer@redhat.com)
  3661. - This is no longer a widely encountered issue (sdodson@redhat.com)
  3662. - Standardize use of byo and common for network_manager.yml
  3663. (rteague@redhat.com)
  3664. - Disable swap space on nodes at install and upgrade (rteague@redhat.com)
  3665. - Do not check package version on non-master/node (rhcarvalho@gmail.com)
  3666. * Thu Apr 13 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.23-1
  3667. - Refactor initialize groups tasks (rteague@redhat.com)
  3668. - tox tests: pin test requirement versions (lmeyer@redhat.com)
  3669. - skip PackageAvailability check if not yum (jvallejo@redhat.com)
  3670. - Document service_type for openshift-enterprise (rhcarvalho@gmail.com)
  3671. - Remove references to outdated deployment_type (rhcarvalho@gmail.com)
  3672. - Update deployment_type documentation (rhcarvalho@gmail.com)
  3673. - Document merge time trends page (rhcarvalho@gmail.com)
  3674. - Remove outdated documentation (rhcarvalho@gmail.com)
  3675. - Remove outdated build instructions (rhcarvalho@gmail.com)
  3676. - openshift_sanitize_inventory: disallow conflicting deployment types
  3677. (lmeyer@redhat.com)
  3678. - Refactor docker upgrade playbooks (rteague@redhat.com)
  3679. - Changed Hawkular Metrics secrets to use a format similar to the one
  3680. automatically generated by OpenShift (juraci@kroehling.de)
  3681. * Wed Apr 12 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.22-1
  3682. - Fixed spelling mistake. (kwoodson@redhat.com)
  3683. - Remove unnecessary folder refs (rteague@redhat.com)
  3684. - Switching commands for modules during upgrade of router and registry.
  3685. (kwoodson@redhat.com)
  3686. - Fixing a compatibility issue with python 2.7 to 3.5 when reading from
  3687. subprocess. (kwoodson@redhat.com)
  3688. - Refactor use of initialize_oo_option_facts.yml (rteague@redhat.com)
  3689. - preflight checks: refactor and fix aos_version (lmeyer@redhat.com)
  3690. - Add external provisioners playbook starting with aws efs (mawong@redhat.com)
  3691. * Tue Apr 11 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.21-1
  3692. - Adding a query for the existing docker-registry route. (kwoodson@redhat.com)
  3693. - Removing docker-registry route from cockpit-ui. (kwoodson@redhat.com)
  3694. * Fri Apr 07 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.20-1
  3695. - Fixed a bug when oc command fails. (kwoodson@redhat.com)
  3696. - openshift_sanitize_inventory: validate release (lmeyer@redhat.com)
  3697. * Fri Apr 07 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.19-1
  3698. - Add example scheduled certificate check (pep@redhat.com)
  3699. - Switch from ignoring to passing on checks (rteague@redhat.com)
  3700. - Add tests for action plugin (rhcarvalho@gmail.com)
  3701. - Remove unnecessary code (rhcarvalho@gmail.com)
  3702. - Make resolve_checks more strict (rhcarvalho@gmail.com)
  3703. * Fri Apr 07 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.18-1
  3704. - master-api: add mount for /var/log (gscrivan@redhat.com)
  3705. - master: add mount for /var/log (gscrivan@redhat.com)
  3706. - unexclude excluder if it is to be upgraded and already installed
  3707. (jchaloup@redhat.com)
  3708. - Bump calico policy controller (djosborne10@gmail.com)
  3709. - Fixed a string format and a lint space issue (kwoodson@redhat.com)
  3710. - Fixed name and selector to be mutually exclusive (kwoodson@redhat.com)
  3711. - Adding ability to delete by selector. (kwoodson@redhat.com)
  3712. - Adding delete with selector support. (kwoodson@redhat.com)
  3713. * Thu Apr 06 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.17-1
  3714. - Adding signed router cert and fixing server_cert bug. (kwoodson@redhat.com)
  3715. * Wed Apr 05 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.16-1
  3716. - Removing test coverage for shared code. (kwoodson@redhat.com)
  3717. - Port 10255 unnecessary. Removing all instances (ccallega@redhat.com)
  3718. - oo_filters: Disable pylint too-many-lines test (jarrpa@redhat.com)
  3719. - oo_collect: Allow list elements to be lists of dict (jarrpa@redhat.com)
  3720. - oc_label: handle case where _get() returns no results (jarrpa@redhat.com)
  3721. - Addressing py27-yamllint (esauer@redhat.com)
  3722. - Add 'docker-registry.default.svc' to cert-redeploy too (sdodson@redhat.com)
  3723. - Support unicode output when dumping yaml (rteague@redhat.com)
  3724. - Add docker-registry.default.svc short name to registry service signing
  3725. (sdodson@redhat.com)
  3726. - oc_configmap: Add missing check for name (jarrpa@redhat.com)
  3727. - oo_collect: Update comments to show source of failure (jarrpa@redhat.com)
  3728. - openshift_facts: Allow examples_content_version to be set to v1.6
  3729. (jarrpa@redhat.com)
  3730. - Restart polkitd to workaround a bug in polkitd (sdodson@redhat.com)
  3731. - Add names to openshift_image_tag asserts (smilner@redhat.com)
  3732. - doc: Remove atomic-openshift deployment type (smilner@redhat.com)
  3733. - openshift_version now requires prepended version formats (smilner@redhat.com)
  3734. - Warn if openshift_image_tag is defined by hand for package installs
  3735. (smilner@redhat.com)
  3736. - Verify openshift_image_tag is valid during openshift_version main
  3737. (smilner@redhat.com)
  3738. - Add openshift_version fact fallback debug messages (smilner@redhat.com)
  3739. - cleanup: when in openshift_version tasks are multiline (smilner@redhat.com)
  3740. - Compatibility updates to openshift_logging role for ansible 2.2.2.0+
  3741. (esauer@redhat.com)
  3742. * Tue Apr 04 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.15-1
  3743. - Document etcd_ca_default_days in example inventories. (abutcher@redhat.com)
  3744. - Fixed a bug. Ansible requires a msg param when module.fail_json.
  3745. (kwoodson@redhat.com)
  3746. * Sat Apr 01 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.14-1
  3747. - Update v1.5 content (sdodson@redhat.com)
  3748. - Add v1.6 content (sdodson@redhat.com)
  3749. - Fix generated code (sdodson@redhat.com)
  3750. - bug 1432607. Allow configuration of ES log destination (jcantril@redhat.com)
  3751. - openshift_facts: install python3-dbus package on Fedora nodes.
  3752. (vsemushi@redhat.com)
  3753. - Remove kube-nfs-volumes role (mawong@redhat.com)
  3754. * Fri Mar 31 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.13-1
  3755. - fixed decode switch so it works on OSX (stobias@harborfreight.com)
  3756. - Wait for firewalld polkit policy to be defined (sdodson@redhat.com)
  3757. - Correct copy task to use remote source (rteague@redhat.com)
  3758. - validate and normalize inventory variables (lmeyer@redhat.com)
  3759. - Fixed spacing. (kwoodson@redhat.com)
  3760. - Fixed docs. Fixed add_resource. (kwoodson@redhat.com)
  3761. - Fixing linting for spaces. (kwoodson@redhat.com)
  3762. - Removing initial setting of metrics image prefix and version
  3763. (ewolinet@redhat.com)
  3764. - Adding clusterrole to the toolbox. (kwoodson@redhat.com)
  3765. - Fixed a bug in oc_volume. (kwoodson@redhat.com)
  3766. - Adding a few more test cases. Fixed a bug when key was empty. Safeguard
  3767. against yedit module being passed an empty key (kwoodson@redhat.com)
  3768. - Added the ability to do multiple edits (kwoodson@redhat.com)
  3769. - fix es config merge so template does not need quoting. gen then merge
  3770. (jcantril@redhat.com)
  3771. * Thu Mar 30 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.12-1
  3772. - Update example inventory files to mention certificate validity parameters.
  3773. (vsemushi@redhat.com)
  3774. - openshift_hosted: add openshift_hosted_registry_cert_expire_days parameter.
  3775. (vsemushi@redhat.com)
  3776. - oc_adm_ca_server_cert.py: re-generate. (vsemushi@redhat.com)
  3777. - oc_adm_ca_server_cert: add expire_days parameter. (vsemushi@redhat.com)
  3778. - openshift_ca: add openshift_ca_cert_expire_days and
  3779. openshift_master_cert_expire_days parameters. (vsemushi@redhat.com)
  3780. - redeploy-certificates/registry.yml: add
  3781. openshift_hosted_registry_cert_expire_days parameter. (vsemushi@redhat.com)
  3782. - openshift_master_certificates: add openshift_master_cert_expire_days
  3783. parameter. (vsemushi@redhat.com)
  3784. - openshift_node_certificates: add openshift_node_cert_expire_days parameter.
  3785. (vsemushi@redhat.com)
  3786. - Update Dockerfile.rhel7 to reflect changes to Dockerfile (pep@redhat.com)
  3787. * Wed Mar 29 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.11-1
  3788. - Add etcd_debug and etcd_log_package_levels variables (sdodson@redhat.com)
  3789. - Make the OCP available version detection excluder free (jchaloup@redhat.com)
  3790. - Add test scaffold for docker_image_availability.py (rhcarvalho@gmail.com)
  3791. - Add unit tests for package_version.py (rhcarvalho@gmail.com)
  3792. - Add unit tests for package_update.py (rhcarvalho@gmail.com)
  3793. - Add unit tests for package_availability.py (rhcarvalho@gmail.com)
  3794. - Add unit tests for mixins.py (rhcarvalho@gmail.com)
  3795. - Test recursively finding subclasses (rhcarvalho@gmail.com)
  3796. - Test OpenShift health check loader (rhcarvalho@gmail.com)
  3797. - Rename module_executor -> execute_module (rhcarvalho@gmail.com)
  3798. - Use oo_version_gte_3_6+ for future versions and treat 1.x origin as legacy.
  3799. Add tests. (abutcher@redhat.com)
  3800. - Added 3.5 -> 3.6 upgrade playbooks (skuznets@redhat.com)
  3801. - Add oo_version_gte_X_X_or_Y_Y version comparison filters.
  3802. (abutcher@redhat.com)
  3803. * Tue Mar 28 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.10-1
  3804. - Use meta/main.yml for role dependencies (rteague@redhat.com)
  3805. - Upgrade specific rpms instead of just master/node. (dgoodwin@redhat.com)
  3806. - Adding namespace to doc. (kwoodson@redhat.com)
  3807. - Add calico. (djosborne10@gmail.com)
  3808. - Fixing up test cases, linting, and added a return. (kwoodson@redhat.com)
  3809. - first step in ocimage (ihorvath@redhat.com)
  3810. - ocimage (ihorvath@redhat.com)
  3811. - Setting defaults on openshift_hosted. (kwoodson@redhat.com)
  3812. - rebase and regenerate (jdiaz@redhat.com)
  3813. - fix up things flagged by flake8 (jdiaz@redhat.com)
  3814. - clean up and clarify docs/comments (jdiaz@redhat.com)
  3815. - add oc_user ansible module (jdiaz@redhat.com)
  3816. - Fix etcd cert generation (djosborne10@gmail.com)
  3817. * Sat Mar 25 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.9-1
  3818. - Found this while searching the metrics role for logging, is this wrong?
  3819. (sdodson@redhat.com)
  3820. - Fix overriding openshift_{logging,metrics}_image_prefix (sdodson@redhat.com)
  3821. - Make linter happy (sdodson@redhat.com)
  3822. - Specify enterprise defaults for logging and metrics images
  3823. (sdodson@redhat.com)
  3824. - Update s2i-dotnetcore content (sdodson@redhat.com)
  3825. - Stop all services before upgrading openvswitch (sdodson@redhat.com)
  3826. - Bug 1434300 - Log entries are generated in ES after deployed logging stacks
  3827. via ansible, but can not be found in kibana. (rmeggins@redhat.com)
  3828. - Adding error checking to the delete. (kwoodson@redhat.com)
  3829. - Updated comment. (kwoodson@redhat.com)
  3830. - Fixed doc. Updated test to change existing key. Updated module spec for
  3831. required name param. (kwoodson@redhat.com)
  3832. - Adding oc_configmap to lib_openshift. (kwoodson@redhat.com)
  3833. * Fri Mar 24 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.8-1
  3834. - vendor patched upstream docker_container module. (jvallejo@redhat.com)
  3835. - add docker_image_availability check (jvallejo@redhat.com)
  3836. - Do not use auto_expand_replicas (lukas.vlcek@gmail.com)
  3837. - Adding tests to increase TC. (kwoodson@redhat.com)
  3838. - Adding a pvc create test case. (kwoodson@redhat.com)
  3839. - Cherry picking from #3711 (ewolinet@redhat.com)
  3840. * Thu Mar 23 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.7-1
  3841. - openshift_logging calculate min_masters to fail early on split brain
  3842. (jcantril@redhat.com)
  3843. - Fixed linting and configmap_name param (kwoodson@redhat.com)
  3844. - Adding configmap support. (kwoodson@redhat.com)
  3845. - Make /rootfs mount rslave (sdodson@redhat.com)
  3846. - Update imageConfig.format on upgrades to match oreg_url (sdodson@redhat.com)
  3847. - Adding configmap support and adding tests. (kwoodson@redhat.com)
  3848. - Adding oc_volume to lib_openshift. (kwoodson@redhat.com)
  3849. - upgrade: restart ovs-vswitchd and ovsdb-server (gscrivan@redhat.com)
  3850. - Make atomic-openshift-utils require playbooks of the same version
  3851. (sdodson@redhat.com)
  3852. * Wed Mar 22 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.6-1
  3853. - Fix copy-pasta docstrings (rhcarvalho@gmail.com)
  3854. - Rename _ns -> node_selector (rhcarvalho@gmail.com)
  3855. - Reindent code (rhcarvalho@gmail.com)
  3856. - Update the failure methods and add required variables/functions
  3857. (tbielawa@redhat.com)
  3858. - Import the default ansible output callback on_failed methods
  3859. (tbielawa@redhat.com)
  3860. - Switched Cassandra to use certificates generated by OpenShift
  3861. (juraci@kroehling.de)
  3862. - Allow user to specify additions to ES config (jcantril@redhat.com)
  3863. * Tue Mar 21 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.5-1
  3864. - Attempt to match version of excluders to target version (sdodson@redhat.com)
  3865. - Get rid of adjust.yml (sdodson@redhat.com)
  3866. - Protect against missing commands (sdodson@redhat.com)
  3867. - Simplify excluder enablement logic a bit more (sdodson@redhat.com)
  3868. - Add tito releaser for 3.6 (smunilla@redhat.com)
  3869. - Adding oc_group to lib_openshift (kwoodson@redhat.com)
  3870. - preflight checks: improve user output from checks (lmeyer@redhat.com)
  3871. - preflight checks: bypass RPM excludes (lmeyer@redhat.com)
  3872. - acceptschema2 default: true (aweiteka@redhat.com)
  3873. - Do not require python-six via openshift_facts (rhcarvalho@gmail.com)
  3874. * Sat Mar 18 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.4-1
  3875. - Cherry picking from #3689 (ewolinet@redhat.com)
  3876. - Moving projects task within openshift_hosted (rteague@redhat.com)
  3877. - Refactor openshift_projects role (rteague@redhat.com)
  3878. - Add unit tests for existing health checks (rhcarvalho@gmail.com)
  3879. - Do not update when properties when not passed. (kwoodson@redhat.com)
  3880. - change shell to bash in generate_jks.sh (l@lmello.eu.org)
  3881. * Fri Mar 17 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.3-1
  3882. - enable docker excluder since the time it is installed (jchaloup@redhat.com)
  3883. * Thu Mar 16 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.2-1
  3884. - enable excluders during node/master scaling up (jchaloup@redhat.com)
  3885. - Fixing variable naming for 35 scoping. (kwoodson@redhat.com)
  3886. - Fix get_router_replicas infrastructure node count. (abutcher@redhat.com)
  3887. - Fix containerized openvswitch race (sdodson@redhat.com)
  3888. * Thu Mar 16 2017 Jenkins CD Merge Bot <tdawson@redhat.com> 3.6.1-1
  3889. - Bump version to 3.6.0 (smunilla@redhat.com)
  3890. - Improve CONTRIBUTING guide with testing tricks (rhcarvalho@gmail.com)
  3891. - Update versions in example inventories (sdodson@redhat.com)
  3892. - Only call excluder playbooks on masters and nodes (sdodson@redhat.com)
  3893. - Since we've decided that we're no longer paying attention to current status
  3894. remove this as it was toggling things (sdodson@redhat.com)
  3895. - Remove travis notifications (jdetiber@redhat.com)
  3896. - Removing dependency on master facts for master_public_url default
  3897. (ewolinet@redhat.com)
  3898. - don't assume openshift_upgrade_target is in a form d.d (jchaloup@redhat.com)
  3899. - Cherry picked from #3657 (ewolinet@redhat.com)
  3900. - Revert "Enable docker during installation and upgrade by default"
  3901. (skuznets@redhat.com)
  3902. - Nuage service account handling by single master
  3903. (vishal.patil@nuagenetworks.net)
  3904. - Add router svcacct cluster-reader role (rteague@redhat.com)
  3905. - Cherry picking from #3644 (ewolinet@redhat.com)
  3906. - Revert module_utils six for openshift_health_checker (jdetiber@redhat.com)
  3907. - Refactor and remove openshift_serviceaccount (rteague@redhat.com)
  3908. - Fix typo (sdodson@redhat.com)
  3909. - Force to use TLSv1.2 (related to https://github.com/openshift/openshift-
  3910. ansible/pull/2707) (olivier@openkumo.fr)
  3911. - Raise on dry-run failures. (kwoodson@redhat.com)
  3912. - validate excluders on non-atomic hosts only (jchaloup@redhat.com)
  3913. - enable docker excluder since the time it is installed (jchaloup@redhat.com)
  3914. - cherry picking from #3621 #3614 #3627 (ewolinet@redhat.com)
  3915. - Renaming oadm_manage_node to oc_adm_manage_node (rteague@redhat.com)
  3916. - add 'hawkular/metrics' when updating config (jcantril@redhat.com)
  3917. - update all the masters (jcantril@redhat.com)
  3918. - bug 1430661. Update masterConfig metricsPublicURL on install
  3919. (jcantril@redhat.com)
  3920. - nuage: Move role back to config (smilner@redhat.com)
  3921. - Fix incorrect comparison when detecting petsets (tbielawa@redhat.com)
  3922. - Removed unused, unwanted, incorrectly committed code. (kwoodson@redhat.com)
  3923. - Minor updates to README_CONTAINER_IMAGE.md (pep@redhat.com)
  3924. - Fix references to openshift_set_node_ip in inventory examples
  3925. (gskgoskk@gmail.com)
  3926. - Bug 1428711 - [IntService_public_324] ES pod is unable to read
  3927. searchguard.truststore after upgarde logging from 3.3.1 to 3.5.0
  3928. (rmeggins@redhat.com)
  3929. - bug 1428249. Use ES hostmount storage if it exists (jcantril@redhat.com)
  3930. - Use ansible.compat.six where possible (jdetiber@redhat.com)
  3931. - Remove debug task (tbielawa@redhat.com)
  3932. - Use six from ansible.module_utils for remote hosts (jdetiber@redhat.com)
  3933. - re-enable excluders if they are enabled after openshift version detection
  3934. (jchaloup@redhat.com)
  3935. - Allow overriding minTLSVersion and cipherSuites (meggen@redhat.com)
  3936. - extend the excluders to containerized deployment (jchaloup@redhat.com)
  3937. - Fixing the way policies are found. The old method was unreliable. This
  3938. method searches all and matches on properties. (kwoodson@redhat.com)
  3939. - openshift_excluders depends on openshift_repos (sdodson@redhat.com)
  3940. - add ability to specify an etcd version (mmckinst@umich.edu)
  3941. - Lowering test coverage percentage. (kwoodson@redhat.com)
  3942. - Removing ordereddict. Replaced with sorted keys. (kwoodson@redhat.com)
  3943. - New role (tbielawa@redhat.com)
  3944. - Fixed for linting. (kwoodson@redhat.com)
  3945. - enable excluders by default (jchaloup@redhat.com)
  3946. - ignore the docker excluder status if it is not enabled by a user
  3947. (jchaloup@redhat.com)
  3948. - Fix pylint/pyflakes errors on master (sdodson@redhat.com)
  3949. - Identify PetSets in 3.4 clusters and fail if any are detected
  3950. (tbielawa@redhat.com)
  3951. - More logging fixes (ewolinet@redhat.com)
  3952. - Fix for issue 3541 (srampal@cisco.com)
  3953. - Fix to OpenshiftCLIConfig to support an ordereddict. This was breaking test
  3954. cases. (kwoodson@redhat.com)
  3955. - - update excluders to latest, in non-upgrade scenarios do not update - check
  3956. both available excluder versions are at most of upgrade target version - get
  3957. excluder status through status command - make excluders enablement
  3958. configurable (jchaloup@redhat.com)
  3959. - Adding scripts for building and pushing images (bleanhar@redhat.com)
  3960. - Adding test_oc_adm_router. (kwoodson@redhat.com)
  3961. - Loosely couple docker to iptables service (rteague@redhat.com)
  3962. - Generic message directing people to contact support (sdodson@redhat.com)
  3963. - Fixing plugin, nodeselectors, and secret pull check (ewolinet@redhat.com)
  3964. - Adding into the origin inventory doc. (kwoodson@redhat.com)
  3965. - Add oc_objectvalidator to upgrade check (sdodson@redhat.com)
  3966. - Augmenting documentation for router sharding. (kwoodson@redhat.com)
  3967. - Adding router test. (kwoodson@redhat.com)
  3968. - openshift_facts: ensure system containers deps are installed
  3969. (gscrivan@redhat.com)
  3970. - Preserve order of Docker registries (eric.mountain@amadeus.com)
  3971. - Updating metrics defaults (ewolinet@redhat.com)
  3972. - Enable coveralls.io (jdetiber@redhat.com)
  3973. - Fix indentation of run_once (sdodson@redhat.com)
  3974. - Update docs for test consolidation and remove the Makefile
  3975. (jdetiber@redhat.com)
  3976. - Consolidate root/utils tests (jdetiber@redhat.com)
  3977. - Remove dummy setup/teardown methods (rhcarvalho@gmail.com)
  3978. - Clean up test files (rhcarvalho@gmail.com)
  3979. - Remove commented-out test code (rhcarvalho@gmail.com)
  3980. - Make generic OCObjectValidator from OCSDNValidator (mkhan@redhat.com)
  3981. - logging needs openshift_master_facts before openshift_facts
  3982. (rmeggins@redhat.com)
  3983. - separate out test tool configs from setup.cfg (jdetiber@redhat.com)
  3984. - Dockerfile and docs to run containerized playbooks (pep@redhat.com)
  3985. - Lower test coverage percentage. (kwoodson@redhat.com)
  3986. - Mock runs differntly on travis. Fix the mock test params to be ANY.
  3987. (kwoodson@redhat.com)
  3988. - Fixed the none namespace. Fixed tests with latest loc_oc_binary call.
  3989. (kwoodson@redhat.com)
  3990. - Updating the namespace param to None. (kwoodson@redhat.com)
  3991. - Regenerated code with latest yedit changes. (kwoodson@redhat.com)
  3992. - Fixed tests to align with new naming. (kwoodson@redhat.com)
  3993. - Fixed docs. Added check for delete failures. Updated namespace to None.
  3994. (kwoodson@redhat.com)
  3995. - Fixing linters (kwoodson@redhat.com)
  3996. - Adding integration test. Fixed issue with node_selector.
  3997. (kwoodson@redhat.com)
  3998. - Adding oc_project to lib_openshift. (kwoodson@redhat.com)
  3999. - Remove old commented-out tests (rhcarvalho@gmail.com)
  4000. - Remove redundant assertion (rhcarvalho@gmail.com)
  4001. - Fix test (rhcarvalho@gmail.com)
  4002. - Lint utils/test (rhcarvalho@gmail.com)
  4003. - Rewrap long lines (rhcarvalho@gmail.com)
  4004. - Remove unused argument (rhcarvalho@gmail.com)
  4005. - Remove unused Makefile variables (rhcarvalho@gmail.com)
  4006. - Adding some more logging defaults (ewolinet@redhat.com)
  4007. - node/sdn: make /var/lib/cni persistent to ensure IPAM allocations stick
  4008. around across node restart (dcbw@redhat.com)
  4009. - BZ1422348 - Don't install python-ruamel-yaml (sdodson@redhat.com)
  4010. - Re-generate modules (sdodson@redhat.com)
  4011. - Only set ownership to etcd for thirdparty datadir (sdodson@redhat.com)
  4012. - Added ports. (kwoodson@redhat.com)
  4013. - Fixed router name to produce 2nd router. (kwoodson@redhat.com)
  4014. - Updated to work with an array of routers. (kwoodson@redhat.com)
  4015. - Adding support for router sharding. (kwoodson@redhat.com)
  4016. - Removing the openshift_master_facts dependency (ewolinet@redhat.com)
  4017. - bug 1420256. Initialize openshift_logging pvc_facts to empty
  4018. (jcantril@redhat.com)
  4019. - Add oc_adm_policy_user task cluster-role policy (rteague@redhat.com)
  4020. - Correct config for hosted registry (rteague@redhat.com)
  4021. - Fixing checkout for bindings with -binding suffix (jupierce@redhat.com)
  4022. - Leave an empty contiv role directory (sdodson@redhat.com)
  4023. - Updating stdout check for changed_when (ewolinet@redhat.com)
  4024. - test fixes for openshift_certificates_expiry (jdetiber@redhat.com)
  4025. - oadm_policy_group/adm_policy_user module (jupierce@redhat.com)
  4026. - Fail on Atomic if docker is too old (smilner@redhat.com)
  4027. - Remove contiv role and playbook from rpm packages (sdodson@redhat.com)
  4028. - Resolving yammlint errors (ewolinet@redhat.com)
  4029. - Fixed error handling when oc adm ca create-server-cert fails. Fixed a logic
  4030. error in secure. (kwoodson@redhat.com)
  4031. - removing extra when condition (kwoodson@redhat.com)
  4032. - Removing run_once. (kwoodson@redhat.com)
  4033. - Adding the activeDeadlineSeconds. Removed debug. (kwoodson@redhat.com)
  4034. - Separating routes so logic is simpler. (kwoodson@redhat.com)
  4035. - Defaulting variables properly to avoid undefined route in dict error.
  4036. (kwoodson@redhat.com)
  4037. - Add v1.3 FIS templates (sdodson@redhat.com)
  4038. - v1.4 Add FIS templates (sdodson@redhat.com)
  4039. - Add FIS templates (sdodson@redhat.com)
  4040. - Removed duplicate host param. (kwoodson@redhat.com)
  4041. - Fixed failures on create when objects exist. (kwoodson@redhat.com)
  4042. - Add ca-bundle.crt to list of certs to synchronize. (abutcher@redhat.com)
  4043. - Do not force custom ca cert deployment. (abutcher@redhat.com)
  4044. - regenerate lib_openshift with yedit exception changes (jdiaz@redhat.com)
  4045. - Adding changed_whens for role, rolebinding, and scc reconciliation based on
  4046. output from oadm policy command (ewolinet@redhat.com)
  4047. - raise exceptions when walking through object path (jdiaz@redhat.com)
  4048. - logging fluentd filter was renamed to viaq (rmeggins@redhat.com)
  4049. - Add 'persistentVolumeClaim' to volume_info type (rteague@redhat.com)
  4050. - Updating delete/recreate with replace --force. (kwoodson@redhat.com)
  4051. - Fixed logic error. Ensure both svc and dc exist. (kwoodson@redhat.com)
  4052. - Modified base debug statements. Fixed oc_secret debug/verbose flag. Added
  4053. reencrypt for route. (kwoodson@redhat.com)
  4054. - Adding support for a route with certs and reencrypt. (kwoodson@redhat.com)
  4055. - node: use the new oc_atomic_container module (gscrivan@redhat.com)
  4056. - master: use the new oc_atomic_container module (gscrivan@redhat.com)
  4057. - etcd: use the new oc_atomic_container module (gscrivan@redhat.com)
  4058. - lib_openshift: new module atomic_container (gscrivan@redhat.com)
  4059. - Combined (squashed) commit for all changes related to adding Contiv support
  4060. into Openshift Ansible. This is the first (beta) release of Contiv with
  4061. Openshift and is only supported for Openshift Origin + Bare metal deployments
  4062. at the time of this commit. Please refer to the Openshift and Contiv official
  4063. documentation for details of the level of support for different features and
  4064. modes of operation. (srampal@cisco.com)
  4065. - Re-generate lib_openshift (sdodson@redhat.com)
  4066. - Make s3_volume_mount available to set_fact call (smilner@redhat.com)
  4067. - Correct fact creation for pvc (rteague@redhat.com)
  4068. - [oc_obj] Move namespace argument to end of command. (abutcher@redhat.com)
  4069. - Create hosted registry service (rteague@redhat.com)
  4070. - Correct typo in haproxy router collection. (abutcher@redhat.com)
  4071. - Fix issue #3505, add notes about origin upgrade versions support in BYO
  4072. upgrade README file (contact@stephane-klein.info)
  4073. - Moving replica logic to filter_plugin to fix skipped task variable behavior.
  4074. (kwoodson@redhat.com)
  4075. - install the latest excluders (jchaloup@redhat.com)
  4076. - openshift_hosted: Update tasks to use oc_ modules (rteague@redhat.com)
  4077. - Rebased. (kwoodson@redhat.com)
  4078. - Fixed indentation (kwoodson@redhat.com)
  4079. - Adding get_env_var to deploymentconfig. (kwoodson@redhat.com)
  4080. - Fixed default variables. Added a fix to generated secret in env var.
  4081. (kwoodson@redhat.com)
  4082. - Revert "Add centos paas sig common" (sdodson@redhat.com)
  4083. - Fix Quick Installer failed due to a Python method failure
  4084. (tbielawa@redhat.com)
  4085. - Removed JGroups cert and password generation. (juraci@kroehling.de)
  4086. - Fix symlink to lookup_plugins/oo_option.py (jchaloup@redhat.com)
  4087. - Use 2 and 3 friendly urlparse in oo_filters (smilner@redhat.com)
  4088. - Update v1.5 content (sdodson@redhat.com)
  4089. - Update v1.4 content (sdodson@redhat.com)
  4090. - xPaaS ose-v1.3.6 (sdodson@redhat.com)
  4091. - Prepare for origin moving to OCP version scheme (ccoleman@redhat.com)
  4092. - initialize_openshift_version: handle excluder packages (gscrivan@redhat.com)
  4093. - Add insecure edge termination policy for kibana. (whearn@redhat.com)
  4094. - openshift_logging default to 2 replicas of primary shards
  4095. (jcantril@redhat.com)
  4096. - Fixing doc for oc_adm_ca_server_cert. (kwoodson@redhat.com)
  4097. - Convert selectattr tests to use 'match' (rteague@redhat.com)
  4098. - Re-generate lib_openshift and lib_utils libraries (sdodson@redhat.com)
  4099. - curator config must be in /etc/curator not /usr/curator (rmeggins@redhat.com)
  4100. - Updated for pylint. Fixed create doc. (kwoodson@redhat.com)
  4101. - Attempt to handle router preparation errors. (kwoodson@redhat.com)
  4102. - Fixing the generate tox tests. (kwoodson@redhat.com)
  4103. - BZ1414276 - Quote ansible_ssh_user when determining group id
  4104. (sdodson@redhat.com)
  4105. - Moving import to local class. (kwoodson@redhat.com)
  4106. - Added required_together. Added two minor bug fixes for when data is not
  4107. passed. (kwoodson@redhat.com)
  4108. - fix up ruamel.yaml/pyyaml no-member lint errors (jdetiber@redhat.com)
  4109. - Renamed NotContainerized to NotContainerizedMixin and dropped no-member
  4110. (smilner@redhat.com)
  4111. - Removed unrequired no-members from yedit and generated code
  4112. (smilner@redhat.com)
  4113. - Removing reference to oadm. Moved parameter under general params.
  4114. (kwoodson@redhat.com)
  4115. - adding tag to update_master_config (ewolinet@redhat.com)
  4116. - CloudFront oc_secret contents should be a list (smilner@redhat.com)
  4117. - lib_openshift oc file lookup improvements (jdetiber@redhat.com)
  4118. - roles/lib_openshift: Handle /usr/local/bin/oc with sudo (walters@verbum.org)
  4119. - if no key, cert, cacert, or default_cert is passed then do not pass to oc
  4120. (kwoodson@redhat.com)
  4121. - Added backup feature. Fixed a bug with reading the certificate and verifying
  4122. names. Added force option. (kwoodson@redhat.com)
  4123. - Add SDNValidator Module (mkhan@redhat.com)
  4124. - bug 1425321. Default the master api port based on the facts
  4125. (jcantril@redhat.com)
  4126. - Bug 1420219 - No log entry can be found in Kibana UI after deploying logging
  4127. stacks with ansible (rmeggins@redhat.com)
  4128. - Address cert expiry parsing review comments (tbielawa@redhat.com)
  4129. - Fix typo (rhcarvalho@gmail.com)
  4130. - Update link to project homepage (rhcarvalho@gmail.com)
  4131. - Implement fake openssl cert classes (tbielawa@redhat.com)
  4132. - Removed oadm_ references in doc. (kwoodson@redhat.com)
  4133. - Remove unused plays (jhadvig@redhat.com)
  4134. - Remove pytest-related dependencies from setup.py (rhcarvalho@gmail.com)
  4135. - Added copy support when modifying cert and key on existence
  4136. (kwoodson@redhat.com)
  4137. - Small spacing fix. (kwoodson@redhat.com)
  4138. - Updated doc and defined defaults for signer_* (kwoodson@redhat.com)
  4139. - Removed unused code. Made tests executable. (kwoodson@redhat.com)
  4140. - Removing cmd, fixed docs and comments. (kwoodson@redhat.com)
  4141. - Rename of oadm_ca to oc_adm_ca. Decided to whittle down to the direct call,
  4142. server_cert. (kwoodson@redhat.com)
  4143. - Fixing doc. (kwoodson@redhat.com)
  4144. - Adding oadm_ca to lib_openshift. (kwoodson@redhat.com)
  4145. - Fixing docs. Fixed default_cert suggestion. (kwoodson@redhat.com)
  4146. - Renamed modules, fixed docs, renamed variables, and cleaned up logic.
  4147. (kwoodson@redhat.com)
  4148. - Renaming registry and router roles to oc_adm_ (kwoodson@redhat.com)
  4149. - Fixing registry doc and suggestions. (kwoodson@redhat.com)
  4150. - Adding router and registry to lib_openshift. (kwoodson@redhat.com)
  4151. - bug 142026. Ensure Ops PVC prefix are initialized to empty when ops e…
  4152. nabled (jcantril@redhat.com)
  4153. - Reverting logic for verify api handler to be uniform with other ways we
  4154. verify, will be uniformly updated in future (ewolinet@redhat.com)
  4155. - bug 1417261. Quote name and secrets in logging templates
  4156. (jcantril@redhat.com)
  4157. - openshift_facts: handle 'latest' version (gscrivan@redhat.com)
  4158. - Surrounding node selector values with quotes (ewolinet@redhat.com)
  4159. - Raise the bar on coverage requirements (rhcarvalho@gmail.com)
  4160. - Accept extra positional arguments in tox (rhcarvalho@gmail.com)
  4161. - Replace nose with pytest (utils) (rhcarvalho@gmail.com)
  4162. - Clean up utils/README.md (rhcarvalho@gmail.com)
  4163. - Replace nose with pytest (rhcarvalho@gmail.com)
  4164. - Extract assertion common to all tests as function (rhcarvalho@gmail.com)
  4165. - Replace nose yield-style tests w/ pytest fixtures (rhcarvalho@gmail.com)
  4166. - Configure pytest to run tests and coverage (rhcarvalho@gmail.com)
  4167. - Fix validation of generated code (rhcarvalho@gmail.com)
  4168. - Make tests run with either nosetests or pytest (rhcarvalho@gmail.com)
  4169. - Replace assert_equal with plain assert (rhcarvalho@gmail.com)
  4170. - Make usage of short_version/release consistent (rhcarvalho@gmail.com)
  4171. - Reorganize tests and helper functions logically (rhcarvalho@gmail.com)
  4172. - Remove test duplication (rhcarvalho@gmail.com)
  4173. - Move similar test cases together (rhcarvalho@gmail.com)
  4174. - Insert paths in the second position of sys.path (rhcarvalho@gmail.com)
  4175. - Rename test for consistency (rhcarvalho@gmail.com)
  4176. - Replace has_key in new modules (smilner@redhat.com)
  4177. - Fix symlink to filter_plugins/oo_filters.py (jchaloup@redhat.com)
  4178. - Correct logic test for running pods (rteague@redhat.com)
  4179. - Temporarily lower the bar for minimum coverage (rhcarvalho@gmail.com)
  4180. - Unset exec bit in tests, add missing requirements (jdetiber@redhat.com)
  4181. - Include missing unit tests to test runner config (rhcarvalho@gmail.com)
  4182. - Fix tests on Python 3 (rhcarvalho@gmail.com)
  4183. - Remove dead code in installer (rhcarvalho@gmail.com)
  4184. - Remove dead code (rhcarvalho@gmail.com)
  4185. - Document how to find dead Python code (rhcarvalho@gmail.com)
  4186. - updating until statments on uri module for api verification
  4187. (ewolinet@redhat.com)
  4188. - add dependency on openshift_repos (sdodson@redhat.com)
  4189. - Fixing a bug by removing default debug (kwoodson@redhat.com)
  4190. - Updating to use uri module instead (ewolinet@redhat.com)
  4191. - Updating node playbooks to use oc_obj (rteague@redhat.com)
  4192. - Add centos paas sig common (sdodson@redhat.com)
  4193. - Disentangle openshift_repos from openshift_facts (sdodson@redhat.com)
  4194. - Adding missing handler to resolve error that it was not found
  4195. (ewolinet@redhat.com)
  4196. - String compatibility for python2,3 (kwoodson@redhat.com)
  4197. - Fix indenting/ordering in router cert redeploy (sdodson@redhat.com)
  4198. - post_control_plane.yml: don't fail on grep (gscrivan@redhat.com)
  4199. - facts/main: Require Python 3 for Fedora, Python 2 everywhere else
  4200. (walters@verbum.org)
  4201. - Fix typo, add symlinks for roles (sdodson@redhat.com)
  4202. - Resolve deprecation warning (rteague@redhat.com)
  4203. - Revert temporary hack to skip router/registry upgrade. (dgoodwin@redhat.com)
  4204. - Don't attempt to install python-ruamel-yaml on atomic (sdodson@redhat.com)
  4205. - Pleasing the linting gods. (kwoodson@redhat.com)
  4206. - Fixed tests for pyyaml vs ruamel. Added import logic. Fixed safe load.
  4207. (kwoodson@redhat.com)
  4208. - update example templates+imagestreams (bparees@redhat.com)
  4209. - Adding fallback support for pyyaml. (kwoodson@redhat.com)
  4210. - bug 1420217. Default ES memory to be compariable to 3.4 deployer
  4211. (jcantril@redhat.com)
  4212. - Register cloudfront privkey when required (smilner@redhat.com)
  4213. - initialize oo_nodes_to_upgrade group when running control plane upgrade only
  4214. (jchaloup@redhat.com)
  4215. - adding some quotes for safety (ewolinet@redhat.com)
  4216. - Revert "Add block+when skip to `openshift_facts` tasks" (abutcher@redhat.com)
  4217. - Add missing full hostname for the Hawkular Metrics certificate (BZ1421060)
  4218. Fix issue where the signer certificate's name is static, preventing
  4219. redeployments from being acceptable. (mwringe@redhat.com)
  4220. - fixing use of oc_scale module (ewolinet@redhat.com)
  4221. - fixing default for logging (ewolinet@redhat.com)
  4222. - Fix some lint (jdetiber@redhat.com)
  4223. - Fixed issue where upgrade fails when using daemon sets (e.g. aggregated
  4224. logging) (adbaldi+ghub@gmail.com)
  4225. - upgrades: fix path to disable_excluder.yml (jchaloup@redhat.com)
  4226. - Add upgrade job step after the entire upgrade performs (maszulik@redhat.com)
  4227. - Ansible Lint cleanup and making filter/lookup plugins used by
  4228. openshift_master_facts available within the role (jdetiber@redhat.com)
  4229. - Update variant_version (smilner@redhat.com)
  4230. - Add block+when skip to `openshift_facts` tasks (tbielawa@redhat.com)
  4231. - Trying to fix up/audit note some changes (tbielawa@redhat.com)
  4232. - updating defaults for logging and metrics roles (ewolinet@redhat.com)
  4233. - Fix logic for checking docker-registry (rteague@redhat.com)
  4234. - node, vars/main.yml: define l_is_ha and l_is_same_version
  4235. (gscrivan@redhat.com)
  4236. - Modify playbooks to use oc_obj module (rteague@redhat.com)
  4237. - master, vars/main.yml: define l_is_ha and l_is_same_version
  4238. (gscrivan@redhat.com)
  4239. - oc route commands now using the oc_route module (smilner@redhat.com)
  4240. - Modify playbooks to use oc_label module (rteague@redhat.com)
  4241. - Fix cases where child classes override OpenShiftCLI values
  4242. (jdetiber@redhat.com)
  4243. - BZ1421860: increase Heapster's metric resolution to 30s (mwringe@redhat.com)
  4244. - BZ1421834: increase the Heapster metric resolution to 30s
  4245. (mwringe@redhat.com)
  4246. - Fix Bug 1419654 Remove legacy config_base fallback to /etc/openshift
  4247. (sdodson@redhat.com)
  4248. - Modify playbooks to use oadm_manage_node module (rteague@redhat.com)
  4249. - Removing trailing spaces (esauer@redhat.com)
  4250. - Removed adhoc s3_registry (smilner@redhat.com)
  4251. - replace 'oc service' command with its lib_openshift equivalent
  4252. (jchaloup@redhat.com)
  4253. - Making router pods scale with infra nodes (esauer@redhat.com)
  4254. - Provisioning of nfs share and PV for logging ops (efreiber@redhat.com)
  4255. - Add libselinux-python dependency for localhost (sdodson@redhat.com)
  4256. - oc secrets now done via oc_secret module (smilner@redhat.com)
  4257. - More fixes for reboot/wait for hosts. (dgoodwin@redhat.com)
  4258. - fix openshift_logging where defaults filter needs quoting
  4259. (jcantril@redhat.com)
  4260. - Do not hard code package names (rhcarvalho@gmail.com)
  4261. - Refactor code to access values from task_vars (rhcarvalho@gmail.com)
  4262. - oc serviceaccount now done via oc_serviceaccount module (smilner@redhat.com)
  4263. - bug 1420229. Bounce metrics components to recognize changes on updates or
  4264. upgrades (jcantril@redhat.com)
  4265. - node: simplify when conditionals (gscrivan@redhat.com)
  4266. - openvswitch: simplify when conditionals (gscrivan@redhat.com)
  4267. - uninstall: delete master-api and master-controllers (gscrivan@redhat.com)
  4268. - master: support HA deployments with system containers (gscrivan@redhat.com)
  4269. - Ensure etcd client certs are regenerated with embedded etcd.
  4270. (abutcher@redhat.com)
  4271. - bug 1420425. Allow setting of public facing certs for kibana in
  4272. openshift_logging role (jcantril@redhat.com)
  4273. - bug 1399523. Ops pvc should have different prefix from non-ops for
  4274. openshift_logging (jcantril@redhat.com)
  4275. - Include rpm/git paths in expiry README. (tbielawa@redhat.com)
  4276. - Fixing docs, linting, and comments. (kwoodson@redhat.com)
  4277. - fix bug 1420204. Default openshift_logging_use_journal to empty so fluentd
  4278. detects and is consistent with deployer (jcantril@redhat.com)
  4279. - Let pylint use as many CPUs as available (rhcarvalho@gmail.com)
  4280. - Add note about extraneous virtualenvs (rhcarvalho@gmail.com)
  4281. - Document how to create new checks (rhcarvalho@gmail.com)
  4282. - Introduce tag notation for checks (rhcarvalho@gmail.com)
  4283. - Replace multi-role checks with action plugin (rhcarvalho@gmail.com)
  4284. - Removing the /usr/bin/ansible-playbook dependency in in the spec file
  4285. (mwoodson@redhat.com)
  4286. - use the correct name for the ruamel-yaml python module (jchaloup@redhat.com)
  4287. - Reword module documentation (rhcarvalho@gmail.com)
  4288. - Separate import groups with a blank line (rhcarvalho@gmail.com)
  4289. - Remove commented-out debugging code (rhcarvalho@gmail.com)
  4290. - Replace service account secrets handling with oc_serviceaccount_secret module
  4291. (jchaloup@redhat.com)
  4292. - node: refactor Docker container tasks in a block (gscrivan@redhat.com)
  4293. - etcd: use as system container (gscrivan@redhat.com)
  4294. - Implement uninstall for system containers (gscrivan@redhat.com)
  4295. - system-containers: implement idempotent update (gscrivan@redhat.com)
  4296. - atomic-openshift: install as a system container (gscrivan@redhat.com)
  4297. - make sure cluster_size is an int for arith. ops (rmeggins@redhat.com)
  4298. - Bug 1420234 - illegal_argument_exception in Kibana UI. (rmeggins@redhat.com)
  4299. - bug 1420538. Allow users to set supplementalGroup for Cassandra
  4300. (jcantril@redhat.com)
  4301. - Document openshift_cockpit_deployer_prefix and add
  4302. openshift_cockpit_deployer_version (sdodson@redhat.com)
  4303. - Make the cert expiry playbooks runnable (tbielawa@redhat.com)
  4304. - Ensure embedded etcd config uses CA bundle. (abutcher@redhat.com)
  4305. - bug 1420684. On logging upgrade use the correct value for namespace
  4306. (jcantril@redhat.com)
  4307. - Fixing docs. (kwoodson@redhat.com)
  4308. - bug 1419962. fix openshift_metrics pwd issue after reinstall where cassandra
  4309. has incorrect pwd exception (jcantril@redhat.com)
  4310. - Fixing for linters. (kwoodson@redhat.com)
  4311. - Adding test cases. (kwoodson@redhat.com)
  4312. - Fixing docs. (kwoodson@redhat.com)
  4313. - oc process (ihorvath@redhat.com)
  4314. - node: ensure conntrack-tools is installed (gscrivan@redhat.com)
  4315. - Updating defaults to pull from previously defined variable names used in
  4316. playbooks (ewolinet@redhat.com)
  4317. - Pleasing the linting bot. (kwoodson@redhat.com)
  4318. - fixup! master: latest use same predicates as last version
  4319. (gscrivan@redhat.com)
  4320. - fixup! master: latest use same priorities as last version
  4321. (gscrivan@redhat.com)
  4322. - Adding integration tests. (kwoodson@redhat.com)
  4323. - Set image change triggers to auto=true for OCP 3.4 - for v1.5
  4324. (simaishi@redhat.com)
  4325. - Reference class instead of self.__class__ within super constructor to avoid
  4326. calling self forever. (abutcher@redhat.com)
  4327. - Adding oc_env to lib_openshift. (kwoodson@redhat.com)
  4328. - Fixing for flake8 spacing. (kwoodson@redhat.com)
  4329. - Fixing tests for linters. (kwoodson@redhat.com)
  4330. - Adding port support for route. (kwoodson@redhat.com)
  4331. - use pvc_size instead of pv_size for openshift_metrics since the role creates
  4332. claims (jcantril@redhat.com)
  4333. - Added temporary kubeconfig file. Fixed tests to coincide with tmpfile.
  4334. (kwoodson@redhat.com)
  4335. - Set image change triggers to auto=true for OCP 3.4
  4336. (https://github.com/ManageIQ/manageiq-pods/pull/88) (simaishi@redhat.com)
  4337. - fixes 1419839. Install only heapster for openshift_metrics when heapster
  4338. standalone flag is set (jcantril@redhat.com)
  4339. - Adding code to copy kubeconfig before running oc commands.
  4340. (kwoodson@redhat.com)
  4341. - master: latest use same predicates as last version (gscrivan@redhat.com)
  4342. - master: latest use same priorities as last version (gscrivan@redhat.com)
  4343. - Changed lib_openshift to use real temporary files. (twiest@redhat.com)
  4344. - Fixed ansible module unit and integration tests and added runners.
  4345. (twiest@redhat.com)
  4346. - Moving to ansible variable. (kwoodson@redhat.com)
  4347. - Specifying port for wait_for call. (kwoodson@redhat.com)
  4348. - Reverting commit 3257 and renaming master_url to openshift_logging_master_url
  4349. (ewolinet@redhat.com)
  4350. - [openshift_ca] Reference client binary from openshift_ca_host.
  4351. (abutcher@redhat.com)
  4352. - Fix playbooks/byo/openshift_facts.yml include path (sdodson@redhat.com)
  4353. - Add missing symlink to roles (rhcarvalho@gmail.com)
  4354. - Bump registry-console to 3.5 (sdodson@redhat.com)
  4355. - Added oc_serviceaccount_secret to lib_openshift. (twiest@redhat.com)
  4356. - fix 1406057. Allow openshift_metrics nodeselectors for components
  4357. (jcantril@redhat.com)
  4358. - Use service annotations to redeploy router service serving cert signer cert.
  4359. (abutcher@redhat.com)
  4360. - Move excluder disablement into control plane and node upgrade playbooks
  4361. (sdodson@redhat.com)
  4362. - Add excluder management to upgrade and config playbooks (sdodson@redhat.com)
  4363. - Add openshift_excluder role (sdodson@redhat.com)
  4364. - Fix RHEL Subscribe std_include path (tbielawa@redhat.com)
  4365. - Copies CloudFront pem file to registry hosts (smilner@redhat.com)
  4366. - Remove legacy router/registry certs and client configs from synchronized
  4367. master certs. (abutcher@redhat.com)
  4368. - Bump registry to 3.4 (sdodson@redhat.com)
  4369. - Sync latest image stream content (sdodson@redhat.com)
  4370. - Support latest for containerized version (gscrivan@redhat.com)
  4371. - Ensure python2-ruamel-yaml is installed (sdodson@redhat.com)
  4372. - openshift_logging link pull secret to serviceaccounts fix unlabel when
  4373. undeploying (jcantril@redhat.com)
  4374. - fixes 1414625. Fix check of keytool in openshift_metrics role
  4375. (jcantril@redhat.com)
  4376. - Doc enhancements. (kwoodson@redhat.com)
  4377. - fixes 1417261. Points playbooks to the correct 3.5 roles for logging and
  4378. metrics (jcantril@redhat.com)
  4379. - Change default docker log driver from json-file to journald.
  4380. (abutcher@redhat.com)
  4381. - Add logic to verify patched version of Ansible (rteague@redhat.com)
  4382. - Restructure certificate redeploy playbooks (abutcher@redhat.com)
  4383. - Temporary hack to skip router/registry upgrade. (dgoodwin@redhat.com)
  4384. - Fixing linters. (kwoodson@redhat.com)
  4385. - run node upgrade if master is node as part of the control plan upgrade only
  4386. (jchaloup@redhat.com)
  4387. - Appease yamllint (sdodson@redhat.com)
  4388. - Adding import_role to block to resolve when eval (ewolinet@redhat.com)
  4389. - Updating oc_apply to use command instead of shell (ewolinet@redhat.com)
  4390. - Wrap openshift_hosted_logging import_role within a block.
  4391. (abutcher@redhat.com)
  4392. - Adding unit test. Fixed redudant calls to get. (kwoodson@redhat.com)
  4393. - Fixing doc and generating new label with updated base. (kwoodson@redhat.com)
  4394. - oc_label ansible module (jdiaz@redhat.com)
  4395. - Fixing copy pasta comments. Fixed required in docs. (kwoodson@redhat.com)
  4396. - Fix openshift_hosted_logging bool typo. (abutcher@redhat.com)
  4397. - Updating oc_apply changed_when conditions, fixing filter usage for
  4398. openshift_hosted_logging playbook (ewolinet@redhat.com)
  4399. - Add default ansible.cfg file (rteague@redhat.com)
  4400. - Move current node upgrade tasks under openshift_node_upgrade role
  4401. (jchaloup@redhat.com)
  4402. - Fix host when waiting for a master system restart. (dgoodwin@redhat.com)
  4403. - Adding bool filter to when openshift_logging_use_ops evals and updating
  4404. oc_apply to handle trying to update immutable fields (ewolinet@redhat.com)
  4405. - Fixing for tox tests. (flake8|pylint) (kwoodson@redhat.com)
  4406. - Adding unit test for oc_service. Added environment fix for non-standard oc
  4407. installs. (kwoodson@redhat.com)
  4408. - Adding integration tests. (kwoodson@redhat.com)
  4409. - Adding oc_service to lib_openshift. (kwoodson@redhat.com)
  4410. - Sync etcd ca certs from etcd_ca_host to other etcd hosts
  4411. (jawed.khelil@amadeus.com)
  4412. * Tue Jan 31 2017 Scott Dodson <sdodson@redhat.com> 3.5.3-1
  4413. - Adding bool filter to ensure that we correctly set ops host for fluentd
  4414. (ewolinet@redhat.com)
  4415. - Set default GCE hostname to shost instance name. (abutcher@redhat.com)
  4416. - Fail on Ansible version 2.2.1.0 (rteague@redhat.com)
  4417. - During node upgrade upgrade openvswitch rpms (sdodson@redhat.com)
  4418. - HTPASSWD_AUTH (tbielawa@redhat.com)
  4419. - Added repoquery to lib_utils. (twiest@redhat.com)
  4420. - Create v3_5 upgrade playbooks (rteague@redhat.com)
  4421. - GCE deployment fails due to invalid lookup (ccoleman@redhat.com)
  4422. - Resolving yamllint issues from logging playbooks (ewolinet@redhat.com)
  4423. - Updating openshift_hosted_logging to update master-configs with
  4424. publicLoggingURL (ewolinet@redhat.com)
  4425. - Added oc_serviceaccount to lib_openshift. (twiest@redhat.com)
  4426. - Breaking out master-config changing and updated playbook to apply change to
  4427. other masters (ewolinet@redhat.com)
  4428. - fix negative stride encountered from openshift_logging (jcantril@redhat.com)
  4429. - add persistent versions of quickstarts (bparees@redhat.com)
  4430. - Fixing docs. Added bugzilla to doc. (kwoodson@redhat.com)
  4431. - ensuring ruamel.yaml is on target for oc_scale (ewolinet@redhat.com)
  4432. - Updating to correctly pull handler for openshift_logging. Adding logic to
  4433. openshift_hosted_logging too (ewolinet@redhat.com)
  4434. - Adding names to plays and standardizing (rteague@redhat.com)
  4435. - Updating openshift_logging role to add kibana public url to loggingPublicURL
  4436. in master-config (ewolinet@redhat.com)
  4437. - Only manual scale down being allowed now (ewolinet@redhat.com)
  4438. - adopt oc_scale for openshift_metrics role (jcantril@redhat.com)
  4439. - fix 1414625. Additional fix to run password commands on control node
  4440. (jcantril@redhat.com)
  4441. - adopt oc_scale module for openshift_logging role (jcantril@redhat.com)
  4442. - Adding fix for when the resource does not exist. Added test cases.
  4443. (kwoodson@redhat.com)
  4444. - Updating to reuse previous ES DC names and always generate DCs
  4445. (ewolinet@redhat.com)
  4446. - Correct usage of draining nodes (rteague@redhat.com)
  4447. - Fixing fluentd node labelling (ewolinet@redhat.com)
  4448. - Fixing linters. (kwoodson@redhat.com)
  4449. - Fixing base.py for node and scale. Autogenerated code. (kwoodson@redhat.com)
  4450. - Added unit integration tests. Enhanced unit tests. Fixed an issue in
  4451. openshift_cmd for namespace. (kwoodson@redhat.com)
  4452. - Adding oadm_manage_node to lib_openshift. (kwoodson@redhat.com)
  4453. - Fixing namespace param in doc to reflect default value. (kwoodson@redhat.com)
  4454. - .gitignore cleanup (rteague@redhat.com)
  4455. - Standardize add_host: with name and changed_when (rteague@redhat.com)
  4456. - Adding banners. Small bug fix to namespace appending in base.
  4457. (kwoodson@redhat.com)
  4458. - Comma separate no_proxy host list in openshift_facts so that it appears as a
  4459. string everywhere it is used. (abutcher@redhat.com)
  4460. - Fixing tests and linting. (kwoodson@redhat.com)
  4461. - Adding unit test for oc_scale (kwoodson@redhat.com)
  4462. - Adding integration test for oc_scale. (kwoodson@redhat.com)
  4463. - Adding oc_scale to lib_openshift. (kwoodson@redhat.com)
  4464. - Add 10 second wait after disabling firewalld (sdodson@redhat.com)
  4465. - Added oc_secret to lib_openshift. (twiest@redhat.com)
  4466. - Remove master_count restriction. (abutcher@redhat.com)
  4467. - flake8 mccabe dependency fix (rteague@redhat.com)
  4468. - Generate the artifacts from fragments. (tbielawa@redhat.com)
  4469. - Update the generators to include fragment banners (tbielawa@redhat.com)
  4470. - Make use of AnsibleDumper in openshift_master filters s.t. we can represent
  4471. AnsibleUnsafeText when dumping yaml. (abutcher@redhat.com)
  4472. - Set metrics url even if metrics_deploy is false
  4473. (alberto.rodriguez.peon@cern.ch)
  4474. - Template update for Hawkular Metrics 0.23 (mwringe@redhat.com)
  4475. * Wed Jan 25 2017 Scott Dodson <sdodson@redhat.com> 3.5.2-1
  4476. - Sync latest image streams (sdodson@redhat.com)
  4477. - Fix containerized haproxy config (andrew@andrewklau.com)
  4478. - Allow RHEL subscription for OSE 3.4 (lhuard@amadeus.com)
  4479. - fixes BZ-1415447. Error when stopping heapster. Modify to be conditional
  4480. include (jcantril@redhat.com)
  4481. - override nodename for gce with cloudprovider (jdetiber@redhat.com)
  4482. - fixes jks generation, node labeling, and rerunning for oauth secrets
  4483. (ewolinet@redhat.com)
  4484. - allow openshift_logging role to specify nodeSelectors (jcantril@redhat.com)
  4485. - Remove is_containerized check for firewalld installs (rteague@redhat.com)
  4486. - Clean up pylint for delete_empty_keys. (abutcher@redhat.com)
  4487. - [os_firewall] Fix default iptables args. (abutcher@redhat.com)
  4488. - Add new option 'openshift_docker_selinux_enabled' (rteague@redhat.com)
  4489. - Temporary work-around for flake8 vs maccabe version conflict
  4490. (tbielawa@redhat.com)
  4491. - do not set empty proxy env variable defaults (bparees@redhat.com)
  4492. - fix BZ1414477. Use keytool on control node and require java
  4493. (jcantril@redhat.com)
  4494. - Remove unused temporary directory in master config playbook.
  4495. (abutcher@redhat.com)
  4496. - Added link to HOOKS in README (smilner@redhat.com)
  4497. - HOOKS.md added documenting new hooks (smilner@redhat.com)
  4498. - [os_firewall] Add -w flag to wait for iptables xtables lock.
  4499. (abutcher@redhat.com)
  4500. - fixes BZ-1414625. Check for httpd-tools and java before install
  4501. (jcantril@redhat.com)
  4502. - Add a mid upgrade hook, re-prefix variables. (dgoodwin@redhat.com)
  4503. - treat force_pull as a bool (bparees@redhat.com)
  4504. - Adding to ansible spec and changing logging jks generation to be a
  4505. local_action (ewolinet@redhat.com)
  4506. - Add containzerized haproxy option (andrew@andrewklau.com)
  4507. - Reorder node dnsmasq dependency s.t. networkmanager is restarted after
  4508. firewall changes have been applied. (abutcher@redhat.com)
  4509. - Removing docker run strategy and make java a requirement for control host
  4510. (ewolinet@redhat.com)
  4511. - Adding version to lib_openshift (kwoodson@redhat.com)
  4512. - Updating to use docker run instead of scheduling jks gen pod
  4513. (ewolinet@redhat.com)
  4514. - jenkins v1.3 templates should not enable oauth (gmontero@redhat.com)
  4515. - fix oc_apply to allow running on any control node (jcantril@redhat.com)
  4516. - g_master_mktemp in openshift-master conflicts with
  4517. openshift_master_certificates (rmeggins@redhat.com)
  4518. - fixes #3127. Get files for oc_apply from remote host (jcantril@redhat.com)
  4519. - Debug message before running hooks. (dgoodwin@redhat.com)
  4520. - Cleaning repo cache earlier (rteague@redhat.com)
  4521. - Added tar as a requirement per BZ1388445 (smilner@redhat.com)
  4522. - fixes BZ141619. Corrects the variable in the README (jcantril@redhat.com)
  4523. - Run user provided hooks prior to system/service restarts.
  4524. (dgoodwin@redhat.com)
  4525. - Implement pre/post master upgrade hooks. (dgoodwin@redhat.com)
  4526. - Adding oc_obj to the lib_openshift library (kwoodson@redhat.com)
  4527. - Addressing found issues with logging role (ewolinet@redhat.com)
  4528. - Updated the generate.py scripts for tox and virtualenv. (kwoodson@redhat.com)
  4529. - Adding tox tests for generated code. (kwoodson@redhat.com)
  4530. - Perform master upgrades in a single play serially. (dgoodwin@redhat.com)
  4531. - Validate system restart policy during pre-upgrade. (dgoodwin@redhat.com)
  4532. - Correct consistency between upgrade playbooks (rteague@redhat.com)
  4533. - Wait for nodes to be ready before proceeding with upgrade.
  4534. (dgoodwin@redhat.com)
  4535. * Wed Jan 18 2017 Scott Dodson <sdodson@redhat.com> 3.5.1-1
  4536. - More reliable wait for master after full host reboot. (dgoodwin@redhat.com)
  4537. - kubelet must have rw to cgroups for pod/qos cgroups to function
  4538. (decarr@redhat.com)
  4539. - Adding a few updates for python27,35 compatibility (kwoodson@redhat.com)
  4540. - update examples to cover build default/override configuration
  4541. (bparees@redhat.com)
  4542. - Fix yaml lint in easy-mode playbook (tbielawa@redhat.com)
  4543. - Removed trailing spaces from line #34 (kunallimaye@gmail.com)
  4544. - Install subscription-manager to fix issue-3102 (kunallimaye@gmail.com)
  4545. - Changing formatting for issue#2244 update (kunallimaye@gmail.com)
  4546. - Addressing Travis errors (ewolinet@redhat.com)
  4547. - Adding --verfiy to generate script. (kwoodson@redhat.com)
  4548. - v1.3 Add RHAMP (sdodson@redhat.com)
  4549. - Update v1.4 content, add api-gateway (sdodson@redhat.com)
  4550. - Add v1.5 content (sdodson@redhat.com)
  4551. - Update example sync script (sdodson@redhat.com)
  4552. - use pod to generate keystores (#14) (jcantrill@users.noreply.github.com)
  4553. - Ensure serial certificate generation for node and master certificates.
  4554. (abutcher@redhat.com)
  4555. - [Cert Expiry] Add serial numbers, include example PBs, docs
  4556. (tbielawa@redhat.com)
  4557. - properly set changes when oc apply (jcantril@redhat.com)
  4558. - additional cr fixes (jcantril@redhat.com)
  4559. - metrics fixes for yamlint (jcantril@redhat.com)
  4560. - additional code reviews (jcantril@redhat.com)
  4561. - set replicas to current value so not to disrupt current pods (#13)
  4562. (jcantrill@users.noreply.github.com)
  4563. - User provided certs pushed from control. vars reorg (#12)
  4564. (jcantrill@users.noreply.github.com)
  4565. - update vars to allow scaling of components (#9)
  4566. (jcantrill@users.noreply.github.com)
  4567. - allow definition of cpu/memory limits/resources (#11)
  4568. (jcantrill@users.noreply.github.com)
  4569. - rename variables to be less extraneous (#10)
  4570. (jcantrill@users.noreply.github.com)
  4571. - copy admin cert for use in subsequent tasks (#8)
  4572. (jcantrill@users.noreply.github.com)
  4573. - Add tasks to uninstall metrics (#7) (jcantrill@users.noreply.github.com)
  4574. - Custom certificates (#5) (bbarcaro@redhat.com)
  4575. - prefix vars with metrics role (#4) (jcantrill@users.noreply.github.com)
  4576. - Bruno Barcarol Guimarães work to move metrics to ansible from deployer
  4577. (jcantril@redhat.com)
  4578. - Adding oc_edit module to lib_openshift. (kwoodson@redhat.com)
  4579. - Create individual serving cert and loopback kubeconfig for additional
  4580. masters. (abutcher@redhat.com)
  4581. - add configuration for build default+overrides settings (bparees@redhat.com)
  4582. - delete idempotent (ewolinet@redhat.com)
  4583. - additional comments addressed (ewolinet@redhat.com)
  4584. - Updating upgrade_logging to be more idempotent (ewolinet@redhat.com)
  4585. - Using oc_apply task for idempotent (ewolinet@redhat.com)
  4586. - Removing shell module calls and cleaning up changed (ewolinet@redhat.com)
  4587. - lib_openshift modules. This is the first one. oc_route.
  4588. (kwoodson@redhat.com)
  4589. - Updated modify_yaml with docstring and clarifications (smilner@redhat.com)
  4590. - Rename subrole facts -> init (rhcarvalho@gmail.com)
  4591. - Move Python modules into role (rhcarvalho@gmail.com)
  4592. - Document playbook directories (rhcarvalho@gmail.com)
  4593. - Document bin/cluster tool (rhcarvalho@gmail.com)
  4594. - keys should be lowercase according to the spec (jf.cron0@gmail.com)
  4595. - filter: Removed unused validation calls (smilner@redhat.com)
  4596. - Updated initializer usage in filters (smilner@redhat.com)
  4597. - fix when statement indentation, cast to bool (jf.cron0@gmail.com)
  4598. - add openshift_facts as role dependency (jf.cron0@gmail.com)
  4599. - Added setup.py to flake8 tests (smilner@redhat.com)
  4600. - Do not default registry storage kind to 'nfs' when 'nfs' group exists.
  4601. (abutcher@redhat.com)
  4602. - Fix inconsistent task name (rhcarvalho@gmail.com)
  4603. - Reduce code duplication using variable (rhcarvalho@gmail.com)
  4604. - Another proposed update to the issue template (tbielawa@redhat.com)
  4605. - Replace custom variables with openshift_facts (rhcarvalho@gmail.com)
  4606. - Catch DBus exceptions on class initialization (rhcarvalho@gmail.com)
  4607. - addressing comments (ewolinet@redhat.com)
  4608. - Move playbook to BYO (rhcarvalho@gmail.com)
  4609. - Fix typo in inventory README.md (lberk@redhat.com)
  4610. - Refactor preflight check into roles (rhcarvalho@gmail.com)
  4611. - Make flake8 (py35) happy on bare except (rhcarvalho@gmail.com)
  4612. - Make callback plugin an always-on aggregate plugin (rhcarvalho@gmail.com)
  4613. - Add RPM checks as an adhoc playbook (rhcarvalho@gmail.com)
  4614. - first swing at release version wording (timbielawa@gmail.com)
  4615. - Correct tox to run on Travis (rteague@redhat.com)
  4616. - Adding ability to systematically modify yaml from ansible.
  4617. (kwoodson@redhat.com)
  4618. - oo_filters: Moved static methods to functions (smilner@redhat.com)
  4619. - Correct return code compairison for yamllint (rteague@redhat.com)
  4620. - Add a fact to select --evacuate or --drain based on your OCP version
  4621. (tbielawa@redhat.com)
  4622. - Update branch status (sdodson@redhat.com)
  4623. - rename openshift_metrics to openshift_hosted_metrics (jcantril@redhat.com)
  4624. - Update aws dynamic inventory (lhuard@amadeus.com)
  4625. - improve issue template (sdodson@redhat.com)
  4626. - cleanup: Removed debug prints from tests (smilner@redhat.com)
  4627. - remove debug statement from test (jdetiber@redhat.com)
  4628. - Support openshift_node_port_range for configuring service NodePorts
  4629. (ccoleman@redhat.com)
  4630. - Workaround for dnf+docker version race condition (smilner@redhat.com)
  4631. - use etcdctl from the container when containerized=True (gscrivan@redhat.com)
  4632. - Partial uninstall (sejug@redhat.com)
  4633. - increase test coverage (jdetiber@redhat.com)
  4634. - Update aws dynamic inventory (lhuard@amadeus.com)
  4635. - update travis to use tox for utils (jdetiber@redhat.com)
  4636. - More toxification (jdetiber@redhat.com)
  4637. - add test for utils to bump coverage (jdetiber@redhat.com)
  4638. - The scaleup subcommand does not support the unattended option
  4639. (tbielawa@redhat.com)
  4640. - Move role dependencies out of playbooks for openshift_master, openshift_node
  4641. and openshift_hosted. (abutcher@redhat.com)
  4642. - Remove unused file (rhcarvalho@gmail.com)
  4643. - Remove unused file (rhcarvalho@gmail.com)
  4644. - Remove spurious argument (rhcarvalho@gmail.com)
  4645. - Fixing collision of system.admin cert generation (ewolinet@redhat.com)
  4646. - minor updates for code reviews, remove unused params (jcantril@redhat.com)
  4647. - Updating to use deployer pod to generate JKS chain instead
  4648. (ewolinet@redhat.com)
  4649. - Creating openshift_logging role for deploying Aggregated Logging without a
  4650. deployer image (ewolinet@redhat.com)
  4651. - Begin requiring Docker 1.12. (dgoodwin@redhat.com)
  4652. * Mon Jan 09 2017 Scott Dodson <sdodson@redhat.com> 3.5.0-1
  4653. - Update manpage version. (tbielawa@redhat.com)
  4654. - Fix openshift_image_tag=latest. (abutcher@redhat.com)
  4655. - Use registry.access.redhat.com/rhel7/etcd instead of etcd3
  4656. (sdodson@redhat.com)
  4657. - Fix repo defaults (sdodson@redhat.com)
  4658. - Use openshift.common.hostname when verifying API port available.
  4659. (abutcher@redhat.com)
  4660. - Re-add when condition which was removed mistakenly in #3036
  4661. (maszulik@redhat.com)
  4662. - logging-deployer pull fixes from origin-aggregated-logging/#317
  4663. (sdodson@redhat.com)
  4664. - Don't upgrade etcd on atomic host, ever. (sdodson@redhat.com)
  4665. - Change wording in the quick installer callback plugin (tbielawa@redhat.com)
  4666. - Fix jsonpath expected output when checking registry volume secrets
  4667. (maszulik@redhat.com)
  4668. - Enable repos defined in openshift_additional_repos by default
  4669. (sdodson@redhat.com)
  4670. - Add required python-six package to installation (tbielawa@redhat.com)
  4671. - Hush the sudo privs check in oo-installer (tbielawa@redhat.com)
  4672. - Add future versions to openshift_facts (ccoleman@redhat.com)
  4673. - Cast openshift_enable_origin_repo to bool. (abutcher@redhat.com)
  4674. - Update CFME template to point to GA build (simaishi@redhat.com)
  4675. - Update aoi manpage with correct operation count (tbielawa@redhat.com)
  4676. - Add templates for CFME Beta pod images (simaishi@redhat.com)
  4677. - Add osnl_volume_reclaim_policy variable to nfs_lvm role
  4678. (ando.roots@bigbank.ee)
  4679. - remove duplicate filter name and oo_pdb (jdetiber@redhat.com)
  4680. - remove old Ops tooling (jdetiber@redhat.com)
  4681. - enable pip cache for travis (jdetiber@redhat.com)
  4682. - python3 support, add tox for better local testing against multiple python
  4683. versions (jdetiber@redhat.com)
  4684. - modify_yaml: handle None value during update. (abutcher@redhat.com)
  4685. - Update the openshift-certificate-expiry README to reflect latest changes
  4686. (tbielawa@redhat.com)
  4687. - Deprecate node 'evacuation' with 'drain' (tbielawa@redhat.com)
  4688. - Add master config hook for 3.4 upgrade and fix facts ordering for config hook
  4689. run. (abutcher@redhat.com)
  4690. - The next registry.access.redhat.com/rhel7/etcd image will be 3.0.15
  4691. (sdodson@redhat.com)
  4692. - [uninstall] Remove excluder packages (sdodson@redhat.com)
  4693. - Check embedded etcd certs now, too (tbielawa@redhat.com)
  4694. - Include 'total' and 'ok' in check results (tbielawa@redhat.com)
  4695. - Enable firewalld by default (rteague@redhat.com)
  4696. - Fix access_modes initialization (luis.fernandezalvarez@epfl.ch)
  4697. - Updated OpenShift Master iptables rules (rteague@redhat.com)
  4698. - YAML Linting (rteague@redhat.com)
  4699. - Make both backup and upgrade optional (sdodson@redhat.com)
  4700. - [upgrades] Upgrade etcd by default (sdodson@redhat.com)
  4701. - upgrades - Fix logic error about when to backup etcd (sdodson@redhat.com)
  4702. - Limit node certificate SAN to node hostnames/ips. (abutcher@redhat.com)
  4703. - Make 'cover-erase' a config file setting. Move VENT target to pre-req for all
  4704. ci-* targets (tbielawa@redhat.com)
  4705. - Fixes to 'make ci' (tbielawa@redhat.com)
  4706. - Resolved lint issues (rteague@redhat.com)
  4707. - Minimum Ansible version check (rteague@redhat.com)
  4708. - Removed verify_ansible_version playbook refs (rteague@redhat.com)
  4709. - Fix coverage not appending new data (tbielawa@redhat.com)
  4710. - Drop 3.2 upgrade playbooks. (dgoodwin@redhat.com)
  4711. - Silence warnings when using rpm directly (dag@wieers.com)
  4712. - Silence warnings when using rpm directly (dag@wieers.com)
  4713. - Silence warnings when using rpm directly (dag@wieers.com)
  4714. - Remove Hostname from 1.1 and 1.2 predicates (jdetiber@redhat.com)
  4715. - Properly handle x.y.z formatted versions for openshift_release
  4716. (jdetiber@redhat.com)
  4717. - etcd_upgrade: Simplify package installation (sdodson@redhat.com)
  4718. - Speed up 'make ci' and trim the output (tbielawa@redhat.com)
  4719. - add comments and remove debug code (jdetiber@redhat.com)
  4720. - Pre-pull master/node/ovs images during upgrade. (dgoodwin@redhat.com)
  4721. - Handle updating of scheduler config during upgrade (jdetiber@redhat.com)
  4722. - Fix templating (jdetiber@redhat.com)
  4723. - test updates (jdetiber@redhat.com)
  4724. - Always install latest etcd for containerized hosts (sdodson@redhat.com)
  4725. - etcd_upgrade : Use different variables for rpm vs container versions
  4726. (sdodson@redhat.com)
  4727. - Switch back to using etcd rather than etcd3 (sdodson@redhat.com)
  4728. - node_dnsmasq - restart dnsmasq if it's not currently running
  4729. (sdodson@redhat.com)
  4730. - Conditionalize master config update for admission_plugin_config.
  4731. (abutcher@redhat.com)
  4732. - upgrade_control_plane.yml: systemd_units.yaml nees the master facts
  4733. (mchappel@redhat.com)
  4734. - openshift-master/restart : use openshift.common.hostname instead of
  4735. inventory_hostname (mchappel@redhat.com)
  4736. - Update scheduler predicate/priorities vars (jdetiber@redhat.com)
  4737. - fix tags (jdetiber@redhat.com)
  4738. - openshift_node_dnsmasq - Remove strict-order option from dnsmasq
  4739. (sdodson@redhat.com)
  4740. - Fix metricsPublicURL only being set correctly on first master.
  4741. (dgoodwin@redhat.com)
  4742. - Explictly set etcd vars for byo scaleup (smunilla@redhat.com)
  4743. - Cleanup ovs file and restart docker on every upgrade. (dgoodwin@redhat.com)
  4744. - Sync latest image stream and templates for v1.3 and v1.4 (sdodson@redhat.com)
  4745. - xpaas v1.3.5 (sdodson@redhat.com)
  4746. - Ansible version check update (tbielawa@redhat.com)
  4747. - allow 'latest' origin_image_tag (sjenning@redhat.com)
  4748. - Remove duplicate when key (rteague@redhat.com)
  4749. - refactor handling of scheduler defaults (jdetiber@redhat.com)
  4750. - update tests and flake8/pylint fixes (jdetiber@redhat.com)
  4751. - fix tagging (jdetiber@redhat.com)
  4752. - do not report changed for group mapping (jdetiber@redhat.com)
  4753. - fix selinux issues with etcd container (dusty@dustymabe.com)
  4754. - etcd upgrade playbook is not currently applicable to embedded etcd installs
  4755. (sdodson@redhat.com)
  4756. - Fix invalid embedded etcd fact in etcd upgrade playbook.
  4757. (dgoodwin@redhat.com)
  4758. - Gracefully handle OpenSSL module absence (misc@redhat.com)
  4759. - Refactored to use Ansible systemd module (rteague@redhat.com)
  4760. - Updating docs for Ansible 2.2 requirements (rteague@redhat.com)
  4761. - Fix the list done after cluster creation on libvirt and OpenStack
  4762. (lhuard@amadeus.com)
  4763. - Set nameservers on DHCPv6 event (alexandre.lossent@cern.ch)
  4764. - Systemd `systemctl show` workaround (rteague@redhat.com)
  4765. - Verify the presence of dbus python binding (misc@redhat.com)
  4766. - Update README.md (jf.cron0@gmail.com)
  4767. - Reference master binaries when delegating from node hosts which may be
  4768. containerized. (abutcher@redhat.com)
  4769. - Merge kube_admission_plugin_config with admission_plugin_config
  4770. (smunilla@redhat.com)
  4771. - Added a BYO playbook for configuring NetworkManager on nodes
  4772. (skuznets@redhat.com)
  4773. - Make the role work on F25 Cloud (misc@redhat.com)
  4774. - Make os_firewall_manage_iptables run on python3 (misc@redhat.com)
  4775. - Modified the error message being checked for (vishal.patil@nuagenetworks.net)
  4776. - Only run tuned-adm if tuned exists. (dusty@dustymabe.com)
  4777. - Delegate openshift_manage_node tasks to master host. (abutcher@redhat.com)
  4778. - Fix rare failure to deploy new registry/router after upgrade.
  4779. (dgoodwin@redhat.com)
  4780. - Refactor os_firewall role (rteague@redhat.com)
  4781. - Allow ansible to continue when a node is unaccessible or fails.
  4782. (abutcher@redhat.com)
  4783. - Create the file in two passes, atomicly copy it over (sdodson@redhat.com)
  4784. - Escape LOGNAME variable according to GCE rules (jacek.suchenia@ocado.com)
  4785. - node_dnsmasq -- Set dnsmasq as our only nameserver (sdodson@redhat.com)
  4786. - Refactor to use Ansible package module (rteague@redhat.com)
  4787. - Allow users to disable the origin repo creation (sdodson@redhat.com)
  4788. - Fix yum/subman version check on Atomic. (dgoodwin@redhat.com)
  4789. - Check for bad versions of yum and subscription-manager. (dgoodwin@redhat.com)
  4790. - Corrected syntax and typos (rteague@redhat.com)
  4791. - Fix GCE cluster creation (lhuard@amadeus.com)
  4792. - Optimize the cloud-specific list.yml playbooks (lhuard@amadeus.com)
  4793. - Added ip forwarding for nuage (vishal.patil@nuagenetworks.net)
  4794. - Fix typo (sdodson@redhat.com)
  4795. - Fix a few places where we're not specifying the admin kubeconfig
  4796. (sdodson@redhat.com)
  4797. - Add rolebinding-reader (sdodson@redhat.com)
  4798. - Add view permissions to hawkular sa (sdodson@redhat.com)
  4799. - Use multiple '-v's when creating the metrics deployer command
  4800. (tbielawa@redhat.com)
  4801. - Sync logging deployer changes from origin to enterprise (sdodson@redhat.com)
  4802. - Docker daemon is started prematurely. (eric.mountain@amadeus.com)
  4803. - Sync latest enterprise/metrics-deployer.yaml (sdodson@redhat.com)
  4804. - Sync latest s2i content (sdodson@redhat.com)
  4805. - Actually upgrade host etcdctl no matter what (sdodson@redhat.com)
  4806. - Make etcd containerized upgrade stepwise (sdodson@redhat.com)
  4807. - Fix commit-offsets in version detection for containerized installs
  4808. (tbielawa@redhat.com)
  4809. - Fix HA upgrade when fact cache deleted. (dgoodwin@redhat.com)
  4810. - Fix openshift_hosted_metrics_deployer_version set_fact. (abutcher@redhat.com)
  4811. - Added dependency of os_firewall to docker role (rteague@redhat.com)
  4812. - Add updates for containerized (sdodson@redhat.com)
  4813. - Add etcd upgrade for RHEL and Fedora (sdodson@redhat.com)
  4814. - Drop /etc/profile.d/etcdctl.sh (sdodson@redhat.com)
  4815. - Move backups to a separate file for re-use (sdodson@redhat.com)
  4816. - Uninstall etcd3 package (sdodson@redhat.com)
  4817. - Resolve docker and iptables service dependencies (rteague@redhat.com)
  4818. - Add Travis integration (rhcarvalho@gmail.com)
  4819. - Default groups.oo_etcd_to_config when setting embedded_etcd in control plane
  4820. upgrade. (abutcher@redhat.com)
  4821. - Enable quiet output for all a-o-i commands (tbielawa@redhat.com)
  4822. - Update override cluster_hostname (smunilla@redhat.com)
  4823. - Reconcile role bindings for jenkins pipeline during upgrade.
  4824. (dgoodwin@redhat.com)
  4825. - Fix typos in openshift_facts gce cloud provider (sdodson@redhat.com)
  4826. - Don't upgrade etcd on backup operations (sdodson@redhat.com)
  4827. - Bump ansible requirement to 2.2.0.0-1 (GA) (sdodson@redhat.com)
  4828. - Fix etcd backup failure due to corrupted facts. (dgoodwin@redhat.com)
  4829. - Re-sync v1.4 image streams (andrew@andrewklau.com)
  4830. - Revert "Revert openshift.node.nodename changes" (sdodson@redhat.com)
  4831. - Change to allow cni deployments without openshift SDN (yfauser@vmware.com)
  4832. - README: fix markdown formatting (rhcarvalho@gmail.com)
  4833. - Create contribution guide (rhcarvalho@gmail.com)
  4834. - Remove README_AEP.md (rhcarvalho@gmail.com)
  4835. - Install flannel RPM on containerized but not atomic (sdodson@redhat.com)
  4836. - README: move structure overview to the top (rhcarvalho@gmail.com)
  4837. - README: cleanup setup steps (rhcarvalho@gmail.com)
  4838. - README: remove OSX setup requirements (rhcarvalho@gmail.com)
  4839. - Add missing symlink for node openvswitch oom fix. (dgoodwin@redhat.com)
  4840. - README: improve first paragraph (rhcarvalho@gmail.com)
  4841. - README: add links, fix typos (rhcarvalho@gmail.com)
  4842. - README: improve markdown formatting (rhcarvalho@gmail.com)
  4843. - Make it easier to run Python tests (rhcarvalho@gmail.com)
  4844. - FIx flannel var name (jprovazn@redhat.com)
  4845. - Always add local dns domain to no_proxy (jawed.khelil@amadeus.com)
  4846. - Refactor default sdn_cluster_network_cidr and sdn_host_subnet_length
  4847. (sdodson@redhat.com)
  4848. - Revert "Fix the nodeName of the OpenShift nodes on OpenStack"
  4849. (sdodson@redhat.com)
  4850. - Revert "Fix OpenStack cloud provider" (sdodson@redhat.com)
  4851. - Revert "Check that OpenStack hostnames are resolvable" (sdodson@redhat.com)
  4852. - set AWS creds task with no_logs (somalley@redhat.com)
  4853. - Change the logic to just compare against masters and nodes.
  4854. (tbielawa@redhat.com)
  4855. - Append /inventory/README.md to explain what is BYO inventory folder #2742
  4856. (contact@stephane-klein.info)
  4857. - Remove unused openshift-ansible/inventory/hosts file #2740 (contact@stephane-
  4858. klein.info)
  4859. - Remove unused playbooks adhoc metrics_setup files #2717 (contact@stephane-
  4860. klein.info)
  4861. - a-o-i: remove dummy data_file (rhcarvalho@gmail.com)
  4862. - a-o-i: remove script leftover from OpenShift v2 (rhcarvalho@gmail.com)
  4863. - [openstack] allows timeout option for heat create stack
  4864. (douglaskippsmith@gmail.com)
  4865. - [openstack] updates documentation to show that you need to install shade
  4866. (douglaskippsmith@gmail.com)
  4867. - default to multizone GCE config (sjenning@redhat.com)
  4868. - Add some tests for utils to get the coverage up. (tbielawa@redhat.com)
  4869. - Update defaults for clusterNetworkCIDR & hostSubnetLength
  4870. (smunilla@redhat.com)
  4871. - Add hawkular admin cluster role to management admin (fsimonce@redhat.com)
  4872. - Prevent useless master by reworking template for master service enf file
  4873. (jkhelil@gmail.com)
  4874. - support 3rd party scheduler (jannleno1@gmail.com)
  4875. - Add nuage rest server port to haproxy firewall rules. (abutcher@redhat.com)
  4876. - Port openshift_facts to py3 (misc@redhat.com)
  4877. - storage/nfs_lvm: Also export as ReadWriteOnce (walters@verbum.org)
  4878. * Fri Nov 04 2016 Scott Dodson <sdodson@redhat.com> 3.4.17-1
  4879. - Fix indentation for flannel etcd vars (smunilla@redhat.com)
  4880. - Update hosted_templates (sdodson@redhat.com)
  4881. - remove console exclusions (sdodson@redhat.com)
  4882. - Restart API service always as well. (dgoodwin@redhat.com)
  4883. - Update v1.4 content (sdodson@redhat.com)
  4884. - Update quick installer upgrade mappings for 3.4 (smunilla@redhat.com)
  4885. - Update flannel etcd vars for 0.5.5 (smunilla@redhat.com)
  4886. - Where we use curl force it to use tlsv1.2 (sdodson@redhat.com)
  4887. - Bump etcd_ca_default_days to 5 years. (abutcher@redhat.com)
  4888. - Update master_lb vs cluster_hostname workflow (smunilla@redhat.com)
  4889. * Wed Nov 02 2016 Scott Dodson <sdodson@redhat.com> 3.4.16-1
  4890. - Fix HA environments incorrectly detecting mixed installed environments
  4891. (tbielawa@redhat.com)
  4892. - Deploy an OOM systemd override for openvswitch. (dgoodwin@redhat.com)
  4893. - Only restart dnsmasq if the DNS servers have changed (tbielawa@redhat.com)
  4894. - Update installation summary for etcd members (smunilla@redhat.com)
  4895. - Fix changed_when (sdodson@redhat.com)
  4896. - add io labels (tdawson@redhat.com)
  4897. - Touch all ini_file files before using them (sdodson@redhat.com)
  4898. - Remove commit offset strings from parsed versions (tbielawa@redhat.com)
  4899. - Update variant_version (smunilla@redhat.com)
  4900. * Mon Oct 31 2016 Troy Dawson <tdawson@redhat.com> 3.4.15-1
  4901. - Bump documented openshift_release for 1.4/3.4. (dgoodwin@redhat.com)
  4902. - Add requirements, fix a small formatting issue.
  4903. (erinn.looneytriggs@gmail.com)
  4904. * Fri Oct 28 2016 Troy Dawson <tdawson@redhat.com> 3.4.14-1
  4905. - Change HA master controller service to restart always. (dgoodwin@redhat.com)
  4906. - Default hosted_registry_insecure true when insecure registry present in
  4907. existing /etc/sysconfig/docker. (abutcher@redhat.com)
  4908. - Fix race condtion in openshift_facts (smunilla@redhat.com)
  4909. * Wed Oct 26 2016 Troy Dawson <tdawson@redhat.com> 3.4.13-1
  4910. - [upgrades] Fix containerized node (sdodson@redhat.com)
  4911. - Add support for 3.4 upgrade. (dgoodwin@redhat.com)
  4912. - Update link to latest versions upgrade README (ebballon@gmail.com)
  4913. - Bump logging and metrics deployers to 3.3.1 and 3.4.0 (sdodson@redhat.com)
  4914. - Remove Vagrantfile (jdetiber@redhat.com)
  4915. - Enable dnsmasq service (sdodson@redhat.com)
  4916. - Default infra template modification based on
  4917. openshift_examples_modify_imagestreams (abutcher@redhat.com)
  4918. - Added a parameter for cert validity (vishal.patil@nuagenetworks.net)
  4919. - Fix and reorder control plane service restart. (dgoodwin@redhat.com)
  4920. - Add node-labels to kubeletArguments (tbielawa@redhat.com)
  4921. * Mon Oct 24 2016 Troy Dawson <tdawson@redhat.com> 3.4.12-1
  4922. - Move infrastructure templates into openshift_hosted_templates role.
  4923. (abutcher@redhat.com)
  4924. - Unit tests for the debug_env logger thing (tbielawa@redhat.com)
  4925. - a-o-i: Separate install and scaleup workflows (smunilla@redhat.com)
  4926. - Reference full vars for registry object storage. (abutcher@redhat.com)
  4927. * Fri Oct 21 2016 Troy Dawson <tdawson@redhat.com> 3.4.11-1
  4928. - trouble creating service signer while running upgrade dockerized
  4929. (henning.fjellheim@nb.no)
  4930. - Don't freak out if the oc command doesn't exist. (tbielawa@redhat.com)
  4931. - Make the json template filter-driven. (tbielawa@redhat.com)
  4932. - Add JSON result CLI parsing notes to the README (tbielawa@redhat.com)
  4933. - The JSON result saving template now includes a summary of expired/warned
  4934. certs for easier parsing. (tbielawa@redhat.com)
  4935. - Clean up lint and other little things (polish++) (tbielawa@redhat.com)
  4936. - Fix playbooks, update readme, update default vars (tbielawa@redhat.com)
  4937. - Refactor into a role (tbielawa@redhat.com)
  4938. - Get router/registry certs. Collect common names and subjectAltNames
  4939. (tbielawa@redhat.com)
  4940. - Support etcd certs now. Fix lint. Generate HTML report. (tbielawa@redhat.com)
  4941. - Try to make boiler plate for cert expiry checking (tbielawa@redhat.com)
  4942. - Override __init__ in default callback to avoid infinite loop.
  4943. (abutcher@redhat.com)
  4944. - Drop pacemaker restart logic. (dgoodwin@redhat.com)
  4945. - Fix typos (rhcarvalho@gmail.com)
  4946. - Switch from "oadm" to "oc adm" and fix bug in binary sync.
  4947. (dgoodwin@redhat.com)
  4948. - Remove uneeded import of ansible.module_utils.splitter (misc@redhat.com)
  4949. * Wed Oct 19 2016 Troy Dawson <tdawson@redhat.com> 3.4.10-1
  4950. - Get rid of openshift_node_config_file entirely (sdodson@redhat.com)
  4951. - [logging] Fix NFS volume binding (sdodson@redhat.com)
  4952. - Build full node config path in systemd_units tasks. (abutcher@redhat.com)
  4953. - Default [] (abutcher@afrolegs.com)
  4954. - Template with_items for upstream ansible-2.2 compat. (abutcher@redhat.com)
  4955. * Mon Oct 17 2016 Troy Dawson <tdawson@redhat.com> 3.4.9-1
  4956. - formatting updates in template (tobias@tobru.ch)
  4957. - Do not error on node labels set too non-string values. (manuel@hutter.io)
  4958. - Use inventory variables rather than facts (sdodson@redhat.com)
  4959. - Resume restarting node after upgrading node rpms. (dgoodwin@redhat.com)
  4960. - upgrade: Don't check avail docker version if not already installed.
  4961. (dgoodwin@redhat.com)
  4962. - revise docs (tobias@tobru.ch)
  4963. - adjustments in docs and j2 template (tobias@tobru.ch)
  4964. - add regionendpoint parameter for registry s3 (tobias.brunner@vshn.ch)
  4965. * Fri Oct 14 2016 Troy Dawson <tdawson@redhat.com> 3.4.8-1
  4966. - update handling of use_dnsmasq (jdetiber@redhat.com)
  4967. - Fix standalone docker upgrade playbook skipping nodes. (dgoodwin@redhat.com)
  4968. - Fix missing play assignment in a-o-i callback plugin (tbielawa@redhat.com)
  4969. - Stop restarting node after upgrading master rpms. (dgoodwin@redhat.com)
  4970. - Fix upgrade mappings in quick installer (smunilla@redhat.com)
  4971. - nfs: Handle seboolean aliases not just in Fedora (walters@verbum.org)
  4972. * Wed Oct 12 2016 Troy Dawson <tdawson@redhat.com> 3.4.7-1
  4973. - set defaults for debug_level in template and task (jhcook@gmail.com)
  4974. - Set HTTPS_PROXY in example builddefaults_json (sdodson@redhat.com)
  4975. - Fix config and namespace for registry volume detection (sdodson@redhat.com)
  4976. - Apply same pattern to HA master services (sdodson@redhat.com)
  4977. - Improve how we handle containerized node failure on first startup
  4978. (sdodson@redhat.com)
  4979. - Check that OpenStack hostnames are resolvable (lhuard@amadeus.com)
  4980. * Mon Oct 10 2016 Troy Dawson <tdawson@redhat.com> 3.4.6-1
  4981. - Retry failed master startup once (ironcladlou@gmail.com)
  4982. - [logging] Fix openshift_hosted_logging_fluentd_nodeselector
  4983. (sdodson@redhat.com)
  4984. - Changes for etcd servers (vishal.patil@nuagenetworks.net)
  4985. * Fri Oct 07 2016 Scott Dodson <sdodson@redhat.com> 3.4.5-1
  4986. - [a-o-i] -v disables quiet ansible config. (abutcher@redhat.com)
  4987. * Fri Oct 07 2016 Troy Dawson <tdawson@redhat.com> 3.4.4-1
  4988. - note different product versions (jeder@redhat.com)
  4989. - Error out if containerized=true for lb host. (dgoodwin@redhat.com)
  4990. - Removes an unused file (jtslear@gmail.com)
  4991. - Update v1.3 content (sdodson@redhat.com)
  4992. - Add v1.4 content (sdodson@redhat.com)
  4993. - Set master facts for first master in node scaleup. (abutcher@redhat.com)
  4994. - Fix default port typo. (abutcher@redhat.com)
  4995. - Add example openid/request header providers and explain certificate
  4996. variables. (abutcher@redhat.com)
  4997. - Move openshift.common.debug.level to openshift_facts. (abutcher@redhat.com)
  4998. - Don't secure registry or deploy registry console when infra replics == 0
  4999. (abutcher@redhat.com)
  5000. - the example line fails on releases prior to 3.3, so put a comment there.
  5001. (jeder@redhat.com)
  5002. * Tue Oct 04 2016 Scott Dodson <sdodson@redhat.com> 3.4.3-1
  5003. - Check if openshift_master_ingress_ip_network_cidr is defined
  5004. (Mathias.Merscher@dg-i.net)
  5005. - allow networkConfig.ingressIPNetworkCIDRs to be configured
  5006. (Mathias.Merscher@dg-i.net)
  5007. - Filterize haproxy frontends/backends and add method for providing additional
  5008. frontends/backends. (abutcher@redhat.com)
  5009. - a-o-i: Force option should allow reinstall (smunilla@redhat.com)
  5010. - a-o-i: Fix openshift_node_labels (smunilla@redhat.com)
  5011. - Enable registry support for image pruning (andrew@andrewklau.com)
  5012. - Default openshift_hosted_{logging,metrics}_deploy to false.
  5013. (abutcher@redhat.com)
  5014. - README_CONTAINERIZED_INSTALLATION: fixed link markdown
  5015. (jakub.kramarz@freshmail.pl)
  5016. - README_AWS: makes links consistent and working again
  5017. (jakub.kramarz@freshmail.pl)
  5018. - a-o-i: Allow better setting of host level variables (smunilla@redhat.com)
  5019. - Further secure registry improvements (abutcher@redhat.com)
  5020. - Delgate handlers to first master (smunilla@redhat.com)
  5021. - Secure registry improvements. (abutcher@redhat.com)
  5022. - Install Registry by Default (smunilla@redhat.com)
  5023. - Update play names for consistency. (abutcher@redhat.com)
  5024. - Addressed review comments (vishal.patil@nuagenetworks.net)
  5025. - Configure ops cluster storage to match normal cluster storage
  5026. (sdodson@redhat.com)
  5027. - Fix bug with service signer cert on upgrade. (dgoodwin@redhat.com)
  5028. - Add messages to let the user know if some plays were skipped, but it's ok.
  5029. Also, remove the final 'press a key to continue' prompt.
  5030. (tbielawa@redhat.com)
  5031. - Set named certificate destinations as basenames of provided paths.
  5032. (abutcher@redhat.com)
  5033. - 'fix' unittests by removing the users ability to specify an ansible config
  5034. (tbielawa@redhat.com)
  5035. - Copy and paste more methods (tbielawa@redhat.com)
  5036. - Silence/dot-print more actions in the callback (tbielawa@redhat.com)
  5037. - Fix conflicts in spec file (tbielawa@redhat.com)
  5038. - Use pre_upgrade tag instread of a dry run variable. (dgoodwin@redhat.com)
  5039. - Move etcd backup from pre-upgrade to upgrade itself. (dgoodwin@redhat.com)
  5040. - Allow a couple retries when unscheduling/rescheduling nodes in upgrade.
  5041. (dgoodwin@redhat.com)
  5042. - Skip the docker role in early upgrade stages. (dgoodwin@redhat.com)
  5043. - Allow filtering nodes to upgrade by label. (dgoodwin@redhat.com)
  5044. - Allow customizing node upgrade serial value. (dgoodwin@redhat.com)
  5045. - Split upgrade for control plane/nodes. (dgoodwin@redhat.com)
  5046. - Set the DomainName or DomainID in the OpenStack cloud provider
  5047. (lhuard@amadeus.com)
  5048. - Use ansible.module_utils._text.to_text instead of
  5049. ansible.utils.unicode.to_unicode. (abutcher@redhat.com)
  5050. - Suppress more warnings. (abutcher@redhat.com)
  5051. - Add gitHTTPProxy and gitHTTPSProxy to advanced config json option
  5052. (sdodson@redhat.com)
  5053. - Don't set IMAGE_PREFIX if openshift_cockpit_deployer_prefix is empty
  5054. (Robert.Bohne@ConSol.de)
  5055. - Update spec file to install manpage (tbielawa@redhat.com)
  5056. - Verify masters are upgraded before proceeding with node only upgrade.
  5057. (dgoodwin@redhat.com)
  5058. - Attempt to tease apart pre upgrade for masters/nodes. (dgoodwin@redhat.com)
  5059. - Split upgrade entry points into control plane/node. (dgoodwin@redhat.com)
  5060. - Reunite upgrade reconciliation gating with the play it gates on.
  5061. (dgoodwin@redhat.com)
  5062. - Drop atomic-enterprise as a valid deployment type in upgrade.
  5063. (dgoodwin@redhat.com)
  5064. - Stop guarding against pacemaker in upgrade, no longer necessary.
  5065. (dgoodwin@redhat.com)
  5066. - Support openshift_upgrade_dry_run=true for pre-upgrade checks only.
  5067. (dgoodwin@redhat.com)
  5068. - Make rhel_subscribe role default to OpenShift Container Platform 3.3
  5069. (lhuard@amadeus.com)
  5070. - Addresses most comments from @adellape (tbielawa@redhat.com)
  5071. - Changes for Nuage HA (vishal.patil@nuagenetworks.net)
  5072. - Fix deployer template for enterprise (sdodson@redhat.com)
  5073. - Add a manpage for atomic-openshift-installer (tbielawa@redhat.com)
  5074. - Remove the DNS VM on OpenStack (lhuard@amadeus.com)
  5075. - tweak logic (jdetiber@redhat.com)
  5076. - test fix for systemd changes (sdodson@redhat.com)
  5077. - Set default_subdomain properly for logging (sdodson@redhat.com)
  5078. - Adjust wait for loops (sdodson@redhat.com)
  5079. - Add storage for logging (sdodson@redhat.com)
  5080. - Fix some bugs in OpenShift Hosted Logging role (contact@stephane-klein.info)
  5081. - Add some sample inventory stuff, will update this later (sdodson@redhat.com)
  5082. - Label all nodes for fluentd (sdodson@redhat.com)
  5083. - Rename openshift_hosted_logging_image_{prefix,version} to match metrics
  5084. (sdodson@redhat.com)
  5085. - Fix deployer template for enterprise (sdodson@redhat.com)
  5086. - Add logging to install playbooks (sdodson@redhat.com)
  5087. - Fix OpenStack cloud provider (lhuard@amadeus.com)
  5088. - Add rhaos-3.4-rhel-7 releaser to tito (sdodson@redhat.com)
  5089. - Fix the nodeName of the OpenShift nodes on OpenStack (lhuard@amadeus.com)
  5090. - Fix GCE Launch (brad@nolab.org)
  5091. * Mon Sep 26 2016 Scott Dodson <sdodson@redhat.com> 3.4.2-1
  5092. - Add an issue template (sdodson@redhat.com)
  5093. - Add openshift_hosted_router_name (andrew@andrewklau.com)
  5094. - Fix master service status changed fact. (abutcher@redhat.com)
  5095. - Clarify openshift_hosted_metrics_public_url (sdodson@redhat.com)
  5096. - Add GCE cloud provider kind. (abutcher@redhat.com)
  5097. - add documentation about the openshift_hosted_metrics_public_url option
  5098. (kobi.zamir@gmail.com)
  5099. - Split openshift_builddefaults_no_proxy if it's not a list
  5100. (sdodson@redhat.com)
  5101. - Fix references to openshift.master.sdn_cluster_network_cidr in node roles
  5102. (sdodson@redhat.com)
  5103. - Update the OpenStack dynamic inventory script (lhuard@amadeus.com)
  5104. - move LICENSE to /usr/share/licenses/openshift-ansible-VERSION/
  5105. (nakayamakenjiro@gmail.com)
  5106. - [uninstall] Stop services on all hosts prior to removing files.
  5107. (abutcher@redhat.com)
  5108. - Do not create volume claims for hosted components when storage type is
  5109. object. (abutcher@redhat.com)
  5110. - Add portal_net and sdn_cluster_network_cidr to node NO_PROXY
  5111. (sdodson@redhat.com)
  5112. - Add origin-node.service.wants to uninstall (andrew@andrewklau.com)
  5113. - Update README.md (sdodson@redhat.com)
  5114. - Add 'MaxGCEPDVolumeCount' to default scheduler predicates.
  5115. (abutcher@redhat.com)
  5116. - Switch to origin-1.x branch names (sdodson@redhat.com)
  5117. - Open ports for vxlan and Nuage monitor (vishal.patil@nuagenetworks.net)
  5118. - Add role to manageiq to allow creation of projects (azellner@redhat.com)
  5119. - Add 'MaxEBSVolumeCount' to default scheduler predicates.
  5120. (abutcher@redhat.com)
  5121. - a-o-i: Don't set unschedulable nodes as infra (smunilla@redhat.com)
  5122. - [redeploy-certificates] Set default value for
  5123. openshift_master_default_subdomain as workaround. (abutcher@redhat.com)
  5124. - [redeploy-certificates] Correct etcd service name. (abutcher@redhat.com)
  5125. - [upgrade] Create/configure service signer cert when missing.
  5126. (abutcher@redhat.com)
  5127. - get quickstarts from origin, not upstream example repos (bparees@redhat.com)
  5128. - Define proxy settings for node services (sdodson@redhat.com)
  5129. - Check for use_openshift_sdn when restarting openvswitch.
  5130. (abutcher@redhat.com)
  5131. - Move delegated_serial_command module to etcd_common. (abutcher@redhat.com)
  5132. - Fix README links. (abutcher@redhat.com)
  5133. - Check for is_atomic when uninstalling flannel package. (abutcher@redhat.com)
  5134. - Add atomic-guest tuned profile (andrew.lau@newiteration.com)
  5135. - Pause after restarting openvswitch in containerized upgrade.
  5136. (dgoodwin@redhat.com)
  5137. - Add acceptschema2 and enforcequota settings for hosted registry
  5138. (andrew.lau@newiteration.com)
  5139. - Always deduplicate detected certificate names (elyscape@gmail.com)
  5140. - Add option for specifying s3 registry storage root directory.
  5141. (abutcher@redhat.com)
  5142. - Set config/namespace where missing for secure registry deployment.
  5143. (abutcher@redhat.com)
  5144. - Flush handlers before marking a node schedulable after upgrade.
  5145. (dgoodwin@redhat.com)
  5146. - Iterate over node inventory hostnames instead of openshift.common.hostname
  5147. within openshift_manage_node role. (abutcher@redhat.com)
  5148. - a-o-i: Do not display version number in quick installer (smunilla@redhat.com)
  5149. - Explain our branching strategy (sdodson@redhat.com)
  5150. - Fix warnings (mkumatag@in.ibm.com)
  5151. - Don't loop over hostvars when setting node schedulability.
  5152. (abutcher@redhat.com)
  5153. - Copy admin kubeconfig in openshift_manage_node role. (abutcher@redhat.com)
  5154. - Adjust to_padded_yaml transformation to use the AnsibleDumper
  5155. (tbielawa@redhat.com)
  5156. - Secure registry for atomic registry deployment (deployment_subtype=registry).
  5157. (abutcher@redhat.com)
  5158. - Record schedulability of node prior to upgrade and re-set it to that
  5159. (sdodson@redhat.com)
  5160. - Fix string substitution error in the to_padded_yaml filter
  5161. (tbielawa@redhat.com)
  5162. - Update image stream data (sdodson@redhat.com)
  5163. - Fix ops/qps typo (jliggitt@redhat.com)
  5164. - initial support for v1.3 with logging v1.3 (rmeggins@redhat.com)
  5165. - Only prompt for proxy vars if none are set and our version recognizes them
  5166. (tbielawa@redhat.com)
  5167. - Don't advise people to use additional registries over oreg_url
  5168. (sdodson@redhat.com)
  5169. - Persist net.ipv4.ip_forward sysctl entry for openshift nodes
  5170. (tbielawa@redhat.com)
  5171. - Add flannel package removal in uninstallation playbook (mkumatag@in.ibm.com)
  5172. - This fixes an issue in AWS where the master node was not part of the nodes in
  5173. an unschedulable way (mdanter@gmail.com)
  5174. - Don't attempt to create retry files (tbielawa@redhat.com)
  5175. - Fix nuage check. (abutcher@redhat.com)
  5176. - Change test requirements file name (tbielawa@redhat.com)
  5177. - Fix review comments (mkumatag@in.ibm.com)
  5178. - Try installing setuptools before the rest of the requirements
  5179. (tbielawa@redhat.com)
  5180. - Switch to using a requirements.txt file and ensure that setuptools is pinned
  5181. to the latest version available on RHEL7 (tbielawa@redhat.com)
  5182. - Try using parse_version from pkg_resources instead (tbielawa@redhat.com)
  5183. - Add missing pip requirement to virtualenv (tbielawa@redhat.com)
  5184. - Fix PyLint errors discovered when upgrading to newer version
  5185. (tbielawa@redhat.com)
  5186. - Bug 1369410 - uninstall fail at task [restart docker] on atomic-host
  5187. (bleanhar@redhat.com)
  5188. - Fix typo (mkumatag@in.ibm.com)
  5189. - Fix errors in docker role (mkumatag@in.ibm.com)
  5190. - Allow overriding the Docker 1.10 requirement for upgrade.
  5191. (dgoodwin@redhat.com)
  5192. - skip if the objects already exist (rmeggins@redhat.com)
  5193. - create and process the logging deployer template in the current project,
  5194. logging (rmeggins@redhat.com)
  5195. - do not create logging project if it already exists (rmeggins@redhat.com)
  5196. * Thu Sep 01 2016 Scott Dodson <sdodson@redhat.com> 3.4.1-1
  5197. - Bump to 3.4.0
  5198. * Wed Aug 31 2016 Scott Dodson <sdodson@redhat.com> 3.3.20-1
  5199. - Restore network plugin configuration (sdodson@redhat.com)
  5200. - Remove openshift_master_metrics_public_url (abutcher@redhat.com)
  5201. - Bug 1371836 - The variant should be Registry 3.3 (smunilla@redhat.com)
  5202. * Wed Aug 31 2016 Troy Dawson <tdawson@redhat.com> 3.3.19-1
  5203. - update flannel_subnet_len default value (mkumatag@in.ibm.com)
  5204. - Reload docker facts after upgrading docker (sdodson@redhat.com)
  5205. * Tue Aug 30 2016 Scott Dodson <sdodson@redhat.com> 3.3.18-1
  5206. - Enable dynamic storage (sdodson@redhat.com)
  5207. - Change how we set master's metricsPublicURL (sdodson@redhat.com)
  5208. - update kubelet argument example with references to new pods-per-core and new
  5209. max-pods threshold for 3.3 (jeder@redhat.com)
  5210. - update kubelet argument example with references to new pods-per-core and new
  5211. max-pods threshold for 3.3 (jeder@redhat.com)
  5212. * Mon Aug 29 2016 Scott Dodson <sdodson@redhat.com> 3.3.17-1
  5213. - Reload units after node container service modified. (dgoodwin@redhat.com)
  5214. - Fix flannel check (mkumatag@in.ibm.com)
  5215. - Default to port 80 when deploying cockpit-ui (smunilla@redhat.com)
  5216. - Set cloudprovider kind with openshift_facts. (abutcher@redhat.com)
  5217. - Fix openstack cloudprovider template conditional. (abutcher@redhat.com)
  5218. * Sat Aug 27 2016 Scott Dodson <sdodson@redhat.com> 3.3.16-1
  5219. - Sync image stream data (sdodson@redhat.com)
  5220. - Update metrics example inventories (sdodson@redhat.com)
  5221. - Preserve AWS options in sysconfig files. (dgoodwin@redhat.com)
  5222. - Fix metrics for containerized installs (sdodson@redhat.com)
  5223. - Cleanup items botched during rebase (sdodson@redhat.com)
  5224. - add check for server and account already exist (mangirdas@judeikis.lt)
  5225. - add run_once to repeatable actions (mangirdas@judeikis.lt)
  5226. - Remove atomic check and cockpit.socket (smunilla@redhat.com)
  5227. - Re-organize registry-console deployment. (abutcher@redhat.com)
  5228. - Add registry console template (aweiteka@redhat.com)
  5229. - Add support for Atomic Registry Installs (smunilla@redhat.com)
  5230. - Apply indentation changes to some other lines (tbielawa@redhat.com)
  5231. - Don't use openshift_env for cloud provider facts. (abutcher@redhat.com)
  5232. - Enable PEP8 tests by default in the 'make ci' target now
  5233. (tbielawa@redhat.com)
  5234. - Fix PEP8 errors in cli_installer.py (tbielawa@redhat.com)
  5235. - Fix PEP8 in openshift_ansible.py (tbielawa@redhat.com)
  5236. - Fix PEP8 in oo_config.py (tbielawa@redhat.com)
  5237. - Fix PEP8 in variants.py (tbielawa@redhat.com)
  5238. - Fix PEP8 in facts_callback.py (tbielawa@redhat.com)
  5239. - fix duplicate src field (jdetiber@redhat.com)
  5240. - Refactor volume directory creation (sdodson@redhat.com)
  5241. - Rely on IMAGE_PREFIX and IMAGE_VERSION defaults from the templates themselves
  5242. (sdodson@redhat.com)
  5243. - Add metrics exports to nfs role, move exports to /etc/exports.d/openshift-
  5244. ansible.exports (sdodson@redhat.com)
  5245. - Add ability to disable pvc creation (sdodson@redhat.com)
  5246. - Fix registry volume (sdodson@redhat.com)
  5247. - add selectors for metrics and logging (sdodson@redhat.com)
  5248. - Add logic to detect existing installs (sdodson@redhat.com)
  5249. - Deploy metrics after our router (sdodson@redhat.com)
  5250. - Add Enterprise 3.3 template (sdodson@redhat.com)
  5251. - Pull in keynote demo changes (sdodson@redhat.com)
  5252. - [tags] add some support for running a subset of config via tags
  5253. (jdetiber@redhat.com)
  5254. - [metrics] add filter to clean up hostname for use in metrics deployment
  5255. (jdetiber@redhat.com)
  5256. - enable service-serving-cert-signer by default (abutcher@redhat.com)
  5257. - Fix review comments (mkumatag@in.ibm.com)
  5258. - Remove duplicate flannel registration (mkumatag@in.ibm.com)
  5259. * Wed Aug 24 2016 Scott Dodson <sdodson@redhat.com> 3.3.15-1
  5260. - simplify repo configuration (jdetiber@redhat.com)
  5261. - don't set virt_sandbox_use_nfs on Fedora, it was replaced by virt_use_nfs
  5262. (maxamillion@fedoraproject.org)
  5263. - Correct flannel cert variables. (abutcher@redhat.com)
  5264. - Make note about ansible/install logs messing up ci tests
  5265. (tbielawa@redhat.com)
  5266. - remove fedora origin copr (it's in mainline fedora now), some dnf/yum clean
  5267. up (maxamillion@fedoraproject.org)
  5268. - Move nested print_read_config_error function into it's own function
  5269. (tbielawa@redhat.com)
  5270. - Makefile includes ci-pyflakes target now (tbielawa@redhat.com)
  5271. - Fix BZ1368296 by quietly recollecting facts if the cache is removed
  5272. (tbielawa@redhat.com)
  5273. - Correct masterCA config typo. (abutcher@redhat.com)
  5274. - don't gather facts when bootstrapping ansible for Fedora hosts
  5275. (maxamillion@fedoraproject.org)
  5276. - a-o-i: Add variant and variant_version to migration (smunilla@redhat.com)
  5277. - Fix upgrade failure when master-config does not have pluginOrderOverride.
  5278. (dgoodwin@redhat.com)
  5279. - Add externalIPNetworkCIDRs to config (smunilla@redhat.com)
  5280. * Tue Aug 23 2016 Scott Dodson <sdodson@redhat.com> 3.3.14-1
  5281. - a-o-i: Fix ansible_ssh_user question (smunilla@redhat.com)
  5282. - Don't run node config upgrade hook if host is not a node.
  5283. (dgoodwin@redhat.com)
  5284. - Link ca to ca-bundle when ca-bundle does not exist. (abutcher@redhat.com)
  5285. - Better error if no OpenShift RPMs are available. (dgoodwin@redhat.com)
  5286. - Revert "Due to problems with with_fileglob lets avoid using it for now"
  5287. (sdodson@redhat.com)
  5288. - Replace some virsh commands by native virt_XXX ansible module
  5289. (lhuard@amadeus.com)
  5290. - Add warning at end of 3.3 upgrade if pluginOrderOverride is found.
  5291. (dgoodwin@redhat.com)
  5292. - a-o-i: Remove Legacy Config Upgrade (smunilla@redhat.com)
  5293. - Fix etcd uninstall (sdodson@redhat.com)
  5294. - Bug 1358951 - Error loading config, no such key: 'deployment' when using
  5295. previously valid answers file (smunilla@redhat.com)
  5296. - Fix standalone Docker upgrade missing symlink. (dgoodwin@redhat.com)
  5297. - Open OpenStack security group for the service node port range
  5298. (lhuard@amadeus.com)
  5299. - Fix the “node on master” feature (lhuard@amadeus.com)
  5300. - Due to problems with with_fileglob lets avoid using it for now
  5301. (sdodson@redhat.com)
  5302. * Fri Aug 19 2016 Troy Dawson <tdawson@redhat.com> 3.3.13-1
  5303. - Fix warnings in OpenStack provider with ansible 2.1 (lhuard@amadeus.com)
  5304. - Mount /sys rw (sdodson@redhat.com)
  5305. - Update uninstall.yml (sdodson@redhat.com)
  5306. - Fix padding on registry config (sdodson@redhat.com)
  5307. * Wed Aug 17 2016 Troy Dawson <tdawson@redhat.com> 3.3.12-1
  5308. - Fixes to typos, grammar, and product branding in cli_installer
  5309. (tpoitras@redhat.com)
  5310. - Reconcile roles after master upgrade, but before nodes. (dgoodwin@redhat.com)
  5311. - a-o-i: Fix nosetests after removing 3.2 from installer (smunilla@redhat.com)
  5312. - Bug 1367323 - the "OpenShift Container Platform 3.2" variant is still listed
  5313. when quick install ose-3.3 (smunilla@redhat.com)
  5314. - Bug 1367199 - iptablesSyncPeriod should default to 30s OOTB
  5315. (smunilla@redhat.com)
  5316. - Sync remaining content (sdodson@redhat.com)
  5317. - XPaas 1.3.3 (sdodson@redhat.com)
  5318. - a-o-i: Fix broken tests from installed hosts check (smunilla@redhat.com)
  5319. - Add clientCommonNames to RequestHeaderProvider optional items
  5320. (sdodson@redhat.com)
  5321. - a-o-i: Mapping for 3.2 Upgrades (smunilla@redhat.com)
  5322. - a-o-i: fix bz#1329455 (ghuang@redhat.com)
  5323. - Add nfs group to OSEv3:vars (sdodson@redhat.com)
  5324. - fixing openshift key error in case of node failure during run (ssh issue)
  5325. (jawed.khelil@amadeus.com)
  5326. - add 3.3 to installer (rmeggins@redhat.com)
  5327. * Mon Aug 15 2016 Troy Dawson <tdawson@redhat.com> 3.3.11-1
  5328. - Ensure etcd user exists in etcd_server_certificates by installing etcd.
  5329. (abutcher@redhat.com)
  5330. - a-o-i: Fix broken upgrades (smunilla@redhat.com)
  5331. * Fri Aug 12 2016 Troy Dawson <tdawson@redhat.com> 3.3.10-1
  5332. - Reference tmpdir from first master hostvars when evacuating nodes.
  5333. (abutcher@redhat.com)
  5334. - Support for redeploying certificates. (abutcher@redhat.com)
  5335. - qps typo (deads@redhat.com)
  5336. - a-o-i: Automatically Label Nodes as Infra (smunilla@redhat.com)
  5337. - Improvements for Docker 1.10+ upgrade image nuking. (dgoodwin@redhat.com)
  5338. - a-o-i: Restrict installed host check (smunilla@redhat.com)
  5339. - Shutdown Docker before upgrading the rpm. (dgoodwin@redhat.com)
  5340. - Restrict the middleware stanza contains 'registry' and 'storage' at least on
  5341. 3.3 (ghuang@redhat.com)
  5342. - docker-registry's middleware stanza should contain 'registry' and 'storage'
  5343. by default (ghuang@redhat.com)
  5344. * Wed Aug 10 2016 Troy Dawson <tdawson@redhat.com> 3.3.9-1
  5345. - Enable 'NoVolumeZoneConflict' policy for scheduler (abutcher@redhat.com)
  5346. - a-o-i: Update nosetests for ansible_ssh_user (smunilla@redhat.com)
  5347. - move ansible_ssh_user to deployment, remove ansible_config and
  5348. ansible_log_path (ghuang@redhat.com)
  5349. - Labeling nodes only (ghuang@redhat.com)
  5350. - Set become=no for etcd server certificates temporary directory.
  5351. (abutcher@redhat.com)
  5352. - Move storage includes up to main. (abutcher@redhat.com)
  5353. - Support gathering ansible 2.1/2.2 system facts (abutcher@redhat.com)
  5354. - Try/except urlparse calls. (abutcher@redhat.com)
  5355. - with_fileglob no longer supports wildcard prefixes. (abutcher@redhat.com)
  5356. - BUILD.md lies (jmainguy@redhat.com)
  5357. - Migrate ca.crt to ca-bundle.crt (sdodson@redhat.com)
  5358. - Upgrade configs for protobuf support. (dgoodwin@redhat.com)
  5359. - Fixed a bug in modify_yaml module. (dgoodwin@redhat.com)
  5360. - make the improved log formatter work with ansible 2.1 (rmeggins@redhat.com)
  5361. - Convert ansible facts callback to v2. (abutcher@redhat.com)
  5362. - Add 3.3 protobuf config stanzas for master/node config. (dgoodwin@redhat.com)
  5363. - Introduce 1.3/3.3 upgrade path. (dgoodwin@redhat.com)
  5364. * Mon Aug 08 2016 Troy Dawson <tdawson@redhat.com> 3.3.8-1
  5365. - Fix little mistake in openshift_master_htpasswd_users value .
  5366. (jmferrer@paradigmatecnologico.com)
  5367. * Fri Aug 05 2016 Troy Dawson <tdawson@redhat.com> 3.3.7-1
  5368. - Call relocated openshift-loadbalancer playbook in master scaleup.
  5369. (abutcher@redhat.com)
  5370. - [openshift_ca] correct check for missing CA. (abutcher@redhat.com)
  5371. - a-o-i: Rename OSE in Install Menu (smunilla@redhat.com)
  5372. - a-o-i: Allow Arbitrary Deployment Variables (smunilla@redhat.com)
  5373. - Add knobs for disabling router/registry management. (abutcher@redhat.com)
  5374. - Restore missing etcd_image fact. (abutcher@redhat.com)
  5375. - Add options for specifying named ca certificates to be added to the openshift
  5376. ca bundle. (abutcher@redhat.com)
  5377. - oo_collect can be ran against dicts where key isn't present.
  5378. (abutcher@redhat.com)
  5379. - Don't set a networkPluginName in 3.3 installs (sdodson@redhat.com)
  5380. * Wed Aug 03 2016 Troy Dawson <tdawson@redhat.com> 3.3.6-1
  5381. - Rename router and registry node list variables. (abutcher@redhat.com)
  5382. - a-o-i: Fix broken uninstall (smunilla@redhat.com)
  5383. - Refactor etcd certificates roles. (abutcher@redhat.com)
  5384. * Mon Aug 01 2016 Troy Dawson <tdawson@redhat.com> 3.3.5-1
  5385. - Update for issue#2244 (kunallimaye@gmail.com)
  5386. - Update for issue-2244 (kunallimaye@gmail.com)
  5387. - a-o-i: Remove AEP, OSE 3.0, and OSE 3.2 choices (smunilla@redhat.com)
  5388. - Move role dependencies to playbooks. (abutcher@redhat.com)
  5389. - Fix xpaas_templates_base (sdodson@redhat.com)
  5390. - a-o-i: Better inventory group handling (smunilla@redhat.com)
  5391. - Add dotnet image stream to enterprise installs (sdodson@redhat.com)
  5392. - Fix haproxy logs (sdodson@redhat.com)
  5393. - update bootstrap-fedora playbook with new python crypto deps
  5394. (maxamillion@fedoraproject.org)
  5395. - Remove old sso70-basic templates (sdodson@redhat.com)
  5396. - xPaaS v1.3.2 release (sdodson@redhat.com)
  5397. * Fri Jul 29 2016 Troy Dawson <tdawson@redhat.com> 3.3.4-1
  5398. - a-o-i: Set roles on standalone storage (smunilla@redhat.com)
  5399. - Disable too many branches pylint (sdodson@redhat.com)
  5400. - a-o-i: write missing openshift_node_labels (dkorn@redhat.com)
  5401. - a-o-i: Support for arbitrary host-level variables (smunilla@redhat.com)
  5402. - Beautiful -v output from ansible (jamespic@gmail.com)
  5403. - a-o-i: Move inventory vars to the correct location (smunilla@redhat.com)
  5404. - Fix registry/router being created despite no infra nodes.
  5405. (dgoodwin@redhat.com)
  5406. - Document openshift_portal_net (sdodson@redhat.com)
  5407. - Stagger the start of master services. (abutcher@redhat.com)
  5408. - make rpm-q module pylint warning-free (tob@butter.sh)
  5409. - add rpm_q module to query rpm database (tob@butter.sh)
  5410. * Wed Jul 27 2016 Troy Dawson <tdawson@redhat.com> 3.3.3-1
  5411. - Template named certificates with_items. (abutcher@redhat.com)
  5412. - Replace master_cert_config_dir with common config_base fact.
  5413. (abutcher@redhat.com)
  5414. - remove outdated openshift_cluster_metrics role (jdetiber@redhat.com)
  5415. - Fix "deloyment" typo in deployment types doc (lxia@redhat.com)
  5416. - Add missing nuke_images.sh symlink. (dgoodwin@redhat.com)
  5417. - a-o-i: Persist Roles Variables (smunilla@redhat.com)
  5418. - Default nodes matching selectors when not collected. (abutcher@redhat.com)
  5419. - Copy openshift binaries instead of using wrapper script.
  5420. (dgoodwin@redhat.com)
  5421. - Correct relative include for ansible version check. (abutcher@redhat.com)
  5422. - Fix libvirt provider for Ansible 2.1.0.0 (lhuard@amadeus.com)
  5423. - Re-arrange master and node role dependencies. (abutcher@redhat.com)
  5424. - Refactor openshift certificates roles. (abutcher@redhat.com)
  5425. - Check ansible version prior to evaluating cluster hosts and groups.
  5426. (abutcher@redhat.com)
  5427. - Stop reporting changes when docker pull is already up to date.
  5428. (dgoodwin@redhat.com)
  5429. - a-o-i: Write Role variable groups (smunilla@redhat.com)
  5430. - Slight modification to error when using mismatched openshift_release.
  5431. (dgoodwin@redhat.com)
  5432. - fix "databcase" typo in example roles (lxia@redhat.com)
  5433. - Secure router only when openshift.hosted.router.certificate.contents exists.
  5434. (abutcher@redhat.com)
  5435. - Add jenkinstemplate (sdodson@redhat.com)
  5436. - Fix bugs with origin 1.2 rpm based upgrades. (dgoodwin@redhat.com)
  5437. - Sync latest image streams and templates (sdodson@redhat.com)
  5438. - Ensure 'oo_nfs_to_config' in groups prior to checking group length when nfs
  5439. host unset. (abutcher@redhat.com)
  5440. - We have proper ansible support and requirements in place now, de-revert this
  5441. commit (tbielawa@redhat.com)
  5442. - Skip docker upgrades on Atomic. (dgoodwin@redhat.com)
  5443. - Resolve some deprecation warnings. (abutcher@redhat.com)
  5444. - a-o-i: Looser facts requirements for unattended (smunilla@redhat.com)
  5445. - Temporarily link registry config templates for ansible 1.9.x support.
  5446. (abutcher@redhat.com)
  5447. - Remove relative lookup for registry config and check for skipped update in
  5448. registry redeploy conditional. (abutcher@redhat.com)
  5449. - Arbitrary Installer yaml (smunilla@redhat.com)
  5450. - Check for existence of sebooleans prior to setting. (abutcher@redhat.com)
  5451. - Require ansible-2.1 (abutcher@redhat.com)
  5452. * Sun Jul 17 2016 Scott Dodson <sdodson@redhat.com> 3.3.2-1
  5453. - Convert openshift_release and openshift_version to strings for startswith
  5454. (sdodson@redhat.com)
  5455. - Symlink ansible 2.x locations to ansible 1.9 locations (sdodson@redhat.com)
  5456. - Clarify message when old docker pre-installed but 1.10+ requested.
  5457. (dgoodwin@redhat.com)
  5458. - Fix quick install 3.2 upgrade path. (dgoodwin@redhat.com)
  5459. - Fix upgrade with docker_version set. (dgoodwin@redhat.com)
  5460. - Move the bash completion into the cli role. Only add when not containerized
  5461. (tbielawa@redhat.com)
  5462. - [master] add support for setting auditConfig (jdetiber@redhat.com)
  5463. - Remove too recent pylint option keys. (dgoodwin@redhat.com)
  5464. - pylint fixes (dgoodwin@redhat.com)
  5465. - Install bash-completion package for the oc/oadm tools (tbielawa@redhat.com)
  5466. - Fix more docker role logic. (dgoodwin@redhat.com)
  5467. - Add checks to docker role for 1.9.1+. (dgoodwin@redhat.com)
  5468. - Make libvirt’s VM use virtio-scsi insteal of virtio-blk
  5469. (lhuard@amadeus.com)
  5470. - Fix erroneous pylint error (smunilla@redhat.com)
  5471. - Remove 3.0 and 3.1 upgrade sub-dirs. (dgoodwin@redhat.com)
  5472. - Rename upgrade to just v3_2 as it's now major and minor.
  5473. (dgoodwin@redhat.com)
  5474. - Set registry replicas = 1 when no storage specified. (abutcher@redhat.com)
  5475. - Re-align the OpenStack firewall rules with the iptables rules
  5476. (lhuard@amadeus.com)
  5477. - Fix bin/cluster openstack related error (lhuard@amadeus.com)
  5478. - Fix upgrades with an openshift_image_tag set. (dgoodwin@redhat.com)
  5479. - ops-docker-loopback-to-direct-lvm.yml: fix typo on the variable name
  5480. "cli_name vs cli_host" (gael.lambert@redhat.com)
  5481. - Remove cleanup code from 1.0 to 1.1 upgrade era (sdodson@redhat.com)
  5482. - Move repoquery_cmd fact setting into a more logical place.
  5483. (dgoodwin@redhat.com)
  5484. - Add dependency on docker to openshift_docker role. (dgoodwin@redhat.com)
  5485. - Enable pullthrough by default in registry config for object storage.
  5486. (abutcher@redhat.com)
  5487. - Fix gpg key path (sdodson@redhat.com)
  5488. - Use proper startswith. (dgoodwin@redhat.com)
  5489. - Sync latest image stream content (sdodson@redhat.com)
  5490. - Role dependency cleanup (abutcher@redhat.com)
  5491. - Fix up some broken markdown formatting (mostly tables) (tbielawa@redhat.com)
  5492. - Rename things to avoid conflicts with paas sig release rpms
  5493. (sdodson@redhat.com)
  5494. - Remove/update TODOs. (dgoodwin@redhat.com)
  5495. - Remove all debug used during devel of openshift_version.
  5496. (dgoodwin@redhat.com)
  5497. - Update quick upgrade to remove unsupported options. (dgoodwin@redhat.com)
  5498. - Don't special case origin on centos (sdodson@redhat.com)
  5499. - Various hosted component improvements (abutcher@redhat.com)
  5500. - Move repoquery fact definition to openshift_common. (dgoodwin@redhat.com)
  5501. - Clean up some deprecation warnings (tbielawa@redhat.com)
  5502. - Add CentOS PaaS SIG repos for RHEL (sdodson@redhat.com)
  5503. - Remove Origin 1.1 as an option (smunilla@redhat.com)
  5504. - Make /var/lib/origin mounted rslave (sdodson@redhat.com)
  5505. - fix "hapoxy" typo in loadbalancer playbook (Mathias.Merscher@dg-i.net)
  5506. - Fix dnf variant of rpm_versions.sh (sdodson@redhat.com)
  5507. - Make image stream munging optional (sdodson@redhat.com)
  5508. - Add aos-3.3 to tito releasers.conf (sdodson@redhat.com)
  5509. - Add symlinks for node templates. (dgoodwin@redhat.com)
  5510. - Fixes for Ansible 2.1. (dgoodwin@redhat.com)
  5511. - Update repoquery_cmd definitions to match latest in master.
  5512. (dgoodwin@redhat.com)
  5513. - Fix unsafe bool usage. (dgoodwin@redhat.com)
  5514. - Fix typo in example inventories. (dgoodwin@redhat.com)
  5515. - Fixes for non-containerized separate etcd hosts. (dgoodwin@redhat.com)
  5516. - More docker upgrade fixes. (dgoodwin@redhat.com)
  5517. - Only nuke images when crossing the Docker 1.10 boundary in upgrade.
  5518. (dgoodwin@redhat.com)
  5519. - Fix node/openvswitch containers not restarting after upgrade.
  5520. (dgoodwin@redhat.com)
  5521. - Allow skipping Docker upgrade during OpenShift upgrade. (dgoodwin@redhat.com)
  5522. - a-o-i: Add Origin 1.2 Installs (smunilla@redhat.com)
  5523. - a-o-i: Add support for installing OpenShift Origin (smunilla@redhat.com)
  5524. - Refactor 3.2 upgrade to avoid killing nodes without evac.
  5525. (dgoodwin@redhat.com)
  5526. - Update docker upgrade playbook to be more flexible. (dgoodwin@redhat.com)
  5527. - Add missing defaults file. (dgoodwin@redhat.com)
  5528. - Use common fact initialization include in upgrade. (dgoodwin@redhat.com)
  5529. - Fix use of v3.2 format for openshift_release in upgrade.
  5530. (dgoodwin@redhat.com)
  5531. - Remove more legacy upgrade playbooks. (dgoodwin@redhat.com)
  5532. - Fix docker restarts during openshift_version role. (dgoodwin@redhat.com)
  5533. - Support setting a docker version in inventory. (dgoodwin@redhat.com)
  5534. - Fix version facts with trailing newline. (dgoodwin@redhat.com)
  5535. - Document the new and old version variables. (dgoodwin@redhat.com)
  5536. - Normalize some of the version inventory vars which users might mistakenly
  5537. enter wrong. (dgoodwin@redhat.com)
  5538. - Check that detected version matches openshift_release in rpm installations.
  5539. (dgoodwin@redhat.com)
  5540. - Block attempts to install origin without specifying any release info.
  5541. (dgoodwin@redhat.com)
  5542. - More stable lookup of running openshift version. (dgoodwin@redhat.com)
  5543. - Upgrade fixes. (dgoodwin@redhat.com)
  5544. - Fix typo in facts. (dgoodwin@redhat.com)
  5545. - Cleanup, fix 3.1 version bug in facts. (dgoodwin@redhat.com)
  5546. - More version fixes. (dgoodwin@redhat.com)
  5547. - Support origin alpha tags. (dgoodwin@redhat.com)
  5548. - More stable containerized version lookup. (dgoodwin@redhat.com)
  5549. - Remove old upgrade playbooks. (dgoodwin@redhat.com)
  5550. - Fix performance hit in openshift_facts. (dgoodwin@redhat.com)
  5551. - Always populate openshift_image_tag and openshift_pkg_version.
  5552. (dgoodwin@redhat.com)
  5553. - Remove the use of the upgrading variable. (dgoodwin@redhat.com)
  5554. - Don't be specific about rpm version to upgrade to for now.
  5555. (dgoodwin@redhat.com)
  5556. - Restore 3.2 RPM version check before upgrading. (dgoodwin@redhat.com)
  5557. - Make openshift_version role docker dep conditional. (dgoodwin@redhat.com)
  5558. - Fix rpm installs. (dgoodwin@redhat.com)
  5559. - Temporary fix for upgrading issue. (dgoodwin@redhat.com)
  5560. - Remove unused docker facts tasks. (dgoodwin@redhat.com)
  5561. - Fix version unset bug, and set common ver fact on containerized nodes.
  5562. (dgoodwin@redhat.com)
  5563. - Fix missing openshift.common.version fact on containerized nodes.
  5564. (dgoodwin@redhat.com)
  5565. - Begin major simplification of 3.2 upgrade. (dgoodwin@redhat.com)
  5566. - Respect image tag/pkg version during upgrade. (dgoodwin@redhat.com)
  5567. - Force version to latest 3.2 during upgrade. (dgoodwin@redhat.com)
  5568. - Verify openshift_release is correct or absent in inventory before upgrade.
  5569. (dgoodwin@redhat.com)
  5570. - Drop unused and broken "when" in vars section. (dgoodwin@redhat.com)
  5571. - Do not install rpm for version in openshift_version role.
  5572. (dgoodwin@redhat.com)
  5573. - Fix bin/cluster libvirt related error (jdetiber@redhat.com)
  5574. - Update openshift_version author info. (dgoodwin@redhat.com)
  5575. - Fix installing release 3.1 not converting to precise version.
  5576. (dgoodwin@redhat.com)
  5577. - Stop requiring/using first master version fact and use openshift_version var
  5578. instead. (dgoodwin@redhat.com)
  5579. - Break version calc out into a role, separate yaml for containerized/rpm.
  5580. (dgoodwin@redhat.com)
  5581. - Drop unnecessary node playbook version calculation. (dgoodwin@redhat.com)
  5582. - Add leading v for remaining IMAGE_VERSION templates. (dgoodwin@redhat.com)
  5583. - Fix error restarting master service that may not be there.
  5584. (dgoodwin@redhat.com)
  5585. - Fix use of openshift_version in ca role. (dgoodwin@redhat.com)
  5586. - Fix image tag to rpm version filter. (dgoodwin@redhat.com)
  5587. - Fix error with containerized etcd install. (dgoodwin@redhat.com)
  5588. - Refactor openshift_version behavior. (dgoodwin@redhat.com)
  5589. - Protect installed version on subsequent masters. (dgoodwin@redhat.com)
  5590. - Get rpm installations functional again. (dgoodwin@redhat.com)
  5591. - Convert generic openshift_version=3.2 to specific early in install.
  5592. (dgoodwin@redhat.com)
  5593. - Preserve node versions on re-run. (dgoodwin@redhat.com)
  5594. - Fix version compare with using just 3.2 or 1.2. (dgoodwin@redhat.com)
  5595. - Hookup node configuration. (dgoodwin@redhat.com)
  5596. - Complete installation of first master containerized. (dgoodwin@redhat.com)
  5597. - Stop downgrading Docker because we don't know what version to install yet.
  5598. (dgoodwin@redhat.com)
  5599. - Work towards determining openshift_version when unspecified.
  5600. (dgoodwin@redhat.com)
  5601. - Remove now unnecessary pull and ver check in openshift_docker role.
  5602. (dgoodwin@redhat.com)
  5603. - Set openshift_version in config playbooks for first master.
  5604. (dgoodwin@redhat.com)
  5605. - Debug output. (dgoodwin@redhat.com)
  5606. - cleanup broken symlinks - lookup_plugins filter_plugins (tdawson@redhat.com)
  5607. - Add libselinux-python as a dependency for the installation process
  5608. (frederic.boulet@gmail.com)
  5609. * Tue Jul 05 2016 Scott Dodson <sdodson@redhat.com> 3.3.1-1
  5610. - Add v1.3 examples (sdodson@redhat.com)
  5611. - Change the examples content sync directory (sdodson@redhat.com)
  5612. - Add gte_3_3 (sdodson@redhat.com)
  5613. - Adds quotes to gpgkey element in byo/config.yml (smerrill@covermymeds.com)
  5614. - Restart dnsmasq encase it was already running (sdodson@redhat.com)
  5615. - Add support for supplying a dnsmasq.conf file (sdodson@redhat.com)
  5616. - Update image streams with SCL 2.2 components (sdodson@redhat.com)
  5617. - Bump rhel subscribe default version. (abutcher@redhat.com)
  5618. - Revert "Speed up copying OpenShift examples" (abutcher@afrolegs.com)
  5619. - Switch to repoquery, enable plugins for satellite support
  5620. (sdodson@redhat.com)
  5621. - update conditional expression to save steps (lxia@redhat.com)
  5622. - Enable additional 'virt_sandbox_use_nfs' seboolean as per documentation:
  5623. (george.goh@redhat.com)
  5624. - Set any_errors_fatal for initialize facts play. (abutcher@redhat.com)
  5625. - Set any_errors_fatal for etcd facts play. (abutcher@redhat.com)
  5626. - Speed up copying OpenShift examples (tbielawa@redhat.com)
  5627. - Check if last rule is DROP when inserting iptables rules.
  5628. (abutcher@redhat.com)
  5629. - Don't upgrade docker on non-containerized etcd. (abutcher@redhat.com)
  5630. - Access embedded_etcd variable from oo_first_master hostvars.
  5631. (abutcher@redhat.com)
  5632. - Add missing quote in metrics deployer template. (dgoodwin@redhat.com)
  5633. - Allow flag to uninstall playbook to preserve images. (dgoodwin@redhat.com)
  5634. - Add MODE to metrics deployer (sdodson@redhat.com)
  5635. - NetworkManager service never changes (tbielawa@redhat.com)
  5636. - Update the rest of the templates (sdodson@redhat.com)
  5637. - Update logging and metrics templates (sdodson@redhat.com)
  5638. - Block Docker 1.10 upgrade playbook when run against an Atomic OS.
  5639. (dgoodwin@redhat.com)
  5640. - If registry_url != registry.access.redhat.com then modify image streams
  5641. (sdodson@redhat.com)
  5642. - Add 30 second pause before retrying to start the node (sdodson@redhat.com)
  5643. - Stop dumping debug output, re-try startng the node once (sdodson@redhat.com)
  5644. - Fix uninstall.yml indentation for deamon-reload
  5645. (florian.lambert@enovance.com)
  5646. - Fix no proxy hostnames during upgrade. (dgoodwin@redhat.com)
  5647. - Attempt to fix containerized node start failure with Docker 1.10.
  5648. (dgoodwin@redhat.com)
  5649. - also volume-mount /etc/sysconfig/docker (tob@butter.sh)
  5650. - Separate uninstall plays by group. (abutcher@redhat.com)
  5651. - Add per-service environment variables. (abutcher@redhat.com)
  5652. - - Prevent the script to override n number of the time the same nameserver -
  5653. Prevent the script to echo blank values from IP4_NAMESERVERS variable
  5654. (william17.burton@gmail.com)
  5655. - Make a note about Requires: docker (sdodson@redhat.com)
  5656. - Remove Docker 1.10 requirement temporarily. (dgoodwin@redhat.com)
  5657. - Fix docker 1.10 upgrade on embedded etcd masters. (dgoodwin@redhat.com)
  5658. - Add lower case proxy variables (pascal.bach@siemens.com)
  5659. - default unit in openshift_facts (you@example.com)
  5660. - add unit in seconds for metrics resolution (you@example.com)
  5661. * Thu Jun 09 2016 Scott Dodson <sdodson@redhat.com> 3.3.0-1
  5662. - Restore mistakenly reverted code. (dgoodwin@redhat.com)
  5663. - Add openshift_loadbalancer_facts role to set lb facts prior to running
  5664. dependencies. (abutcher@redhat.com)
  5665. - Bug 1338726 - never abort install if the latest version of docker is already
  5666. installed (bleanhar@redhat.com)
  5667. - Preserve proxy config if it's undefined (sdodson@redhat.com)
  5668. - At least backup things (sdodson@redhat.com)
  5669. - Use unique play names to make things easier to debug (sdodson@redhat.com)
  5670. - Ansible 2.1 support. (abutcher@redhat.com)
  5671. - add skydns port 8053 to openstack master sec group (jawed.khelil@amadeus.com)
  5672. - fix dns openstack flavor instead of openshift flavor
  5673. (jawed.khelil@amadeus.com)
  5674. - Fix Docker 1.10 problems with empty tags and trailing : (dgoodwin@redhat.com)
  5675. - ensure htpasswd file exists (tob@butter.sh)
  5676. - Docker 1.10 Upgrade (dgoodwin@redhat.com)
  5677. - Add flag to manage htpasswd, or not. (tob@butter.sh)
  5678. * Mon Jun 06 2016 Scott Dodson <sdodson@redhat.com> 3.0.97-1
  5679. - Only run node specific bits on nodes (sdodson@redhat.com)
  5680. - Update main.yaml (detiber@gmail.com)
  5681. - Hardcoded values in "launch_instances" - isue # 1970 (daniel@dumdan.com)
  5682. - XPAAS v1.3.1 content for Origin 1.1 / OSE 3.1 (sdodson@redhat.com)
  5683. - XPAAS v1.3.1 release for Origin 1.2 / OSE 3.2 (sdodson@redhat.com)
  5684. - Configure default docker logging options. (abutcher@redhat.com)
  5685. - Run rhel_subscribe on l_oo_all_hosts rather than all (sdodson@redhat.com)
  5686. - Fix error with stopping services that may not exist. (dgoodwin@redhat.com)
  5687. - Add haproxy_frontend_port to vars for openshift-loadbalancer.
  5688. (abutcher@redhat.com)
  5689. - Move os_firewall_allow from defaults to role dependencies.
  5690. (abutcher@redhat.com)
  5691. - Ensure registry url evaluated when creating router. (abutcher@redhat.com)
  5692. - Document protocol in readme aws. (abutcher@redhat.com)
  5693. - Revert openshift-certificates changes. (abutcher@redhat.com)
  5694. - wait metrics-deployer complete (need to configure nodes before hosted
  5695. services) (you@example.com)
  5696. - switch to using sig release packages (jdetiber@redhat.com)
  5697. - temporarily disable gpg checking until we have a way to cleanly enable it
  5698. (jdetiber@redhat.com)
  5699. - Switch to using CentOS SIG repos for Origin installs (jdetiber@redhat.com)
  5700. - Separate master and haproxy config playbooks. (abutcher@redhat.com)
  5701. - Cleanup bin, test and roles/openshift_ansible_inventory following move to
  5702. openshift-tools (abutcher@redhat.com)
  5703. - Catch more uninstall targets (sdodson@redhat.com)
  5704. - Adding openshift_clock parameters to example inventory files
  5705. (jstuever@redhat.com)
  5706. - Enable openshift_clock role for openshift_master, openshift_node, and
  5707. openshift_etcd (jstuever@redhat.com)
  5708. - Add openshift_clock role to manage system clocks (jstuever@redhat.com)
  5709. - Allow clock role in openshift_facts (jstuever@redhat.com)
  5710. - Consolidate ca/master/node certificates roles into openshift_certificates.
  5711. (abutcher@redhat.com)
  5712. - allow for overriding dns_flavor for openstack provider (jdetiber@redhat.com)
  5713. - add user-data file back to openstack provisioner (jdetiber@redhat.com)
  5714. - g_all_hosts with templated with_items causes errors with ansible 1.9.4 under
  5715. some conditions (jdetiber@redhat.com)
  5716. - openstack_fixes (jdetiber@redhat.com)
  5717. - libvirt_fixes (jdetiber@redhat.com)
  5718. - gce fixes (jdetiber@redhat.com)
  5719. - aws provider fixes (jdetiber@redhat.com)
  5720. - Call evaluate_groups from update_repos_and_packages (jdetiber@redhat.com)
  5721. * Thu May 26 2016 Scott Dodson <sdodson@redhat.com> 3.0.94-1
  5722. - Use grep to decide when to add our comment (sdodson@redhat.com)
  5723. * Tue May 24 2016 Troy Dawson <tdawson@redhat.com> 3.0.93-1
  5724. - Fixup spec file (tdawson@redhat.com)
  5725. * Tue May 24 2016 Troy Dawson <tdawson@redhat.com> 3.0.92-1
  5726. - Conditionally bind mount /usr/bin/docker-current when it is present (#1941)
  5727. (sdodson@redhat.com)
  5728. * Tue May 24 2016 Troy Dawson <tdawson@redhat.com> 3.0.91-1
  5729. - Removed the echo line and replaced it with inline comment. To keep 99-origin-
  5730. dns.sh from adding a new line in /etc/resolv.conf everytime the
  5731. NetworkManager dispatcher script is executed. (jnordell@redhat.com)
  5732. - Extend multiple login provider check to include origin. (abutcher@redhat.com)
  5733. - Allow multiple login providers post 3.2. (abutcher@redhat.com)
  5734. - Make rhel_subscribe role able to subscribe for OSE 3.2 (lhuard@amadeus.com)
  5735. - Ensure yum-utils installed. (abutcher@redhat.com)
  5736. - Remove newline from docker_options template string. (abutcher@redhat.com)
  5737. - Use systemctl restart docker instead of ansible service.
  5738. (dgoodwin@redhat.com)
  5739. - Use cluster hostname while generating certificate on the master nodes
  5740. (vishal.patil@nuagenetworks.net)
  5741. - Fix playbooks/openshift-master/library move to symlink (sdodson@redhat.com)
  5742. - Task "Update router image to current version" failed, if router not in
  5743. default namespace (jkroepke@users.noreply.github.com)
  5744. - docker-current was missing from the containerized atomic-openshift-
  5745. node.service file (maci.stgn@gmail.com)
  5746. - fixed issue with blank spaces instead commas as variables template separators
  5747. (j.david.nieto@gmail.com)
  5748. - Refactor where we compute no_proxy hostnames (sdodson@redhat.com)
  5749. - Fix for ansible v2 (sdodson@redhat.com)
  5750. - Fix rhel_subscribe (sdodson@redhat.com)
  5751. - remove interpolated g_all_hosts with_items arg from upgrade playbooks
  5752. (cboggs@rallydev.com)
  5753. - Set openshift.common.hostname early in playbook execution.
  5754. (abutcher@redhat.com)
  5755. - Fix 'recursive loop detected in template string' for upgrading variable.
  5756. (abutcher@redhat.com)
  5757. - a-o-i: No proxy questions for 3.0/3.1 (smunilla@redhat.com)
  5758. - Fix minor upgrades in 3.1 (sdodson@redhat.com)
  5759. - Don't pull cli image when we're not containerized (sdodson@redhat.com)
  5760. - Check consumed pools prior to attaching. (abutcher@redhat.com)
  5761. * Mon May 16 2016 Troy Dawson <tdawson@redhat.com> 3.0.90-1
  5762. - Fixes for openshift_docker_hosted_registry_insecure var.
  5763. (dgoodwin@redhat.com)
  5764. - Move latest to v1.2 (sdodson@redhat.com)
  5765. - Sync latest content (sdodson@redhat.com)
  5766. - Update default max-pods parameter (mwysocki@redhat.com)
  5767. - Allow overriding servingInfo.maxRequestsInFlight via
  5768. openshift_master_max_requests_inflight. (abutcher@redhat.com)
  5769. - update logging and metrics deployer templates (lmeyer@redhat.com)
  5770. - Update default max-pods parameter (maci.stgn@gmail.com)
  5771. - Block upgrading w/ ansible v2. (abutcher@redhat.com)
  5772. - Fixed openvswitch not upgrading. (dgoodwin@redhat.com)
  5773. - Do not upgrade containers to latest avail during a normal config run.
  5774. (dgoodwin@redhat.com)
  5775. - Update StringIO import for py2/3 compat. (abutcher@redhat.com)
  5776. - Fix mistaken quotes on proxy sysconfig variables. (dgoodwin@redhat.com)
  5777. - Sync comments with origin pr (sdodson@redhat.com)
  5778. - Use IP4_NAMESERVERS rather than DHCP4_DOMAIN_NAME_SERVERS
  5779. (sdodson@redhat.com)
  5780. - Remove vars_files on play includes for upgrade playbooks.
  5781. (abutcher@redhat.com)
  5782. - Document oauth token config inventory vars. (dgoodwin@redhat.com)
  5783. - Why is the node failing to start (sdodson@redhat.com)
  5784. - Move os_firewall out of openshift_common (sdodson@redhat.com)
  5785. - Remove old unused firewall rules (sdodson@redhat.com)
  5786. - Fix firewall rules (sdodson@redhat.com)
  5787. - Remove double evaluate_groups include. (abutcher@redhat.com)
  5788. - a-o-i: Write proxy variables (smunilla@redhat.com)
  5789. - Add support for Openstack based persistent volumes (sbaubeau@redhat.com)
  5790. - Fixes for flannel configuration. (abutcher@redhat.com)
  5791. - Initialize facts for all hosts. (abutcher@redhat.com)
  5792. - Fix version (sdodson@redhat.com)
  5793. - Fix cli_docker_additional_registries being erased during upgrade.
  5794. (dgoodwin@redhat.com)
  5795. - Unmask atomic-openshift-master on uninstall (sdodson@redhat.com)
  5796. - Add *.retry to gitignore. (abutcher@redhat.com)
  5797. - Move modify_yaml up into top level library directory (sdodson@redhat.com)
  5798. - Enable dnsmasq on all hosts (sdodson@redhat.com)
  5799. - Fixed the credentials (vishal.patil@nuagenetworks.net)
  5800. - Remove vars_files on play includes for byo, scaleup and restart playbooks.
  5801. (abutcher@redhat.com)
  5802. - Ensure ansible version greater than 1.9.4 (abutcher@redhat.com)
  5803. - Add oo_merge_hostvars filter for merging host & play variables.
  5804. (abutcher@redhat.com)
  5805. - Replace hostvars with vars for openshift env facts when ansible >= v2.
  5806. (abutcher@redhat.com)
  5807. - Add system:image-auditor role to ManageIQ SA (mtayer@redhat.com)
  5808. - Added extra install dependency on OSX (leenders.gert@gmail.com)
  5809. - Check and unmask iptables/firewalld. (abutcher@redhat.com)
  5810. - Default os_firewall_use_firewalld to false in os_firewall and remove
  5811. overrides. (abutcher@redhat.com)
  5812. - listen on all interfaces (sdodson@redhat.com)
  5813. - Fix configuration of dns_ip (sdodson@redhat.com)
  5814. - Fix markdown in roles/openshift_metrics/README.md (cben@redhat.com)
  5815. - use stat module instead of shell module and ls to check for rpm-ostree
  5816. (jdetiber@redhat.com)
  5817. - fix openstack template (sjenning@redhat.com)
  5818. - Remove duplicate oauth_template fact. (abutcher@redhat.com)
  5819. - Cleanup various deprecation warnings. (abutcher@redhat.com)
  5820. - Make NetworkManager failure friendlier (sdodson@redhat.com)
  5821. - README Updates (detiber@gmail.com)
  5822. - Remove deprecated online playbooks/roles (jdetiber@redhat.com)
  5823. - fix up variable references remove "online" support from bin/cluster
  5824. (jdetiber@redhat.com)
  5825. - Remove Ops specific ansible-tower aws playbooks (jdetiber@redhat.com)
  5826. - Fix inventory syntaxe (florian.lambert@enovance.com)
  5827. - Add openshift_docker_hosted_registry_insecure option (andrew@andrewklau.com)
  5828. - additional fixes (jdetiber@redhat.com)
  5829. - Fix templating issue with logging role (jdetiber@redhat.com)
  5830. - BuildDefaults are a kube admission controller not an openshift admission
  5831. controller (sdodson@redhat.com)
  5832. - a-o-i: More friendly proxy questions (smunilla@redhat.com)
  5833. - update tenand_id typo in example file (jialiu@redhat.com)
  5834. - Update hosts.ose.example (jialiu@redhat.com)
  5835. - update tenand_id typo in example file (jialiu@redhat.com)
  5836. - Update repos per inventory before upgrading (sdodson@redhat.com)
  5837. - Fix openshift_generate_no_proxy_hosts boolean (sdodson@redhat.com)
  5838. - Fix openshift_generate_no_proxy_hosts examples (sdodson@redhat.com)
  5839. - Fix inventory properties with raw booleans, again... (dgoodwin@redhat.com)
  5840. - Allow containerized deployment of dns role (jprovazn@redhat.com)
  5841. * Mon May 09 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.89-1
  5842. - Use yum swap to downgrade docker (sdodson@redhat.com)
  5843. * Fri May 06 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.88-1
  5844. - Open port 53 whenever we're unsure of version (sdodson@redhat.com)
  5845. - Fix unsafe boolean handling on use_dnsmasq (sdodson@redhat.com)
  5846. * Wed Apr 27 2016 Troy Dawson <tdawson@redhat.com> 3.0.87-1
  5847. - a-o-i-: Allow empty proxy (smunilla@redhat.com)
  5848. - a-o-i: Populate groups for openshift_facts (smunilla@redhat.com)
  5849. - Replace sudo with become when accessing deployment_vars.
  5850. (abutcher@redhat.com)
  5851. - Port lookup plugins to ansible v2. (abutcher@redhat.com)
  5852. - Add masterConfig.volumeConfig.dynamicProvisioningEnabled (sdodson@redhat.com)
  5853. * Tue Apr 26 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.86-1
  5854. - Don't set empty HTTP_PROXY, HTTPS_PROXY, NO_PROXY values (sdodson@redhat.com)
  5855. - a-o-i tests: Update attended tests for proxy (smunilla@redhat.com)
  5856. - Move portal_net from openshift_common to openshift_facts.
  5857. (abutcher@redhat.com)
  5858. - Apply openshift_common to all masters prior to creating certificates for
  5859. portal_net. (abutcher@redhat.com)
  5860. - Access portal_net in common facts. (abutcher@redhat.com)
  5861. - Add support for setting identity provider custom values (jdetiber@redhat.com)
  5862. - port filter_plugins to ansible2 (tob@butter.sh)
  5863. - a-o-i: Update prompt when asking for proxy (smunilla@redhat.com)
  5864. - a-o-i: UI additions for proxies (smunilla@redhat.com)
  5865. * Mon Apr 25 2016 Troy Dawson <tdawson@redhat.com> 3.0.85-1
  5866. - Fix backward compat for osm_default_subdomain (jdetiber@redhat.com)
  5867. - Replace deprecated sudo with become. (abutcher@redhat.com)
  5868. - Fix image version handling for v1.2.0-rc1 (sdodson@redhat.com)
  5869. - Pod must be recreated for the upgrade (bleanhar@redhat.com)
  5870. - openshift_etcd_facts should rely on openshift_facts not openshift_common
  5871. (jdetiber@redhat.com)
  5872. - Sort and de-dupe no_proxy list (sdodson@redhat.com)
  5873. - openshift-metrics: adding duration and resolution options
  5874. (efreiber@redhat.com)
  5875. - Changed service account creation to ansible (vishal.patil@nuagenetworks.net)
  5876. - As per https://github.com/openshift/openshift-
  5877. ansible/issues/1795#issuecomment-213873564, renamed openshift_node_dnsmasq to
  5878. openshift_use_dnsmasq where applicable. Fixes 1795 (donovan@switchbit.io)
  5879. - Add global proxy configuration (sdodson@redhat.com)
  5880. - remove duplicate register: (tob@butter.sh)
  5881. * Fri Apr 22 2016 Troy Dawson <tdawson@redhat.com> 3.0.84-1
  5882. - Fix for docker not present (jdetiber@redhat.com)
  5883. - Reconcile roles in additive-only mode on upgrade (jliggitt@redhat.com)
  5884. - Set etcd_hostname and etcd_ip for masters w/ external etcd.
  5885. (abutcher@redhat.com)
  5886. * Thu Apr 21 2016 Troy Dawson <tdawson@redhat.com> 3.0.83-1
  5887. - a-o-i: Correct bug with default storage host (smunilla@redhat.com)
  5888. - Only add new sccs (bleanhar@redhat.com)
  5889. - Fix bug after portal_net move from master to common role.
  5890. (dgoodwin@redhat.com)
  5891. - Sync latest content (sdodson@redhat.com)
  5892. - Use xpaas 1.3.0-1, use enterprise content for metrics (sdodson@redhat.com)
  5893. - Support configurable admin user and password for the enterprise Prefix
  5894. changes for admin and password with nuage_master (abhat@nuagenetworks.net)
  5895. * Wed Apr 20 2016 Troy Dawson <tdawson@redhat.com> 3.0.82-1
  5896. - Use a JSON list for docker log options. (dgoodwin@redhat.com)
  5897. - Fix legacy cli_docker_* vars not migrating. (dgoodwin@redhat.com)
  5898. - Fix use of older image tag version during upgrade. (dgoodwin@redhat.com)
  5899. - Remove etcd_interface variable. Remove openshift_docker dependency from the
  5900. etcd role. (abutcher@redhat.com)
  5901. - Use openshift_hostname/openshift_ip values for etcd configuration and
  5902. certificates. (abutcher@redhat.com)
  5903. - added new openshift-metrics service (j.david.nieto@gmail.com)
  5904. - Translate legacy facts within the oo_openshift_env filter.
  5905. (abutcher@redhat.com)
  5906. - Remove empty facts from nested dictionaries. (abutcher@redhat.com)
  5907. - Fix router selector fact migration and match multiple selectors when counting
  5908. nodes. (abutcher@redhat.com)
  5909. - Fixing the spec for PR 1734 (bleanhar@redhat.com)
  5910. - Add openshift_use_dnsmasq (sdodson@redhat.com)
  5911. - Promote portal_net to openshift.common, add kube_svc_ip (sdodson@redhat.com)
  5912. - Add example inventories to docs, install docs by default (sdodson@redhat.com)
  5913. - Fix use of JSON inventory vars with raw booleans. (dgoodwin@redhat.com)
  5914. - cleanup roles after roles move to openshift-tools (jdiaz@redhat.com)
  5915. - Reference Setup for Origin and Ose from up-to-date docs.openshift.[com|org]
  5916. instead of local README_[origin|OSE].md (jchaloup@redhat.com)
  5917. * Mon Apr 18 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.81-1
  5918. - IMAGE_PREFIX=openshift3/ for enterprise logging/metrics (sdodson@redhat.com)
  5919. - a-o-i: Don't assume storage on 1st master (smunilla@redhat.com)
  5920. - Bug 1320829 - Handle OSE 3.0 installs (bleanhar@redhat.com)
  5921. * Fri Apr 15 2016 Troy Dawson <tdawson@redhat.com> 3.0.80-1
  5922. - Refactor docker failed state cleanup (sdodson@redhat.com)
  5923. - Support mixed RPM/container installs (bleanhar@redhat.com)
  5924. - The openshift_docker role must set the version facts for containerized
  5925. installs (bleanhar@redhat.com)
  5926. - start it, check for failure, reset it, start again (sdodson@redhat.com)
  5927. - Enable docker before potentially resetting the failure (sdodson@redhat.com)
  5928. - Fix mappingMethod option in identity provider. (abutcher@redhat.com)
  5929. - Support setting imagePolicyConfig JSON in inventory. (dgoodwin@redhat.com)
  5930. * Tue Apr 12 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.79-1
  5931. - Bug 1324728 - Ansible should not downgrade docker when installing 3.2
  5932. containerized env (bleanhar@redhat.com)
  5933. - Fixing non-HA master restart conditional (bleanhar@redhat.com)
  5934. - Fetching the current version a little more carefully (bleanhar@redhat.com)
  5935. - Make sure Docker is restarted after we have correctly configured the
  5936. containerized systemd units (bleanhar@redhat.com)
  5937. - use RestartSec to avoid default rate limit in systemd (bleanhar@redhat.com)
  5938. - Convert image_tag on masters (smunilla@redhat.com)
  5939. - Installs and upgrades from authenticated registries are not supported for now
  5940. (bleanhar@redhat.com)
  5941. - Handle cases where the pacemaker variables aren't set (bleanhar@redhat.com)
  5942. - Containerized installs on RHEL were downgrading docker unnecessarily
  5943. (bleanhar@redhat.com)
  5944. * Tue Apr 12 2016 Troy Dawson <tdawson@redhat.com> 3.0.78-1
  5945. - Add support for creating secure router. (abutcher@redhat.com)
  5946. * Mon Apr 11 2016 Troy Dawson <tdawson@redhat.com> 3.0.77-1
  5947. - Fix a docker-storage sysconfig bug. (dgoodwin@redhat.com)
  5948. - update bootstrap-fedora to include python2-firewall for F24+
  5949. (maxamillion@fedoraproject.org)
  5950. - Merge openshift_env hostvars. (abutcher@redhat.com)
  5951. - Add openshift_hosted_facts role and remove hosted facts from
  5952. openshift_common. (abutcher@redhat.com)
  5953. * Fri Apr 08 2016 Troy Dawson <tdawson@redhat.com> 3.0.76-1
  5954. - a-o-i: Support openshift_image_tag (smunilla@redhat.com)
  5955. - Bug 1324729 - Import xPaas image streams failed during 3.2 installation
  5956. (bleanhar@redhat.com)
  5957. - Test docker_version_result.stdout when determining if docker should be
  5958. installed/downgraded. (abutcher@redhat.com)
  5959. * Thu Apr 07 2016 Troy Dawson <tdawson@redhat.com> 3.0.75-1
  5960. - First attempt at oadm router module (kwoodson@redhat.com)
  5961. - Remove openshift_common dep from openshift_storage_nfs (abutcher@redhat.com)
  5962. - Add cloudprovider config dir to docker options. (abutcher@redhat.com)
  5963. - Check for kind in cloudprovider facts prior to accessing.
  5964. (abutcher@redhat.com)
  5965. * Wed Apr 06 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.74-1
  5966. - Add support for configuring oauth templates. (dgoodwin@redhat.com)
  5967. - Add support for templating master admissionConfig. (dgoodwin@redhat.com)
  5968. * Wed Apr 06 2016 Troy Dawson <tdawson@redhat.com> 3.0.73-1
  5969. - Replace unused Dockerfile with one used for official builds.
  5970. (dgoodwin@redhat.com)
  5971. - Update for zbx_user refresh (kwoodson@redhat.com)
  5972. - Docker 1.9 is actually cool starting in origin 1.1.4 (sdodson@redhat.com)
  5973. - Unmask services (bleanhar@redhat.com)
  5974. - XPAAS v1.3 for OSE 3.2 (sdodson@redhat.com)
  5975. - XPAAS 1.3 content for OSE 3.1 (sdodson@redhat.com)
  5976. - Bug 1322788 - The IMAGE_VERSION wasn't added to atomic-openshift-master-api
  5977. and atomic-openshift-master-controllers (bleanhar@redhat.com)
  5978. - Bug 1323123 - upgrade failed to containerized OSE on RHEL Host without ose3.2
  5979. repo (bleanhar@redhat.com)
  5980. - Write inventory to same directory as quick install config.
  5981. (dgoodwin@redhat.com)
  5982. - Add --gen-inventory command to atomic-openshift-installer.
  5983. (dgoodwin@redhat.com)
  5984. * Tue Apr 05 2016 Troy Dawson <tdawson@redhat.com> 3.0.72-1
  5985. - when docker is installed, make it 1.8.2 to avoid issues (mwoodson@redhat.com)
  5986. - Downgrade to docker 1.8.2 if installing OSE < 3.2 (sdodson@redhat.com)
  5987. - Pacemaker is unsupported for 3.2 (bleanhar@redhat.com)
  5988. - Fixing regexp. Periods are no longer allowed (kwoodson@redhat.com)
  5989. - We require docker 1.9 for the 3.2 upgrade (bleanhar@redhat.com)
  5990. * Mon Apr 04 2016 Troy Dawson <tdawson@redhat.com> 3.0.71-1
  5991. - Fixed oc_edit by requiring name and content (kwoodson@redhat.com)
  5992. - add higher severity trigger if no heartbeat for 1 hour (jdiaz@redhat.com)
  5993. - Yedit enhancements (kwoodson@redhat.com)
  5994. * Fri Apr 01 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.70-1
  5995. - Enable Ansible ssh pipelining to speedup deployment (lhuard@amadeus.com)
  5996. - Allow for overriding scheduler config (jdetiber@redhat.com)
  5997. - a-o-i: Add 3.2 to list of supported versions (smunilla@redhat.com)
  5998. - a-o-i: Support for unattended upgrades (smunilla@redhat.com)
  5999. - a-o-i: More flexible upgrade mappings (smunilla@redhat.com)
  6000. - a-o-i: OSE/AEP 3.2 product option (smunilla@redhat.com)
  6001. - a-o-i: Error out early if callback_facts is None (smunilla@redhat.com)
  6002. * Thu Mar 31 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.69-1
  6003. - Bug 1320829 - Ensure docker installed for facts (jdetiber@redhat.com)
  6004. - Bug 1322788 - The IMAGE_VERSION wasn't added to atomic-openshift-master-api
  6005. and atomic-openshift-master-controllers (bleanhar@redhat.com)
  6006. - Fixed generate header. (kwoodson@redhat.com)
  6007. - Bug 1322335 - The package name is wrong for rpm upgrade (bleanhar@redhat.com)
  6008. - Add AWS cloud provider support. (abutcher@redhat.com)
  6009. * Wed Mar 30 2016 Troy Dawson <tdawson@redhat.com> 3.0.68-1
  6010. - Moving generation of ansible module side by side with module.
  6011. (kwoodson@redhat.com)
  6012. - Bug 1322338 - The upgrade should keep the option insecure-
  6013. registry=172.30.0.0/16 (bleanhar@redhat.com)
  6014. * Tue Mar 29 2016 Troy Dawson <tdawson@redhat.com> 3.0.67-1
  6015. - The systemd unit for atomic-openshift-master wasn't not being created
  6016. (bleanhar@redhat.com)
  6017. - Use openshift.master.ha instead of duplicating the logic
  6018. (bleanhar@redhat.com)
  6019. - Workaround for authenticated registries (bleanhar@redhat.com)
  6020. - First pass at systemd unit refactor (bleanhar@redhat.com)
  6021. - fix the key name for the dynamic item of avalable (zhizhang@zhizhang-laptop-
  6022. nay.redhat.com)
  6023. - make docker service want ose containerized services (sjenning@redhat.com)
  6024. * Mon Mar 28 2016 Troy Dawson <tdawson@redhat.com> 3.0.66-1
  6025. - Fixed error message to add valid yaml (kwoodson@redhat.com)
  6026. - added admin binary varibale usage as well as specifying kubeconfig copy to be
  6027. used (jkwiatko@redhat.com)
  6028. - Sync latest db-templates and qucikstart-templates (sdodson@redhat.com)
  6029. - adding playbook (jkwiatko@redhat.com)
  6030. - Tested of refactored code (jkwiatko@redhat.com)
  6031. - fix some typo (zhizhang@use-tower1.ops.rhcloud.com)
  6032. - add the total and available space item (zhizhang@use-tower1.ops.rhcloud.com)
  6033. - add dynamic pv count (zhizhang@use-tower1.ops.rhcloud.com)
  6034. - revised and restructured logging role (jkwiatko@redhat.com)
  6035. - Adding openshift_efk role (jkwiatko@redhat.com)
  6036. - Attempt to fix error validating when extraScopes and extraAuthorizeParameters
  6037. are not present (jdetiber@redhat.com)
  6038. * Thu Mar 24 2016 Troy Dawson <tdawson@redhat.com> 3.0.65-1
  6039. - Adding deployment config and refactored. (kwoodson@redhat.com)
  6040. - ManageIQ SA: Adding image-puller role (efreiber@redhat.com)
  6041. * Wed Mar 23 2016 Troy Dawson <tdawson@redhat.com> 3.0.64-1
  6042. - Latest cli updates from generated files (kwoodson@redhat.com)
  6043. - Add /dev to node containers (sdodson@redhat.com)
  6044. - Fix indention (whearn@redhat.com)
  6045. - Support setting local storage perFSGroup quota in node config.
  6046. (dgoodwin@redhat.com)
  6047. - Fix line break (whearn@redhat.com)
  6048. - Lock down permissions on named certificates (elyscape@gmail.com)
  6049. - Add namespace flag to oc create (whearn@redhat.com)
  6050. * Mon Mar 21 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.63-1
  6051. - Modified group selectors for muliple clusters per account
  6052. (kwoodson@redhat.com)
  6053. * Fri Mar 18 2016 Troy Dawson <tdawson@redhat.com> 3.0.62-1
  6054. - Yaml editor first attempt (kwoodson@redhat.com)
  6055. - libvirt cluster variables cleanup (pep@redhat.com)
  6056. * Thu Mar 17 2016 Troy Dawson <tdawson@redhat.com> 3.0.61-1
  6057. - Bug 1317755 - Set insecure-registry for internal registry by default
  6058. (jdetiber@redhat.com)
  6059. * Wed Mar 16 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.60-1
  6060. - Fall back to deployment_type in openshift_facts. (abutcher@redhat.com)
  6061. - Fixing undefined variable check (kwoodson@redhat.com)
  6062. - Fix path to cacert on /healthz/ready check (sdodson@redhat.com)
  6063. - Load environment files in containerized installs (sdodson@redhat.com)
  6064. - change type to value_type (zhizhang@zhizhang-laptop-nay.redhat.com)
  6065. - change time from int to float (zhizhang@zhizhang-laptop-nay.redhat.com)
  6066. - change the check time from 1 hour to 2 hour (zhizhang@zhizhang-laptop-
  6067. nay.redhat.com)
  6068. - add item of time cost a app build and app create (zhizhang@zhizhang-laptop-
  6069. nay.redhat.com)
  6070. - add trigger for app creation with build process (zhizhang@zhizhang-laptop-
  6071. nay.redhat.com)
  6072. - add key of openshift.master.app.build.create (zhizhang@zhizhang-laptop-
  6073. nay.redhat.com)
  6074. * Wed Mar 16 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.59-1
  6075. - Only mask etcd service for containerized installls when it's installed
  6076. (sdodson@redhat.com)
  6077. - Provide cacert when performing health checks (abutcher@redhat.com)
  6078. * Tue Mar 15 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.58-1
  6079. - Group selector feature added (kwoodson@redhat.com)
  6080. - nfs: replace yum with dnf (efreiber@redhat.com)
  6081. - Move common common facts to openshift_facts (jdetiber@redhat.com)
  6082. - perform oc client config tasks only once when ansible_ssh_user is root
  6083. (jdetiber@redhat.com)
  6084. - OSE/Origin < 3.2/1.2 should not get Docker 1.9 (sdodson@redhat.com)
  6085. * Mon Mar 14 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.57-1
  6086. - Docker stderr can break this script if ansible executes it remotely
  6087. (bleanhar@redhat.com)
  6088. - Handle HA master case (bleanhar@redhat.com)
  6089. - Bug 1315564 - Containerized installs require a running environment
  6090. (bleanhar@redhat.com)
  6091. - Updating the docker registry variables to use the new name
  6092. (bleanhar@redhat.com)
  6093. - Bug 1316761 - Skip the available version check if openshift_image_tag is
  6094. defined. (bleanhar@redhat.com)
  6095. - Ansible module to manage secrets for openshift api (kwoodson@redhat.com)
  6096. * Mon Mar 14 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.56-1
  6097. - Updating our metadata tooling to work without env (kwoodson@redhat.com)
  6098. - improve ordering of systemd units (jdetiber@redhat.com)
  6099. - Docker role refactor (jdetiber@redhat.com)
  6100. - Ensure is_containerized is cast as bool. (abutcher@redhat.com)
  6101. - Sync latest to v1.2 (sdodson@redhat.com)
  6102. - Sync with latest image stream and templates (sdodson@redhat.com)
  6103. - Allow origin version to be passed in as an argument (sdodson@redhat.com)
  6104. - Add support for Openstack integration (sbaubeau@redhat.com)
  6105. - Expose log level on the monitor (abhat@nuagenetworks.net)
  6106. - openshift_facts: Safe cast additional bools (smunilla@redhat.com)
  6107. - openshift-ansible: Wrap boolean facts (smunilla@redhat.com)
  6108. - fixed copr releasers file (twiest@redhat.com)
  6109. - Libvirt provider fixes (jdetiber@redhat.com)
  6110. - Support log level configuration for plugin (abhat@nuagenetworks.net)
  6111. * Wed Mar 09 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.55-1
  6112. - Bug 1315564 - upgrade to ose3.2 failed on Atomic Hosts (bleanhar@redhat.com)
  6113. - Bug 1315563 - Upgrade failed to containerized install OSE 3.1 on RHEL
  6114. (bleanhar@redhat.com)
  6115. - a-o-i: Fix NFS storage tests (smunilla@redhat.com)
  6116. - First attempt at NFS setup (smunilla@redhat.com)
  6117. - reverting back to pre-pulling the master image (bleanhar@redhat.com)
  6118. - Use /healthz/ready when verifying api (abutcher@redhat.com)
  6119. - Formatting error (Viet.atx@gmail.com)
  6120. - Introduce origin-metrics playbook (vnguyen@redhat.com)
  6121. * Tue Mar 08 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.54-1
  6122. - Bug 1315563 - stdout IO redirection wasn't working as expected over SSH
  6123. connections (bleanhar@redhat.com)
  6124. - Bug 1315637 - The docker wasn't upgraded on node during upgrade
  6125. (bleanhar@redhat.com)
  6126. - Bug 1315564 - upgrade to ose3.2 failed on Atomic Hosts (bleanhar@redhat.com)
  6127. - Fix issue when there are no infra nodes (lhuard@amadeus.com)
  6128. - Stop the etcd container during uninstall (bleanhar@redhat.com)
  6129. * Mon Mar 07 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.53-1
  6130. - Don't enable cockpit-ws for containerized installs (bleanhar@redhat.com)
  6131. - Support openshift_image_tag (bleanhar@redhat.com)
  6132. - Set g_new_master_hosts in upgrade playbooks. (abutcher@redhat.com)
  6133. - Add setting for configuring nofile limit for haproxy (jdetiber@redhat.com)
  6134. * Mon Mar 07 2016 Joel Diaz <jdiaz@redhat.com> 3.0.52-1
  6135. - fixed monitoring containers to restart (sten@redhat.com)
  6136. - Lock down generated certs dir (sdodson@redhat.com)
  6137. - package up lib_zabbix into its own subpackage (jdiaz@redhat.com)
  6138. * Fri Mar 04 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.51-1
  6139. - Bug 1314645 - Upgrade failed with "One or more undefined variables 'dict
  6140. object' has no attribute 'stdout'" (bleanhar@redhat.com)
  6141. - EBS storage does not support Recycle (sedgar@redhat.com)
  6142. - Remove cockpit and kubernetes-client packages in uninstall playbook.
  6143. (abutcher@redhat.com)
  6144. - Update README_origin.md (trond.hapnes@gmail.com)
  6145. - Add cockpit-docker package by default (nakayamakenjiro@gmail.com)
  6146. * Thu Mar 03 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.50-1
  6147. - change lib_zabbix's import to new pathing (jdiaz@redhat.com)
  6148. - upgrade README fixes (bleanhar@redhat.com)
  6149. - A few images weren't being uninstalled (bleanhar@redhat.com)
  6150. - Adding support for v1.2 examples (bleanhar@redhat.com)
  6151. - Adding templates for v1.2 (bleanhar@redhat.com)
  6152. - Adding verify_upgrade_version variable for upgrade debugging
  6153. (bleanhar@redhat.com)
  6154. - Correctly set the image tag for containerized installs (and upgrades)
  6155. (bleanhar@redhat.com)
  6156. - Adding newly required variable (bleanhar@redhat.com)
  6157. - Updating the containerized cli wrapper to work for both docker 1.8 and 1.9
  6158. (bleanhar@redhat.com)
  6159. - uninstall the QE images (bleanhar@redhat.com)
  6160. - First past at the upgrade process (bleanhar@redhat.com)
  6161. - Check for is_containerized value when setting binary locations.
  6162. (abutcher@redhat.com)
  6163. - Bug 1313169 - Ansible installer tries to enable etcd_container service even
  6164. though containerized=false (bleanhar@redhat.com)
  6165. - Fix logging infra template version mismatch. (dgoodwin@redhat.com)
  6166. - Changes required for Nuage monitor REST server
  6167. (vishal.patil@nuagenetworks.net)
  6168. - disable http-server-close option (jdetiber@redhat.com)
  6169. - change [HEAL] to [Heal] to match with v2 (jdiaz@redhat.com)
  6170. - Increase maxconn settings for haproxy lb (jdetiber@redhat.com)
  6171. * Tue Mar 01 2016 Matt Woodson <mwoodson@redhat.com> 3.0.49-1
  6172. - fixed error in awsutil.py (mwoodson@redhat.com)
  6173. * Tue Mar 01 2016 Matt Woodson <mwoodson@redhat.com> 3.0.48-1
  6174. - ohi: added subtype searching (mwoodson@redhat.com)
  6175. - make heal remote actions generic for all [HEAL] triggers (jdiaz@redhat.com)
  6176. - added extra steps to ensure docker starts up (mwoodson@redhat.com)
  6177. - role_removal: docker_storage; This is the old way, no longer used
  6178. (mwoodson@redhat.com)
  6179. - role: added docker_storage_setup (mwoodson@redhat.com)
  6180. - Use inventory_hostname for openshift master certs to sync.
  6181. (abutcher@redhat.com)
  6182. - Adding a symlink to making loading the examples more convenient
  6183. (bleanhar@redhat.com)
  6184. - docs: Explain a bit more how to expand Atomic Host rootfs
  6185. (walters@verbum.org)
  6186. - a-o-i: Rename osm_default_subdomain (smunilla@redhat.com)
  6187. - Updating tito config for OSE 3.2 (bleanhar@redhat.com)
  6188. - Synchronize master kube configs (abutcher@redhat.com)
  6189. - added os_utils, os_reboot_server role; removed containerization stuff from
  6190. the updated (mwoodson@redhat.com)
  6191. - Add warnings to bin/cluster and READMEs (abutcher@redhat.com)
  6192. - Add host subnet length example. (abutcher@redhat.com)
  6193. - Upgrade -1510 to CentOS-7-x86_64-GenericCloud-1602. (cben@redhat.com)
  6194. - Pin down CentOS-7-x86_64-GenericCloud-1510.qcow2.xz version, which the
  6195. checksum currently expects (#1384). (cben@redhat.com)
  6196. - Change is_atomic to is_containerized (florian.lambert@enovance.com)
  6197. - Rename variable to openshift_master_default_subdomain with backwards
  6198. compatibility. (jstuever@redhat.com)
  6199. - lib_dyn: more updates to the lib_dyn module. Made the TTL more flexible
  6200. (mwoodson@redhat.com)
  6201. - remote heal action for OVS down (jdiaz@redhat.com)
  6202. - Pass registry claim to openshift_registry. (abutcher@redhat.com)
  6203. - Refactor - increase retries instead of delay in "Wait for Node Registration"
  6204. (david.mat@archimiddle.com)
  6205. - Better diagnostic messages when an OpenStack heat stack creation fails
  6206. (lhuard@amadeus.com)
  6207. - made some changes to lib_dyn update (mwoodson@redhat.com)
  6208. - Increase timeout on Wait for Node Registration (david.mat@archimiddle.com)
  6209. - Fix typo in oscp (agrimm@redhat.com)
  6210. - Add correct parsing of ec2_security_groups env variable
  6211. (david.mat@archimiddle.com)
  6212. - changed oso_host_monitoring to use the oo_ vars (twiest@redhat.com)
  6213. - Add quotes around src argument to support paths with spaces
  6214. (david.mat@archimiddle.com)
  6215. - Add missing is_atomic condition on upgrade package
  6216. (florian.lambert@enovance.com)
  6217. - configure debug_level for master and node from cli (jawed.khelil@amadeus.com)
  6218. - remove version requirement from etcd, shouldn't be needed anymore
  6219. (maxamillion@fedoraproject.org)
  6220. - Add ansible.cfg to .gitignore (jdetiber@redhat.com)
  6221. - added node-secgroup to master_nodes (j.david.nieto@gmail.com)
  6222. - Document setting the VPC subnet (puiterwijk@redhat.com)
  6223. - Update the AMIs used in README_AWS (puiterwijk@redhat.com)
  6224. - Add byo examples for network cidr and api/console ports.
  6225. (abutcher@redhat.com)
  6226. - Add openshift_docker roles to master/node scaleup. (abutcher@redhat.com)
  6227. - Fail when master.master_count descreases or master.ha changes.
  6228. (abutcher@redhat.com)
  6229. - Protected facts. (abutcher@redhat.com)
  6230. - Add modify_yaml module. (abutcher@redhat.com)
  6231. - Re-arrange scaleup playbooks. (abutcher@redhat.com)
  6232. - Move additional master configuration into a separate master playbook.
  6233. (abutcher@redhat.com)
  6234. - Generate each master's certificates separately. (abutcher@redhat.com)
  6235. - Add new_masters to scaleup playbook. (abutcher@redhat.com)
  6236. * Wed Feb 24 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.47-1
  6237. - a-o-i: Double safety check on master_lb (smunilla@redhat.com)
  6238. - a-o-i: Better method for identifying master_lb (smunilla@redhat.com)
  6239. * Tue Feb 23 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.46-1
  6240. - a-o-i: Exception checking around master_lb (smunilla@redhat.com)
  6241. * Mon Feb 22 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.45-1
  6242. - Do not monitor for etcd watchers (mmahut@redhat.com)
  6243. - remove old master registry item/triggers (jdiaz@redhat.com)
  6244. - a-o-i: Redo logic for detecting master_lb (smunilla@redhat.com)
  6245. - Fix 1.2 version check (jdetiber@redhat.com)
  6246. - Fix pv/c creation failed_when. (abutcher@redhat.com)
  6247. - Rename variable to delete temporary file, add configurable path.
  6248. (hrosnet@redhat.com)
  6249. - Add /var/log to containerized node mounts (sdodson@redhat.com)
  6250. - Add extra parameters for S3 registry: delete file, create bucket.
  6251. (hrosnet@redhat.com)
  6252. - Don't make config files world readable (sdodson@redhat.com)
  6253. - Fix requiring state and providing a default (rharriso@redhat.com)
  6254. - bind in /etc/origin/node for non-master monitoring to be able to talk with
  6255. master (jdiaz@redhat.com)
  6256. - a-o-i: pylint fixes related to too-long lines (smunilla@redhat.com)
  6257. * Wed Feb 17 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.44-1
  6258. - create registry items/triggers under Openshift Node (jdiaz@redhat.com)
  6259. - a-o-i: Change method for counting master_lb as installed
  6260. (smunilla@redhat.com)
  6261. * Tue Feb 16 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.43-1
  6262. - Add default to state param (rharriso@redhat.com)
  6263. - Add type to record_type param (rharriso@redhat.com)
  6264. - Add types to module params (rharriso@redhat.com)
  6265. - Adding examples to the dyn_record module (rharriso@redhat.com)
  6266. - add item to track docker-registry pings (jdiaz@redhat.com)
  6267. - Handle case where the user already had access to the scc
  6268. (bleanhar@redhat.com)
  6269. - Refactoring the add-scc-to-user logic (bleanhar@redhat.com)
  6270. - Apply openshift_docker to nodes during scaleup. (abutcher@redhat.com)
  6271. - Change etcd deamon name for atomic-host (florian.lambert@enovance.com)
  6272. * Tue Feb 16 2016 Joel Diaz <jdiaz@redhat.com> 3.0.42-1
  6273. - Add gce softlink for openshift-ansible-bin
  6274. * Mon Feb 15 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.41-1
  6275. - Bug 1308411 - Fail to install OSE 3.0 for no add-scc-to-user command
  6276. (bleanhar@redhat.com)
  6277. - Add openshift_docker_options to append arbitrary options to
  6278. /etc/sysconfig/docker OPTIONS (sdodson@redhat.com)
  6279. - oo_filter: added custom fitler to return hosts group info
  6280. (mwoodson@redhat.com)
  6281. - add gce softlink for openshift-ansible-bin RPM (jdiaz@redhat.com)
  6282. - a-o-i: Count nativeha hosts as "installed" for scaleup (smunilla@redhat.com)
  6283. - a-o-i: Add master_routingconfig_subdomain to PERSIST_SETTINGS
  6284. (smunilla@redhat.com)
  6285. - Bug 1308412 - Fail to install containerized HA master env on RHEL7
  6286. (bleanhar@redhat.com)
  6287. - Bug 1308314 - Failed to continue installation when pressing CTRL-C
  6288. (bleanhar@redhat.com)
  6289. - Updating the 3.1.1 router to match the new liveness probe configuration
  6290. (bleanhar@redhat.com)
  6291. - Don't automatically give additional permissions to all OAuth users on upgrade
  6292. (jliggitt@redhat.com)
  6293. - Fix adhoc boostrap fedora playbook (jdetiber@redhat.com)
  6294. - Fix libvirt cluster creation (lhuard@amadeus.com)
  6295. - Add missing `type` node labels on OpenStack and libvirt (lhuard@amadeus.com)
  6296. - a-o-i: Prompts to allow minor upgrades (smunilla@redhat.com)
  6297. - conditionalize loopback config on v >= 3.2/1.2 (jdetiber@redhat.com)
  6298. - Fixes pv/pvc creation for latest builds (jdetiber@redhat.com)
  6299. - Bug 1302970 - update script does not patch router if name is different from
  6300. default (bleanhar@redhat.com)
  6301. - Fix loopback cluster name, context name, and user (jdetiber@redhat.com)
  6302. - Changes for new Nuage RPMS (vishal.patil@nuagenetworks.net)
  6303. - Make the GCE image_name and the machine_type configurable from the CLI
  6304. (lhuard@amadeus.com)
  6305. - Better structure the output of the list playbook (lhuard@amadeus.com)
  6306. - Fix issue when there are no infra nodes (lhuard@amadeus.com)
  6307. - Remove fluentd_master and fluentd_node roles. (abutcher@redhat.com)
  6308. - Remove etcd up checks from fluentd_master. (abutcher@redhat.com)
  6309. * Thu Feb 11 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.40-1
  6310. - Bug 1306665 - [metrics] update metrics-deployer template to use latest image
  6311. versions (bleanhar@redhat.com)
  6312. - Add organizations attribute to github identity provider (jdetiber@redhat.com)
  6313. - use correct dict key (jdiaz@redhat.com)
  6314. - handle being passed an empty group list (jdiaz@redhat.com)
  6315. - fix default value (jdetiber@redhat.com)
  6316. - removed notscheduleable trigger, it just makes noise in its current
  6317. incarnation (sten@redhat.com)
  6318. - trigger on two successive bad pid counts (jdiaz@redhat.com)
  6319. - added nodes not ready and nodes not schedulable triggers (sten@redhat.com)
  6320. - Enable selection of kubeproxy mode (vishal.patil@nuagenetworks.net)
  6321. - add default storage plugins to 'origin' deployment_type
  6322. (rvanveelen@tremorvideo.com)
  6323. - added nodes not ready and nodes not schedulable triggers (sten@redhat.com)
  6324. - Don't mask master service on atomic. (abutcher@redhat.com)
  6325. - update defaults and examples w/ iscsi plugin (rvanveelen@tremorvideo.com)
  6326. - add iscsi storage_plugin dependency (rvanveelen@tremorvideo.com)
  6327. - Add gte check for 3.2, update version checks to gte (jdetiber@redhat.com)
  6328. - Specify default namespace when creating router (pat2man@gmail.com)
  6329. - add missing connection:local (jdetiber@redhat.com)
  6330. - consolidate oo_first_master post-config a bit, fix some roles that use
  6331. openshift_facts without declaring a dependency (jdetiber@redhat.com)
  6332. - openshift_serviceaccounts updates (jdetiber@redhat.com)
  6333. - Fix infra_node deployment (jdetiber@redhat.com)
  6334. - changed registry checks to alert based on number of registries with problems
  6335. (sten@redhat.com)
  6336. - Fix a bug with existing CNAME records (rharriso@redhat.com)
  6337. - Fix HA typo in example AEP/OSE/Origin inventories (adellape@redhat.com)
  6338. - Updated the key for app create (kwoodson@redhat.com)
  6339. - Add missing atomic- and openshift-enterprise (pep@redhat.com)
  6340. - Fix enabling iptables for latest rhel versions (jdetiber@redhat.com)
  6341. - Make pod_eviction_timeout configurable from cli (jawed.khelil@amadeus.com)
  6342. * Tue Feb 09 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.39-1
  6343. - Bug 1304150 - Can't upgrade atomic-openshift to specified version
  6344. (bleanhar@redhat.com)
  6345. - Mask master service when using native ha (jdetiber@redhat.com)
  6346. - aoi: Safer check for master_routingconfig_subdomain (smunilla@redhat.com)
  6347. - Add a DNS server on OpenStack clusters (lhuard@amadeus.com)
  6348. - renamed /etc/openshift to /etc/origin (sten@redhat.com)
  6349. - gitignore : .tag* (atom editor tag files) (sdodson@redhat.com)
  6350. - Add an early check to ensure that node names resolve to an interface on the
  6351. host (sdodson@redhat.com)
  6352. - Allow compression option to be set to empty for non compressed QCow images
  6353. Support tgz and gzip compressed images (akram@free.fr)
  6354. - Replace status_changed bool (abutcher@redhat.com)
  6355. - Improve docs and consistency of setting the ssh_user (jdetiber@redhat.com)
  6356. - remove outdated comments (jdetiber@redhat.com)
  6357. - add etcd hosts for gce playbooks (jdetiber@redhat.com)
  6358. - GCE cloud provider updates (jdetiber@redhat.com)
  6359. - Remove extra nfs configuration. (abutcher@redhat.com)
  6360. - Do not apply the etcd_certificates role during node playbook.
  6361. (abutcher@redhat.com)
  6362. - Add g_new_node_hosts to cluster_hosts. (abutcher@redhat.com)
  6363. - Updating examples to use /etc/origin/master/htpasswd (jstuever@redhat.com)
  6364. - Refactor registry storage options. (abutcher@redhat.com)
  6365. - Additional overrides for cloud provider playbooks (jdetiber@redhat.com)
  6366. - Bring first etcd server up before others. (dgoodwin@redhat.com)
  6367. * Tue Feb 02 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.38-1
  6368. - aoi: Ask for osm_default_subdomain in interactive mode (smunilla@redhat.com)
  6369. - add item to hold number of stray OVS rules found/removed (jdiaz@redhat.com)
  6370. - changed adhoc playbook to match new host monitoring container
  6371. (mwoodson@redhat.com)
  6372. - Multi-master fixes for provider playbooks (jdetiber@redhat.com)
  6373. - zabbix: added master local api items and triggers (mwoodson@redhat.com)
  6374. - Added docs around oo_nodes_with_label (jdetiber@redhat.com)
  6375. - fix for terminate (jdetiber@redhat.com)
  6376. - Fix node tags for aws provider (jdetiber@redhat.com)
  6377. - use yaml for loading lable info instead of json (jdetiber@redhat.com)
  6378. - infra_node fixes (jdetiber@redhat.com)
  6379. - removing extraneous comments (rharriso@redhat.com)
  6380. - Remove commented lines and fix pylint check (rharriso@redhat.com)
  6381. - Cleaning up the dyn ansible module for merging (rharriso@redhat.com)
  6382. - Fix missing bool filter (sdodson@redhat.com)
  6383. - Sync platest imagestreams (sdodson@redhat.com)
  6384. - Fixing last pylint error (rharriso@redhat.com)
  6385. - Fix hostname for aws cloud provider (jdetiber@redhat.com)
  6386. - Fixing pylint errors (rharriso@redhat.com)
  6387. - Give openvswitch container some time to start (jprovazn@redhat.com)
  6388. - s3_registry no filter named 'lookup' (florian.lambert@enovance.com)
  6389. - WIP adding the lib_dyn role for the dyn_record module (rharriso@redhat.com)
  6390. * Fri Jan 29 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.37-1
  6391. - Adding ip address option (kwoodson@redhat.com)
  6392. - Enable cockpit when not is_atomic. (abutcher@redhat.com)
  6393. - Explicitly restart the atomic node service after configuring it for nuage
  6394. (vishal.patil@nuagenetworks.net)
  6395. - Fix for bug 1298 (vishal.patil@nuagenetworks.net)
  6396. - fixing logic for skipping symlinks (kwoodson@redhat.com)
  6397. - Allow to have custom bucket name and region (florian.lambert@enovance.com)
  6398. - Add inventory example for logrotate_scripts (abutcher@redhat.com)
  6399. - Minor readme cleanup for Bug 1271566 (bleanhar@redhat.com)
  6400. - fix template trigger calc (jdiaz@redhat.com)
  6401. - Configure logrotate on atomic. (abutcher@redhat.com)
  6402. - Comparing zbx_host interfaces and removing duplicate hostgroup_names
  6403. (kwoodson@redhat.com)
  6404. - Dockerfile: Require pyOpenSSL (gscrivan@redhat.com)
  6405. - replace yum with dnf (spartacus06@gmail.com)
  6406. - Install cockpit, logrotate and fluentd unless host is atomic.
  6407. (abutcher@redhat.com)
  6408. - zabbix: added the skydns items and triggers (mwoodson@redhat.com)
  6409. - fix pkg_version (spinolacastro@gmail.com)
  6410. - Expose data_dir (spinolacastro@gmail.com)
  6411. - Fix checking for update package availability (nikolai@prokoschenko.de)
  6412. - Fix oo_pretty_print_cluster following the renaming of `env` into `clusterid`
  6413. (lhuard@amadeus.com)
  6414. - Ensure openssl present for etcd_ca (jdetiber@redhat.com)
  6415. - Update Docs and test for testing ansible version (jdetiber@redhat.com)
  6416. - Add Nuage support to openshift ansible (vishpat@gmail.com)
  6417. - Updating for host monitoring HA masters (kwoodson@redhat.com)
  6418. - adhoc s3 registry - add auth part in the registry config sample
  6419. (gael.lambert@enovance.com)
  6420. - Move the `is_atomic` check from `update_repos_and_packages.yml` to
  6421. `rhel_subscribe` (lhuard@amadeus.com)
  6422. - Increase OpenStack stack creation/deletion timeout (lhuard@amadeus.com)
  6423. * Mon Jan 25 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.36-1
  6424. - Fixing awsutil to support aliases and v3 (kwoodson@redhat.com)
  6425. - Fail when master restart playbook finds no active masters rather than any
  6426. failed masters. (abutcher@redhat.com)
  6427. - Skipping any symlinks for the yaml validation check (kwoodson@redhat.com)
  6428. - Added template for config loop. (twiest@redhat.com)
  6429. - Test validate_pcs_cluster input is basestring instead of str.
  6430. (abutcher@redhat.com)
  6431. - Fix error when oo_masters_to_config is empty (jdetiber@redhat.com)
  6432. - Update inventory examples for console customization (spinolacastro@gmail.com)
  6433. - Expose console config for customization (spinolacastro@gmail.com)
  6434. - oso_host_monitoring: added environment as a var to the host monitoring
  6435. systemd script (mwoodson@redhat.com)
  6436. - Check master certificates during upgrade. (abutcher@redhat.com)
  6437. - Use haproxy frontend port for os_firewall. (abutcher@redhat.com)
  6438. - Fix native master api sysconfig. (abutcher@redhat.com)
  6439. - Enable kubernetes master config of podEvictionTimeout from ansible
  6440. (jstuever@redhat.com)
  6441. - Fix wrapper pathing for non-root user install. (abutcher@redhat.com)
  6442. - Remove camel case for bin/cluster addNodes (jdetiber@redhat.com)
  6443. - Update cluster_hosts.yml for cloud providers (jdetiber@redhat.com)
  6444. - Removing ruby scripts and replacing with python. (kwoodson@redhat.com)
  6445. - Fixed a logic bug and yaml load (kwoodson@redhat.com)
  6446. - Fixing yaml validation in python. Inputs behave differently as does glob
  6447. (kwoodson@redhat.com)
  6448. - oso_monitoring: add the zabbix libs (mwoodson@redhat.com)
  6449. - Removing removing scripts and moving to python. (kwoodson@redhat.com)
  6450. - add ability to disable ztriggers and disable new container dns check
  6451. (jdiaz@redhat.com)
  6452. - Remove default disable of SDN for GCE (jdetiber@redhat.com)
  6453. - Fix hardcoded api_port in openshift_master_cluster (jdetiber@redhat.com)
  6454. - Use local address for loopback kubeconfig (jdetiber@redhat.com)
  6455. - consolidate steps and cleanup template dir (jdetiber@redhat.com)
  6456. - v3_0_to_v3_1_upgrade: Remove is_atomic check for upgrades
  6457. (smunilla@redhat.com)
  6458. - v3_0_to_v3_1_upgrade: Copy tasks rather than including from the playbook
  6459. (smunilla@redhat.com)
  6460. - v3_0_to_v3_1_upgrade: Install storage packages (smunilla@redhat.com)
  6461. - Controllers_port and firewall rules (spinolacastro@gmail.com)
  6462. - Fix bind address/port when isn't default (spinolacastro@gmail.com)
  6463. - Add ability to disable os_firewall (jdetiber@redhat.com)
  6464. * Mon Jan 18 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.35-1
  6465. - added the lib_timedate role (mwoodson@redhat.com)
  6466. - added chrony (mwoodson@redhat.com)
  6467. - added oso_moniotoring tools role (mwoodson@redhat.com)
  6468. - Improve pacemaker 'is-active' check. (abutcher@redhat.com)
  6469. * Mon Jan 18 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.34-1
  6470. - clean up too-many-branches / logic (jdiaz@redhat.com)
  6471. - atomic-openshift-installer: add containerized to inventory
  6472. (smunilla@redhat.com)
  6473. - Add 'unknown' to possible output for the is-active check.
  6474. (abutcher@redhat.com)
  6475. - Fix cluster_method conditional in master restart playbook.
  6476. (abutcher@redhat.com)
  6477. - Use IdentityFile instead of PrivateKey (donovan.muller@gmail.com)
  6478. - atomic-openshift-installer: Remove containerized install for 3.0
  6479. (smunilla@redhat.com)
  6480. - Host group should be OSEv3 not OSv3 (donovan.muller@gmail.com)
  6481. - Remove pause after haproxy start (abutcher@redhat.com)
  6482. - Ensure nfs-utils installed for non-atomic hosts. (abutcher@redhat.com)
  6483. * Fri Jan 15 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.33-1
  6484. - Configure nodes which are also masters prior to nodes in containerized
  6485. install. (abutcher@redhat.com)
  6486. - Call attention to openshift_master_rolling_restart_mode variable in restart
  6487. prompt. (abutcher@redhat.com)
  6488. - Added anchors for rules in style_guide.adoc in order to make it easier to
  6489. reference specific rules in PRs. (twiest@redhat.com)
  6490. - Update ec2.ini (jdetiber@redhat.com)
  6491. * Thu Jan 14 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.32-1
  6492. - Uninstall remove containerized wrapper and symlinks (abutcher@redhat.com)
  6493. * Thu Jan 14 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.31-1
  6494. - Check api prior to starting node. (abutcher@redhat.com)
  6495. - added anchors (twiest@redhat.com)
  6496. * Wed Jan 13 2016 Joel Diaz <jdiaz@redhat.com> 3.0.30-1
  6497. - Add -A and detail --v3 flags
  6498. * Wed Jan 13 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.29-1
  6499. - 3.1.1 upgrade playbook (bleanhar@redhat.com)
  6500. - Updated help menu for v3 flag (kwoodson@redhat.com)
  6501. - Add wait in between api and controllers start for native ha.
  6502. (abutcher@redhat.com)
  6503. - atomic-openshift-installer: Error handling for unicode hostnames
  6504. (smunilla@redhat.com)
  6505. - Update api verification. (abutcher@redhat.com)
  6506. - Add a Verify API Server handler that waits for the API server to become
  6507. available (sdodson@redhat.com)
  6508. - Add -A parameter to forward ssh agent (jdiaz@redhat.com)
  6509. - Validate pacemaker cluster members. (abutcher@redhat.com)
  6510. - Removed atomic host check (kwoodson@redhat.com)
  6511. - Add is_containerized inputs to nosetests. (abutcher@redhat.com)
  6512. - Add wait for API before starting controllers w/ native ha install.
  6513. (abutcher@redhat.com)
  6514. - Fix for to_padded_yaml filter (jdetiber@redhat.com)
  6515. - - sqashed to one commit (llange@redhat.com)
  6516. - Switch to using hostnamectl as it works on atomic and rhel7
  6517. (sdodson@redhat.com)
  6518. - Update rolling restart playbook for pacemaker support. Replace fail with a
  6519. warn and prompt if running ansible from a host that will be rebooted. Re-
  6520. organize playbooks. (abutcher@redhat.com)
  6521. - Implement simple master rolling restarts. (dgoodwin@redhat.com)
  6522. - re-enable containerize installs (sdodson@redhat.com)
  6523. - Set portal net in master playbook (jdetiber@redhat.com)
  6524. - Set the cli image to match osm_image in openshift_cli role
  6525. (sdodson@redhat.com)
  6526. - atomic-openshift-installer: Populate new_nodes group (smunilla@redhat.com)
  6527. - Always pull docker images (sdodson@redhat.com)
  6528. * Mon Jan 11 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.28-1
  6529. - added the rhe7-host-monitoring service file (mwoodson@redhat.com)
  6530. - Fixing tab completion for latest metadata changes (kwoodson@redhat.com)
  6531. - Removing some internal hostnames (bleanhar@redhat.com)
  6532. - Fixing tab completion for latest metadata changes (kwoodson@redhat.com)
  6533. - Make bin/cluster able to spawn OSE 3.1 clusters (lhuard@amadeus.com)
  6534. - oso_host_monitoring role: removed the f22 and zagg client, replaced it with
  6535. oso-rhel7-host-monitoring container (mwoodson@redhat.com)
  6536. * Fri Jan 08 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.27-1
  6537. - Update to metadata tooling. (kwoodson@redhat.com)
  6538. - Fix VM drive cleanup during terminate on libvirt (lhuard@amadeus.com)
  6539. * Fri Jan 08 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.26-1
  6540. - Bug 1296388 - fixing typo (bleanhar@redhat.com)
  6541. * Thu Jan 07 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.25-1
  6542. - Bug 1296388 - The playbook still configure ManageIQ when
  6543. openshift_use_manageiq is false (bleanhar@redhat.com)
  6544. - Add a banner to CLI wrapper instructing users that it's only for
  6545. bootstrapping (sdodson@redhat.com)
  6546. - Rename env into clusterid and add environment in the OpenStack VMs tags
  6547. (lhuard@amadeus.com)
  6548. - Fix terminate.yml on OpenStack (lhuard@amadeus.com)
  6549. - Install gluster and ceph packages when containerized but not atomic
  6550. (sdodson@redhat.com)
  6551. - Update openshift_facts config_base for Online deployments (whearn@redhat.com)
  6552. - Fix multi-word arguments & cli wrapper stdin plumbing (sdodson@redhat.com)
  6553. - Improve 3.1/1.1 upgrade check (jdetiber@redhat.com)
  6554. * Thu Jan 07 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.24-1
  6555. - Setting relative paths in the upgrade playbooks wasn't working
  6556. (bleanhar@redhat.com)
  6557. * Wed Jan 06 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.23-1
  6558. - Move extra secret validations into openshift_facts. (abutcher@redhat.com)
  6559. - Remove not is_containerized restriction on storage plugin includes.
  6560. (abutcher@redhat.com)
  6561. - We can't enable manageiq for installations less than OSE 3.1 or Origin 1.1
  6562. (bleanhar@redhat.com)
  6563. - Fix RHN subscription by explicitly attaching to the right pool
  6564. (lhuard@amadeus.com)
  6565. - openshift_facts validation (abutcher@redhat.com)
  6566. - Secrets validation. (abutcher@redhat.com)
  6567. - Clean up idempotency issues with session secrets. (abutcher@redhat.com)
  6568. * Wed Jan 06 2016 Kenny Woodson <kwoodson@redhat.com> 3.0.22-1
  6569. - playbook for restarting SDN (jdiaz@redhat.com)
  6570. - Stop haproxy and remove package during uninstall. (abutcher@redhat.com)
  6571. - Group name as per hosts.origin.example (donovan.muller@gmail.com)
  6572. - I believe the ami id changed since the initial documentation was created for
  6573. AWS deployment (rcook@redhat.com)
  6574. * Tue Jan 05 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.21-1
  6575. - Fix osm_controller_args and osm_api_server_args settings.
  6576. (abutcher@redhat.com)
  6577. - Fix error in byo cluster_hosts.yml (jdetiber@redhat.com)
  6578. - Cleanup and fixes for cluster_id change (jdetiber@redhat.com)
  6579. - Fix typo in etcd service status fact. (abutcher@redhat.com)
  6580. - Removing environment and env tags. (kwoodson@redhat.com)
  6581. - Add node kubelet args to inventory examples. (abutcher@redhat.com)
  6582. - Adding ManageIQ service account by default (efreiber@redhat.com)
  6583. - Fixes typo assigning docker_service_status_changed which leads to
  6584. misinterpretation in handler. (eric.mountain@amadeus.com)
  6585. - Fix restart handlers. (abutcher@redhat.com)
  6586. - Remove lb from docker hosts. (abutcher@redhat.com)
  6587. - Install iptables, iptables-services when not is_aotmic (sdodson@redhat.com)
  6588. - Install all xpaas streams when enabled (sdodson@redhat.com)
  6589. - add the necessary URLs for logging and metrics
  6590. (git001@users.noreply.github.com)
  6591. - Link to Tito Home Page is Broken (lloy0076@adam.com.au)
  6592. - Conditionalize for 3.1.1/1.1.1 (abutcher@redhat.com)
  6593. - Use notify for workaround controllers unit. (abutcher@redhat.com)
  6594. - change dns triggers to average (jdiaz@redhat.com)
  6595. - add item/trigger for dns tests on all currently running containers
  6596. (jdiaz@redhat.com)
  6597. - Add jboss-fuse/application-templates/fis-image-streams.json
  6598. (sdodson@redhat.com)
  6599. - atomic-openshift-installer: Fix broken nosetest (smunilla@redhat.com)
  6600. - Update from jboss-openshift/application-templates ose-v1.2.0-1
  6601. (sdodson@redhat.com)
  6602. - fix logic to tolerate occasional failures (jdiaz@redhat.com)
  6603. - Clean up versions.sh (sdodson@redhat.com)
  6604. - change ovs mount to /var/run/openvswitch will not require a container restart
  6605. if openvswitch service is restarted (jdiaz@redhat.com)
  6606. - split zagg.server.processor.errors into separate heartbeat and metrics error
  6607. items (needed since the scripts are split now). (twiest@redhat.com)
  6608. - quick installer tests (smunilla@redhat.com)
  6609. - atomic-openshift-installer: Remove HA hint for 3.0 install
  6610. (smunilla@redhat.com)
  6611. - Add some guards to wait for images to be pulled before moving on
  6612. (sdodson@redhat.com)
  6613. - Install httpd-tools when not is_atomic (sdodson@redhat.com)
  6614. - Properly set use_flannel fact (sbaubeau@redhat.com)
  6615. - Fix containerized variable (sdodson@redhat.com)
  6616. - Skip yum/dnf ops when is_containerized (sdodson@redhat.com)
  6617. - Move all docker config into openshift_docker to minimize docker restarts
  6618. (sdodson@redhat.com)
  6619. - Create nfs host group with registry volume attachment. (abutcher@redhat.com)
  6620. - Add openshift_cli role (sdodson@redhat.com)
  6621. - pull docker images only if not already present (jdetiber@redhat.com)
  6622. - fixes (jdetiber@redhat.com)
  6623. - Containerization work by @sdodson (sdodson@redhat.com)
  6624. - Initial containerization work from @ibotty (tob@butter.sh)
  6625. - Add zabbix values to track docker container DNS results (jdiaz@redhat.com)
  6626. - Fix registry modification for new deployment types. (dgoodwin@redhat.com)
  6627. - Updates to ohi to pull cache if specified. Also require version
  6628. (kwoodson@redhat.com)
  6629. - Zabbix: added trigger to monitor app create over the last hour
  6630. (mwoodson@redhat.com)
  6631. - added 'Template Zagg Server' (twiest@redhat.com)
  6632. - Fixes typo when setting facts to record whether master/node has been
  6633. restarted already, to decide whether notify handler should do so or not.
  6634. Currently, this causes random SDN network setup failures as openshift-node
  6635. gets restarted while the setup script is running, and the subsequent start
  6636. fails to configure the SDN because it thinks it's already done.
  6637. (eric.mountain@amadeus.com)
  6638. - Change controllers service type to simple. (abutcher@redhat.com)
  6639. - Updating env-host-type to host patterns (kwoodson@redhat.com)
  6640. - Add note that Fedora 23+ is acceptable deployment target for origin
  6641. (admiller@redhat.com)
  6642. - Enforce connection: local and become: no on all localhost plays
  6643. (jdetiber@redhat.com)
  6644. - Use join for the uncompress command. (jsteffan@fedoraproject.org)
  6645. - Update for latest CentOS-7-x86_64-GenericCloud. - Use xz compressed image -
  6646. Update sha256 for new image - Update docs to reflect new settings
  6647. (jsteffan@fedoraproject.org)
  6648. * Thu Dec 10 2015 Thomas Wiest <twiest@redhat.com> 3.0.20-1
  6649. - Revert "Automatic commit of package [openshift-ansible] release [3.0.20-1]."
  6650. (twiest@redhat.com)
  6651. - Automatic commit of package [openshift-ansible] release [3.0.20-1].
  6652. (twiest@redhat.com)
  6653. - Install base package in openshift_common for version facts
  6654. (abutcher@redhat.com)
  6655. - Make the install of openshift_examples optional (jtslear@gmail.com)
  6656. - add support for remote command actions no support for anything but custom
  6657. scripts at this time (jdiaz@redhat.com)
  6658. - Remove yum / dnf duplication (sdodson@redhat.com)
  6659. - Remove hacluster user during uninstall. (abutcher@redhat.com)
  6660. - Simplify session secrets overrides. (abutcher@redhat.com)
  6661. - Squash pcs install into one task. (abutcher@redhat.com)
  6662. - Bump ansible requirement to 1.9.4 (sdodson@redhat.com)
  6663. * Wed Dec 09 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.19-1
  6664. - Fix version dependent image streams (sdodson@redhat.com)
  6665. - atomic-openshift-installer: Error handling on yaml loading
  6666. (smunilla@redhat.com)
  6667. - Betterize AWS readme (jtslear@gmail.com)
  6668. * Tue Dec 08 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.18-1
  6669. - Pass in and use first_master_ip as dnsIP for pre 3.1 nodes.
  6670. (abutcher@redhat.com)
  6671. - Fix delete state (jdiaz@redhat.com)
  6672. - Require pyOpenSSL (sdodson@redhat.com)
  6673. - Update sync db-templates, image-streams, and quickstart-templates
  6674. (sdodson@redhat.com)
  6675. - Clarify the preflight port check output (sdodson@redhat.com)
  6676. - Fix missing dependency version locking (sdodson@redhat.com)
  6677. * Tue Dec 08 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.17-1
  6678. - Improving output when gathering facts (bleanhar@redhat.com)
  6679. - Bug 1287977 - Incorrect check output from atomic-openshift-installer when
  6680. working with preconfigured load balancer (bleanhar@redhat.com)
  6681. - Add unique AEP, OSE, and Origin BYO inventories (sdodson@redhat.com)
  6682. - bring the docker udev workaround into openshift-ansible.git
  6683. (jdiaz@redhat.com)
  6684. - Zabbix: put in a note about trigger prototype dependency
  6685. (mwoodson@redhat.com)
  6686. - Zabbix: added dependency for inode disk check (mwoodson@redhat.com)
  6687. - Zabbix: added dependency for disk check (mwoodson@redhat.com)
  6688. - zabbix: removed ethernet graphs (mwoodson@redhat.com)
  6689. - Zabbix: added trigger dependencies to certain master checks
  6690. (mwoodson@redhat.com)
  6691. - ManageIQ Service Account: added role for ManageIQ service account
  6692. (efreiber@redhat.com)
  6693. - added the pv zabbix keys (mwoodson@redhat.com)
  6694. - Refactor dns options and facts. (abutcher@redhat.com)
  6695. - Fix openshift_facts playbook for yum/dnf changes (jdetiber@redhat.com)
  6696. - Configured master count should be 1 for pacemaker ha. (abutcher@redhat.com)
  6697. - Fedora changes: (admiller@redhat.com)
  6698. - Centralize etcd/schedulability logic for each host. (dgoodwin@redhat.com)
  6699. - added upgrade playbook for online (sedgar@redhat.com)
  6700. - Improved installation summary. (dgoodwin@redhat.com)
  6701. - Fix kubernetes service ip gathering. (abutcher@redhat.com)
  6702. - added docker registry cluster check (mwoodson@redhat.com)
  6703. - Add warning for HA deployments with < 3 dedicated nodes.
  6704. (dgoodwin@redhat.com)
  6705. - Cleanup more schedulable typos. (dgoodwin@redhat.com)
  6706. - Fix validation for BasicAuthPasswordIdentityProvider (tschan@puzzle.ch)
  6707. - Fix ec2 instance type lookups (jdetiber@redhat.com)
  6708. - remove debug logging from scc/privileged patch command (jdetiber@redhat.com)
  6709. - Set api version for oc commands (jdetiber@redhat.com)
  6710. - 3.1 upgrade - use --api-version for patch commands (jdetiber@redhat.com)
  6711. - Fix bug when warning on no dedicated nodes. (dgoodwin@redhat.com)
  6712. - Suggest dedicated nodes for an HA deployment. (dgoodwin@redhat.com)
  6713. - Error out if no load balancer specified. (dgoodwin@redhat.com)
  6714. - Adjust requirement for 3 masters for HA deployments. (dgoodwin@redhat.com)
  6715. - Fixing 'unscheduleable' typo (bleanhar@redhat.com)
  6716. - Update IMAGE_PREFIX and IMAGE_VERSION values in hawkular template
  6717. (nakayamakenjiro@gmail.com)
  6718. - Improved output when re-running after editing config. (dgoodwin@redhat.com)
  6719. - Print a system summary after adding each. (dgoodwin@redhat.com)
  6720. - Text improvements for host specification. (dgoodwin@redhat.com)
  6721. - Assert etcd section written for HA installs. (dgoodwin@redhat.com)
  6722. - Breakout a test fixture to reduce module size. (dgoodwin@redhat.com)
  6723. - Pylint touchups. (dgoodwin@redhat.com)
  6724. - Trim assertions in HA testing. (dgoodwin@redhat.com)
  6725. - Test unattended HA quick install. (dgoodwin@redhat.com)
  6726. - Don't prompt to continue during unattended installs. (dgoodwin@redhat.com)
  6727. - Block re-use of master/node as load balancer in attended install.
  6728. (dgoodwin@redhat.com)
  6729. - Add -q flag to remove unwantend output (such as mirror and cache information)
  6730. (urs.breu@ergon.ch)
  6731. - Uninstall: only restart docker on node hosts. (abutcher@redhat.com)
  6732. - Explicitly set schedulable when masters == nodes. (dgoodwin@redhat.com)
  6733. - Use admin.kubeconfig for get svc ip. (abutcher@redhat.com)
  6734. - Point enterprise metrics at registry.access.redhat.com/openshift3/metrics-
  6735. (sdodson@redhat.com)
  6736. - Make sure that OpenSSL is installed before use (fsimonce@redhat.com)
  6737. - fixes for installer wrapper scaleup (jdetiber@redhat.com)
  6738. - addtl aws fixes (jdetiber@redhat.com)
  6739. - Fix failure when seboolean not present (jdetiber@redhat.com)
  6740. - fix addNodes.yml (jdetiber@redhat.com)
  6741. - more aws support for scaleup (jdetiber@redhat.com)
  6742. - start of aws scaleup (jdetiber@redhat.com)
  6743. - Improve scaleup playbook (jdetiber@redhat.com)
  6744. - Update openshift_repos to refresh package cache on changes
  6745. (jdetiber@redhat.com)
  6746. - Add etcd nodes management in OpenStack (lhuard@amadeus.com)
  6747. * Tue Nov 24 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.16-1
  6748. - Silencing pylint branch errors for now for the atomic-openshift-installer
  6749. harness (bleanhar@redhat.com)
  6750. - Properly setting scheduleability for HA Master scenarios
  6751. (bleanhar@redhat.com)
  6752. - added graphs (mwoodson@redhat.com)
  6753. - Rework setting of hostname (jdetiber@redhat.com)
  6754. - Fixed a bug in the actions. It now supports changing opconditions
  6755. (kwoodson@redhat.com)
  6756. - Conditionally set the nodeIP (jdetiber@redhat.com)
  6757. - Bug 1284991 - "atomic-openshift-installer uninstall" error when configuration
  6758. file is missing. (bleanhar@redhat.com)
  6759. - Avoid printing the master and node totals in the add-a-node scenario
  6760. (bleanhar@redhat.com)
  6761. - Fixing tests for quick_ha (bleanhar@redhat.com)
  6762. - Removing a debug line (bleanhar@redhat.com)
  6763. - atomic-openshift-installer: Fix lint issue (smunilla@redhat.com)
  6764. - Handling preconfigured load balancers (bleanhar@redhat.com)
  6765. - atomic-openshift-installer: Rename ha_proxy (smunilla@redhat.com)
  6766. - atomic-openshift-installer: Reverse version and host collection
  6767. (smunilla@redhat.com)
  6768. - cli_installer_tests: Add test for unattended quick HA (smunilla@redhat.com)
  6769. - Breakup inventory writing (smunilla@redhat.com)
  6770. - Enforce 1 or 3 masters (smunilla@redhat.com)
  6771. - Add interactive test (smunilla@redhat.com)
  6772. - atomic-openshift-installer: HA for quick installer (smunilla@redhat.com)
  6773. - Adding zbx_graph support (kwoodson@redhat.com)
  6774. - Modified step params to be in order when passed as a list
  6775. (kwoodson@redhat.com)
  6776. - Add serviceAccountConfig.masterCA during 3.1 upgrade (jdetiber@redhat.com)
  6777. - Use the identity_providers from openshift_facts instead of always using the
  6778. inventory variable (jdetiber@redhat.com)
  6779. - Refactor master identity provider configuration (jdetiber@redhat.com)
  6780. * Fri Nov 20 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.15-1
  6781. - Fixing clone group functionality. Also separating extra_vars from
  6782. extra_groups (kwoodson@redhat.com)
  6783. - Check the end result on bad config file (smunilla@redhat.com)
  6784. - Add some tests for a bad config (smunilla@redhat.com)
  6785. - atomic-openshift-installer: connect_to error handling (smunilla@redhat.com)
  6786. - atomic-openshift-installer: pylint fixes (smunilla@redhat.com)
  6787. - Replace map with oo_collect to support python-jinja2 <2.7
  6788. (abutcher@redhat.com)
  6789. - Making the uninstall playbook more flexible (bleanhar@redhat.com)
  6790. - Install version dependent image streams for v1.0 and v1.1
  6791. (sdodson@redhat.com)
  6792. - Do not update the hostname (jdetiber@redhat.com)
  6793. - Pylint fix for long line in cli docstring. (dgoodwin@redhat.com)
  6794. - Default to installing OSE 3.1 instead of 3.0. (dgoodwin@redhat.com)
  6795. - Fix tests on systems with openshift-ansible rpms installed.
  6796. (dgoodwin@redhat.com)
  6797. * Thu Nov 19 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.14-1
  6798. - added metric items to zabbix for openshift online (mwoodson@redhat.com)
  6799. - Updating usergroups to accept users (kwoodson@redhat.com)
  6800. - Differentiate machine types on GCE (master and nodes)
  6801. (romain.dossin@amadeus.com)
  6802. - Uninstall - Remove systemd wants file for node (jdetiber@redhat.com)
  6803. - ec2 - force !requiretty for ssh_user (jdetiber@redhat.com)
  6804. - small tweaks for adding docker volume for aws master hosts
  6805. (jdetiber@redhat.com)
  6806. - Created role to deploy ops host monitoring (jdiaz@redhat.com)
  6807. - Update certificate paths when 'names' key is provided. (abutcher@redhat.com)
  6808. - add a volume on master host, in AWS provisioning (chengcheng.mu@amadeus.com)
  6809. - First attempt at adding web scenarios (kwoodson@redhat.com)
  6810. - Use field numbers for all formats in bin/cluster for python 2.6
  6811. (abutcher@redhat.com)
  6812. - atomic-openshift-installer: Correct single master case (smunilla@redhat.com)
  6813. - added copr-openshift-ansible releaser, removed old rel-eng stuff.
  6814. (twiest@redhat.com)
  6815. - changed counter -> count (mwoodson@redhat.com)
  6816. - Updating zbx_item classes to support data types for bool.
  6817. (kwoodson@redhat.com)
  6818. - Fix ec2 instance type override (jdetiber@redhat.com)
  6819. - updated my check to support the boolean data type (mwoodson@redhat.com)
  6820. - Add additive_facts_to_overwrite instead of overwriting all additive_facts
  6821. (abutcher@redhat.com)
  6822. - added healthz check and more pod count checks (mwoodson@redhat.com)
  6823. - updating to the latest ec2.py (and re-patching with our changes).
  6824. (twiest@redhat.com)
  6825. - atomic-openshift-installer: Temporarily restrict to single master
  6826. (smunilla@redhat.com)
  6827. - openshift-ansible: Correct variable (smunilla@redhat.com)
  6828. - Refactor named certificates. (abutcher@redhat.com)
  6829. - atomic-openshift-utils: Version lock playbooks (smunilla@redhat.com)
  6830. - Add the native ha services and configs to uninstall (jdetiber@redhat.com)
  6831. - Bug 1282336 - Add additional seboolean for gluster (jdetiber@redhat.com)
  6832. - Raise lifetime to 2 weeks for dynamic AWS items (jdiaz@redhat.com)
  6833. - bin/cluster fix python 2.6 issue (jdetiber@redhat.com)
  6834. - cluster list: break host types by subtype (lhuard@amadeus.com)
  6835. - README_AWS: Add needed dependency (c.witt.1900@gmail.com)
  6836. - Fix invalid sudo command test (takayoshi@gmail.com)
  6837. - Docs: Fedora: Add missing dependencies and update to dnf. (public@omeid.me)
  6838. - Gate upgrade steps for 3.0 to 3.1 upgrade (jdetiber@redhat.com)
  6839. - added the tito and copr_cli roles (twiest@redhat.com)
  6840. - pylint openshift_facts (jdetiber@redhat.com)
  6841. - Update etcd default facts setting (jdetiber@redhat.com)
  6842. - Update master facts prior to upgrading incase facts are missing.
  6843. (abutcher@redhat.com)
  6844. - pre-upgrade-check: differentiates between port and targetPort in output
  6845. (smilner@redhat.com)
  6846. - Better structure the output of the list playbook (lhuard@amadeus.com)
  6847. - Add the sub-host-type tag to the libvirt VMs (lhuard@amadeus.com)
  6848. - atomic-openshift-installer: Update nopwd sudo test (smunilla@redhat.com)
  6849. - Fix pylint import errors for utils/test/. (dgoodwin@redhat.com)
  6850. - atomic-openshift-installer: Update prompts and help messages
  6851. (smunilla@redhat.com)
  6852. - Dependencies need to be added when a create occurs on SLA object.
  6853. (kwoodson@redhat.com)
  6854. - Test additions for cli_installer:get_hosts_to_install_on
  6855. (bleanhar@redhat.com)
  6856. - adding itservice (kwoodson@redhat.com)
  6857. - remove netaddr dependency (tob@butter.sh)
  6858. - Add pyOpenSSL to dependencies for Fedora. (public@omeid.me)
  6859. - Vagrant RHEL registration cleanup (pep@redhat.com)
  6860. - RH subscription: optional satellite and pkg update (pep@redhat.com)
  6861. * Tue Nov 17 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.13-1
  6862. - The aep3 images changed locations. (bleanhar@redhat.com)
  6863. - atomic-openshift-installer: Correct single master case (smunilla@redhat.com)
  6864. - atomic-openshift-installer: Temporarily restrict to single master
  6865. (smunilla@redhat.com)
  6866. * Wed Nov 11 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.12-1
  6867. - Sync with the latest image streams (sdodson@redhat.com)
  6868. * Wed Nov 11 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.11-1
  6869. - Migrate xpaas content from pre v1.1.0 (sdodson@redhat.com)
  6870. - Import latest xpaas templates and image streams (sdodson@redhat.com)
  6871. * Wed Nov 11 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.10-1
  6872. - Fix update error for templates that didn't previously exist
  6873. (jdetiber@redhat.com)
  6874. - General cleanup of v3_0_to_v3_1/upgrade.yml (jdetiber@redhat.com)
  6875. - Add zabbix pieces to hold AWS S3 bucket stats (jdiaz@redhat.com)
  6876. - add ansible dep to vagrant doc (jdetiber@redhat.com)
  6877. - oo_filter: don't fail when attribute is not defined (tob@butter.sh)
  6878. * Wed Nov 11 2015 Brenton Leanhardt <bleanhar@redhat.com> 3.0.9-1
  6879. - Refactor upgrade playbook(s) (jdetiber@redhat.com)
  6880. * Tue Nov 10 2015 Scott Dodson <sdodson@redhat.com> 3.0.8-1
  6881. - Add origin-clients to uninstall playbook. (abutcher@redhat.com)
  6882. - examples: include logging and metrics infrastructure (lmeyer@redhat.com)
  6883. - Add separate step to enable services during upgrade. (dgoodwin@redhat.com)
  6884. - Update tests now that cli is not asking for rpm/container install
  6885. (smunilla@redhat.com)
  6886. - atomic-openshift-installer: Remove question for container install
  6887. (smunilla@redhat.com)
  6888. - Remove references to multi_ec2.py (jdetiber@redhat.com)
  6889. - 1279746: Fix leftover disabled features line in config template.
  6890. (dgoodwin@redhat.com)
  6891. - 1279734: Ensure services are enabled after upgrade. (dgoodwin@redhat.com)
  6892. - Fix missing etcd_data_dir bug. (dgoodwin@redhat.com)
  6893. - Package the default ansible.cfg with atomic-openshift-utils.
  6894. (dgoodwin@redhat.com)
  6895. - Add ldap auth identity provider to example inventory. (abutcher@redhat.com)
  6896. - Read etcd data dir from appropriate config file. (dgoodwin@redhat.com)
  6897. - atomic-openshift-installer: Generate inventory off hosts_to_run_on
  6898. (smunilla@redhat.com)
  6899. - Various fixes related to connect_to (bleanhar@redhat.com)
  6900. - Remove upgrade playbook restriction on 3.0.2. (dgoodwin@redhat.com)
  6901. - Conditionals for flannel etcd client certs. (abutcher@redhat.com)
  6902. - New `iptablesSyncPeriod` field in node configuration (abutcher@redhat.com)
  6903. - Fix indentation on when (jdetiber@redhat.com)
  6904. - Bug 1278863 - Error using openshift_pkg_version (jdetiber@redhat.com)
  6905. - more cleanup of names (mwoodson@redhat.com)
  6906. - Missing conditionals for api/controller sysconfig. (abutcher@redhat.com)
  6907. - Updating the atomic-openshift-isntaller local connection logic for the
  6908. connect_to addition. (bleanhar@redhat.com)
  6909. - cleaned up network checks (mwoodson@redhat.com)
  6910. - Minor upgrade improvements. (dgoodwin@redhat.com)
  6911. - Wait for cluster to recover after pcs resource restart. (abutcher@redhat.com)
  6912. - Bug 1278245 - Failed to add node to existing env using atomic-openshift-
  6913. installer (bleanhar@redhat.com)
  6914. - remove debug statement (jdetiber@redhat.com)
  6915. - Fix removal of kubernetesMasterConfig.apiLevels (jdetiber@redhat.com)
  6916. - atomic-openshift-installer: Better specification of ansible connection point
  6917. (smunilla@redhat.com)
  6918. - Fix issues related to upgrade packages being unavailable
  6919. (jdetiber@redhat.com)
  6920. - added network checks. also updated item prototype code to support more
  6921. (mwoodson@redhat.com)
  6922. - Fix data_dir for 3.0 deployments (jdetiber@redhat.com)
  6923. - Fix apiLevels modifications (jdetiber@redhat.com)
  6924. - Fix creation of origin symlink when dir already exists. (dgoodwin@redhat.com)
  6925. - apiLevel changes (jdetiber@redhat.com)
  6926. - Write new config to disk after successful upgrade. (dgoodwin@redhat.com)
  6927. - Fix pylint errors with getting hosts to run on. (dgoodwin@redhat.com)
  6928. - Remove v1beta3 by default for kube_nfs_volumes (jdetiber@redhat.com)
  6929. - Add pre-upgrade script to be run on first master. (dgoodwin@redhat.com)
  6930. - Start to handle pacemaker ha during upgrade (abutcher@redhat.com)
  6931. - Fix lb group related errors (jdetiber@redhat.com)
  6932. - Fix file check conditional. (abutcher@redhat.com)
  6933. - Don't check for certs in data_dir just raise when they can't be found. Fix
  6934. typo. (abutcher@redhat.com)
  6935. - exclude atomic-openshift-installer from bin subpackage (tdawson@redhat.com)
  6936. - add master_hostnames definition for upgrade (jdetiber@redhat.com)
  6937. - Additional upgrade enhancements (jdetiber@redhat.com)
  6938. - Handle backups for separate etcd hosts if necessary. (dgoodwin@redhat.com)
  6939. - Further upgrade improvements (jdetiber@redhat.com)
  6940. - Upgrade improvements (dgoodwin@redhat.com)
  6941. - Bug 1278243 - Confusing prompt from atomic-openshift-installer
  6942. (bleanhar@redhat.com)
  6943. - Bug 1278244 - Previously there was no way to add a node in unattended mode
  6944. (bleanhar@redhat.com)
  6945. - Revert to defaults (abutcher@redhat.com)
  6946. - Bug 1278244 - Incorrect node information gathered by atomic-openshift-
  6947. installer (bleanhar@redhat.com)
  6948. - atomic-openshift-installer's unattended mode wasn't work with --force for all
  6949. cases (bleanhar@redhat.com)
  6950. - Making it easier to use pre-release content (bleanhar@redhat.com)
  6951. - The uninstall playbook needs to remove /run/openshift-sdn
  6952. (bleanhar@redhat.com)
  6953. - Various HA changes for pacemaker and native methods. (abutcher@redhat.com)
  6954. - Bug 1274201 - Fixing non-root installations if using a local connection
  6955. (bleanhar@redhat.com)
  6956. - Bug 1274201 - Fixing sudo non-interactive test (bleanhar@redhat.com)
  6957. - Bug 1277592 - SDN MTU has hardcoded default (jdetiber@redhat.com)
  6958. - Atomic Enterprise/OpenShift Enterprise merge update (jdetiber@redhat.com)
  6959. - fix dueling controllers - without controllerLeaseTTL set in config, multiple
  6960. controllers will attempt to start (jdetiber@redhat.com)
  6961. - default to source persistence for haproxy (jdetiber@redhat.com)
  6962. - hardcode openshift binaries for now (jdetiber@redhat.com)
  6963. - more tweaks (jdetiber@redhat.com)
  6964. - more tweaks (jdetiber@redhat.com)
  6965. - additional ha related updates (jdetiber@redhat.com)
  6966. - additional native ha changes (abutcher@redhat.com)
  6967. - Start of true master ha (jdetiber@redhat.com)
  6968. - Atomic Enterprise related changes. (avagarwa@redhat.com)
  6969. - Remove pacemaker bits. (abutcher@redhat.com)
  6970. - Override hosts deployment_type fact for version we're upgrading to.
  6971. (dgoodwin@redhat.com)
  6972. - Pylint fixes for config upgrade module. (dgoodwin@redhat.com)
  6973. - Disable proxy cert config upgrade until certs being generated.
  6974. (dgoodwin@redhat.com)
  6975. - remove debug line (florian.lambert@enovance.com)
  6976. - [roles/openshift_master_certificates/tasks/main.yml] Fix variable
  6977. openshift.master.all_hostnames to openshift.common.all_hostnames
  6978. (florian.lambert@enovance.com)
  6979. - Fix bug with not upgrading openshift-master to atomic-openshift-master.
  6980. (dgoodwin@redhat.com)
  6981. - Adding aws and gce packages to ansible-inventory (kwoodson@redhat.com)
  6982. - Fix subpackage dependencies (jdetiber@redhat.com)
  6983. - Refactor common group evaluation to avoid duplication (jdetiber@redhat.com)
  6984. - common/openshift-cluster: Scaleup playbook (smunilla@redhat.com)
  6985. - Fix bug from module rename. (dgoodwin@redhat.com)
  6986. - Fix bug with default ansible playbook dir. (dgoodwin@redhat.com)
  6987. - Use the base package upgrade version so we can check things earlier.
  6988. (dgoodwin@redhat.com)
  6989. - Skip fail if enterprise deployment type depending on version.
  6990. (dgoodwin@redhat.com)
  6991. - Add debug output for location of etcd backup. (dgoodwin@redhat.com)
  6992. - Filter internal hostnames from the list of parsed names.
  6993. (abutcher@redhat.com)
  6994. - Move config upgrade to correct place, fix node facts. (dgoodwin@redhat.com)
  6995. - Add custom certificates to serving info in master configuration.
  6996. (abutcher@redhat.com)
  6997. - Add in proxyClientInfo if missing during config upgrade.
  6998. (dgoodwin@redhat.com)
  6999. - Implement master-config.yaml upgrade for v1beta3 apiLevel removal.
  7000. (dgoodwin@redhat.com)
  7001. - Fix installer upgrade bug following pylint fix. (dgoodwin@redhat.com)
  7002. - Document the new version field for installer config. (dgoodwin@redhat.com)
  7003. - Remove my username from some test data. (dgoodwin@redhat.com)
  7004. - Add a simple version for the installer config file. (dgoodwin@redhat.com)
  7005. - Pylint fix. (dgoodwin@redhat.com)
  7006. - Fix issue with master.proxy-client.{crt,key} and omit. (abutcher@redhat.com)
  7007. - initial module framework (jdetiber@redhat.com)
  7008. - Better info prior to initiating upgrade. (dgoodwin@redhat.com)
  7009. - Fix etcd backup bug with not-yet-created /var/lib/origin symlink
  7010. (dgoodwin@redhat.com)
  7011. - Print info after upgrade completes. (dgoodwin@redhat.com)
  7012. - Automatically upgrade legacy config files. (dgoodwin@redhat.com)
  7013. - Remove devel fail and let upgrade proceed. (dgoodwin@redhat.com)
  7014. - Add utils subpackage missing dep on openshift-ansible-roles.
  7015. (dgoodwin@redhat.com)
  7016. - Generate timestamped etcd backups. (dgoodwin@redhat.com)
  7017. - Add etcd_data_dir fact. (dgoodwin@redhat.com)
  7018. - Functional disk space checking for etcd backup. (dgoodwin@redhat.com)
  7019. - First cut at checking available disk space for etcd backup.
  7020. (dgoodwin@redhat.com)
  7021. - Block upgrade if targetting enterprise deployment type. (dgoodwin@redhat.com)
  7022. - Change flannel registration default values (sbaubeau@redhat.com)
  7023. - Remove empty notify section (sbaubeau@redhat.com)
  7024. - Check etcd certs exist for flannel when its support is enabled
  7025. (sbaubeau@redhat.com)
  7026. - Fix when neither use_openshift_sdn nor use_flannel are specified
  7027. (sbaubeau@redhat.com)
  7028. - Generate etcd certificats for flannel when is not embedded
  7029. (sbaubeau@redhat.com)
  7030. - Add missing 2nd true parameters to default Jinja filter (sbaubeau@redhat.com)
  7031. - Use 'command' module instead of 'shell' (sbaubeau@redhat.com)
  7032. - Add flannel modules documentation (sbaubeau@redhat.com)
  7033. - Only remove IPv4 address from docker bridge (sbaubeau@redhat.com)
  7034. - Remove multiple use_flannel fact definition (sbaubeau@redhat.com)
  7035. - Ensure openshift-sdn and flannel can't be used at the same time
  7036. (sbaubeau@redhat.com)
  7037. - Add flannel support (sbaubeau@redhat.com)
  7038. * Wed Nov 04 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.7-1
  7039. - added the %%util in zabbix (mwoodson@redhat.com)
  7040. - atomic-openshift-installer: Correct default playbook directory
  7041. (smunilla@redhat.com)
  7042. - Support for gce (kwoodson@redhat.com)
  7043. - fixed a dumb naming mistake (mwoodson@redhat.com)
  7044. - added disk tps checks to zabbix (mwoodson@redhat.com)
  7045. - atomic-openshift-installer: Correct inaccurate prompt (smunilla@redhat.com)
  7046. - atomic-openshift-installer: Add default openshift-ansible-playbook
  7047. (smunilla@redhat.com)
  7048. - ooinstall: Add check for nopwd sudo (smunilla@redhat.com)
  7049. - ooinstall: Update local install check (smunilla@redhat.com)
  7050. - oo-install: Support running on the host to be deployed (smunilla@redhat.com)
  7051. - Moving to Openshift Etcd application (mmahut@redhat.com)
  7052. - Add all the possible servicenames to openshift_all_hostnames for masters
  7053. (sdodson@redhat.com)
  7054. - Adding openshift.node.etcd items (mmahut@redhat.com)
  7055. - Fix etcd cert generation when etcd_interface is defined (jdetiber@redhat.com)
  7056. - get zabbix ready to start tracking status of pcp (jdiaz@redhat.com)
  7057. - split inventory into subpackages (tdawson@redhat.com)
  7058. - changed the cpu alert to only alert if cpu idle more than 5x. Change alert to
  7059. warning (mwoodson@redhat.com)
  7060. - Rename install_transactions module to openshift_ansible.
  7061. (dgoodwin@redhat.com)
  7062. - atomic-openshift-installer: Text improvements (smunilla@redhat.com)
  7063. - Add utils subpackage missing dep on openshift-ansible-roles.
  7064. (dgoodwin@redhat.com)
  7065. - Disable requiretty for only the openshift user (error@ioerror.us)
  7066. - Don't require tty to run sudo (error@ioerror.us)
  7067. - Attempt to remove the various interfaces left over from an install
  7068. (bleanhar@redhat.com)
  7069. - Pulling latest gce.py module from ansible (kwoodson@redhat.com)
  7070. - Disable OpenShift features if installing Atomic Enterprise
  7071. (jdetiber@redhat.com)
  7072. - Use default playbooks if available. (dgoodwin@redhat.com)
  7073. - Add uninstall subcommand. (dgoodwin@redhat.com)
  7074. - Add subcommands to CLI. (dgoodwin@redhat.com)
  7075. - Remove images options in oadm command (nakayamakenjiro@gmail.com)
  7076. * Fri Oct 30 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.6-1
  7077. - Adding python-boto and python-libcloud to openshift-ansible-inventory
  7078. dependency (kwoodson@redhat.com)
  7079. - Use more specific enterprise version for version_greater_than_3_1_or_1_1.
  7080. (abutcher@redhat.com)
  7081. - Conditionalizing the support for the v1beta3 api (bleanhar@redhat.com)
  7082. * Thu Oct 29 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.5-1
  7083. - Updating multi_ec2 to support extra_vars and extra_groups
  7084. (kwoodson@redhat.com)
  7085. - Removing the template and doing to_nice_yaml instead (kwoodson@redhat.com)
  7086. - README_AEP.md: update instructions for creating router and registry
  7087. (jlebon@redhat.com)
  7088. - README_AEP: Various fixes (walters@verbum.org)
  7089. - Fixing for extra_vars rename. (kwoodson@redhat.com)
  7090. - make storage_plugin_deps conditional on deployment_type (jdetiber@redhat.com)
  7091. - remove debugging pauses (jdetiber@redhat.com)
  7092. - make storage plugin dependency installation more flexible
  7093. (jdetiber@redhat.com)
  7094. - Install storage plugin dependencies (jdetiber@redhat.com)
  7095. * Wed Oct 28 2015 Kenny Woodson <kwoodson@redhat.com> 3.0.4-1
  7096. - Removing spec files. (kwoodson@redhat.com)
  7097. - Updated example (kwoodson@redhat.com)
  7098. - Automatic commit of package [openshift-ansible-inventory] release [0.0.11-1].
  7099. (kwoodson@redhat.com)
  7100. - Automatic commit of package [openshift-ansible-bin] release [0.0.21-1].
  7101. (kwoodson@redhat.com)
  7102. - Automatic commit of package [openshift-ansible-inventory] release [0.0.10-1].
  7103. (kwoodson@redhat.com)
  7104. - Automatic commit of package [openshift-ansible-bin] release [0.0.20-1].
  7105. (kwoodson@redhat.com)
  7106. - Adding tito releasers configuration (bleanhar@redhat.com)
  7107. - Bug fixes for the uninstall playbook (bleanhar@redhat.com)
  7108. - Adding clone vars and groups. Renamed hostvars to extra_vars.
  7109. (kwoodson@redhat.com)
  7110. - Start tracking docker info execution time (jdiaz@redhat.com)
  7111. - The uninstall playbook should remove the kubeconfig for non-root installs
  7112. (bleanhar@redhat.com)
  7113. - Adding uninstall support for Atomic Host (bleanhar@redhat.com)
  7114. - add examples for SDN configuration (jdetiber@redhat.com)
  7115. * Tue Oct 27 2015 Troy Dawson <tdawson@redhat.com> 3.0.3-1
  7116. - Pylint fixes and ignores for incoming oo-install code. (dgoodwin@redhat.com)
  7117. - Pylint fixes (abutcher@redhat.com)
  7118. - Adding zabbix type and fixing zabbix agent vars (kwoodson@redhat.com)
  7119. - Add atomic-openshift-utils add atomic-openshift-utils to openshift-
  7120. ansible.spec file (tdawson@redhat.com)
  7121. - Fix quotes (spinolacastro@gmail.com)
  7122. - Use standard library for version comparison. (abutcher@redhat.com)
  7123. - added docker info to the end of docker loop to direct lvm playbook.
  7124. (twiest@redhat.com)
  7125. - Add missing quotes (spinolacastro@gmail.com)
  7126. - Adding Docker Log Options capabilities (epo@jemba.net)
  7127. - Move version greater_than_fact into openshift_facts (abutcher@redhat.com)
  7128. - Don't include proxy client cert when <3.1 or <1.1 (abutcher@redhat.com)
  7129. - Add proxy client certs to master config. (abutcher@redhat.com)
  7130. - Update imagestreams and quickstarts from origin (sdodson@redhat.com)
  7131. - Get default values from openshift_facts (spinolacastro@gmail.com)
  7132. - Cleanup (spinolacastro@gmail.com)
  7133. - Add missing inventory example (spinolacastro@gmail.com)
  7134. - Custom Project Config (spinolacastro@gmail.com)
  7135. * Mon Oct 19 2015 Troy Dawson <tdawson@redhat.com> 3.0.2-1
  7136. - Initial Package