Wednesday, 2020-11-11

*** rcernin has quit IRC00:45
*** rcernin has joined #openstack-oslo00:58
*** Dmitrii-Sh has quit IRC01:00
*** Dmitrii-Sh has joined #openstack-oslo01:02
*** hamalq has quit IRC02:39
*** Dmitrii-Sh has quit IRC03:21
*** Dmitrii-Sh has joined #openstack-oslo03:24
*** cognifloyd has quit IRC03:58
*** zzzeek has quit IRC04:13
*** zzzeek has joined #openstack-oslo04:15
*** rcernin has quit IRC06:23
*** rcernin has joined #openstack-oslo06:23
openstackgerritwu.shiming proposed openstack/oslo.cache master: Replace deprecated UPPER_CONSTRAINTS_FILE variable  https://review.opendev.org/76229807:09
*** benj_ has quit IRC07:20
*** tosky has joined #openstack-oslo07:23
*** benj_ has joined #openstack-oslo07:30
*** ralonsoh has joined #openstack-oslo07:44
*** rcernin has quit IRC08:24
*** yoctozepto has quit IRC08:29
*** yoctozepto has joined #openstack-oslo08:30
*** geguileo has quit IRC08:33
*** geguileo has joined #openstack-oslo08:44
*** jaosorior has joined #openstack-oslo09:06
*** sboyron has joined #openstack-oslo09:30
*** brinzhang0 has joined #openstack-oslo09:33
*** brinzhang_ has quit IRC09:36
*** ianychoi has quit IRC09:38
*** rcernin has joined #openstack-oslo09:38
*** dtantsur|afk is now known as dtantsur09:45
*** rcernin has quit IRC09:55
*** takamatsu has quit IRC09:57
*** takamatsu has joined #openstack-oslo09:59
*** takamatsu has quit IRC10:14
*** takamatsu has joined #openstack-oslo10:16
*** iurygregory has quit IRC10:19
*** iurygregory has joined #openstack-oslo10:36
*** takamatsu has quit IRC10:50
*** takamatsu has joined #openstack-oslo10:51
*** takamatsu has quit IRC11:06
*** adrianc has quit IRC11:11
*** takamatsu has joined #openstack-oslo11:11
*** iurygregory has quit IRC11:11
*** adrianc has joined #openstack-oslo11:13
*** takamatsu has quit IRC11:17
*** takamatsu has joined #openstack-oslo11:18
*** rcernin has joined #openstack-oslo11:21
*** iurygregory_ has joined #openstack-oslo11:35
*** iurygregory_ is now known as iurygregory11:35
*** rcernin has quit IRC12:00
*** jaosorior has quit IRC12:01
*** rcernin has joined #openstack-oslo12:10
*** rcernin has quit IRC12:17
*** raildo has joined #openstack-oslo12:33
sean-k-mooneyjust confiming something but the etcd backend driver for oslo.config was never actully implemented in the end right. we have the remote file one and env vars backend as alternitive to local files but etcd is not support14:07
sean-k-mooneyalso we dropped zeromq support a while ago right14:26
sean-k-mooneyya we did https://review.opendev.org/#/c/596882/14:28
sean-k-mooneyin stien14:28
*** cognifloyd has joined #openstack-oslo14:46
*** takamatsu has quit IRC15:01
*** takamatsu has joined #openstack-oslo15:03
*** sboyron has quit IRC15:53
bnemecsean-k-mooney: Correct. Now that we have the driver framework an etcd backend could probably be implemented, but it hasn't been yet.15:55
sean-k-mooneyya i was taking some time this moring to look at a resarch idea i had a while ago15:57
sean-k-mooneycreatign a monolithc since openstack process kind of like what k3s does15:58
sean-k-mooneythe orginal idea for single node was to sue sqlite for the db and the fake in memroy driver for messaging15:58
sean-k-mooneybut i was wondering if i could sue rqlite (raft + sqlite) for the db with etcd for cache and or messageing15:59
sean-k-mooneyi was askign about zmq basically to see if that coudl be used16:00
sean-k-mooneythe idea overall is to have as few depencies as possibel but still have a working openstack16:00
sean-k-mooneyetcd for oslo config was just a case of if i have etcd there what else could i use if for to jsutify it as a depency16:01
*** jhesketh has quit IRC16:26
bnemecsean-k-mooney: Yeah, I don't think we have etcd support for anything but tooz, and you wouldn't need distributed locks in a single node deployment.18:06
bnemecIt could be done of course, they're both driver-based libraries, but there's nothing available today.18:06
*** hamalq has joined #openstack-oslo18:09
*** hamalq has quit IRC18:09
*** hamalq has joined #openstack-oslo18:10
*** dtantsur is now known as dtantsur|afk18:43
*** raildo has quit IRC18:58
*** raildo has joined #openstack-oslo18:58
*** ralonsoh has quit IRC19:01
*** sboyron has joined #openstack-oslo19:27
sean-k-mooneybnemec: i would not need etcd in singel node at all. i was thinking of usign it for oslo.cache instead of memcache and implementing an etcd oslo messaging driver which is just the fake driver but using etcd insted of dicts19:32
sean-k-mooneybnemec: i was also thinking fo doing the same with tempory tables in sqlight19:33
sean-k-mooneybasiclly i was trying to see if it was possibel to run everythign without insalling other services but a distibuted db and message queue seam to be the minum deps19:34
bnemecIronic used JSON RPC for single node installs.19:34
bnemecI don't think it's an oslo.messaging plugin though.19:35
sean-k-mooneyfor singel node a dictionary cache + fake messaging dirver + sqlight is all that is needed19:35
sean-k-mooneyall of those are supported already in the relevent oslo prjects19:35
sean-k-mooneyits what we do in the functional tests in nova at least19:35
JayFNot just for single node installs; it's the default to use JSON RPC now I believe in all installations.19:36
bnemecOh, maybe I'm confused. You're not necessarily looking at the single node use case, that was just what prompted the initial investigation?19:36
JayFat a minimum; it works in 'normal' Ironic deployments19:37
bnemecYou're just looking to fold the rabbit and memcached traffic into etcd.19:37
sean-k-mooneybnemec: ya it an idea of what is the lights way to install a working openstack that could be multinode19:37
sean-k-mooney*lightest19:37
sean-k-mooneyfor singel node it can be very light for multinode i was trying to figure out what the minimal next deps would be19:38
bnemecOkay, got it.19:38
bnemecThe only thing I will say is that with messaging drivers, here be dragons. ;-)19:38
sean-k-mooneyso rqlight  which is raft + sqlight for db and hten somethign for messaging19:38
sean-k-mooneybnemec: yep19:39
bnemecIt's entirely possible you'll find out that etcd works great for RPC but terrible for notifications (or vice versa).19:39
sean-k-mooneyya19:39
bnemecI think that's part of why zmq went away.19:39
sean-k-mooneydidnt zmq only support one of those properly19:39
sean-k-mooneytesting was the oter reason19:40
sean-k-mooneybut ya what reignited this ideay was reading about k3s19:40
sean-k-mooneyhttps://k3s.io/19:40
bnemecPretty much. IIRC there was a hacked together system that allowed it to do RPC, but it was a poor fit for the use case so it wasn't good.19:40
bnemecAnd at one point it flat out broke because we added some functionality to the other drivers that the zmq driver never got, so it became unusable for modern OpenStack deployments.19:41
sean-k-mooneyya19:41
sean-k-mooneyim not sure how complete the fake driver is19:41
*** Dmitrii-Sh has quit IRC19:41
sean-k-mooneybut it runs nova well enogh for our functional tests19:41
bnemecThe fake driver should be feature complete since it's intended to provide a sane way to do messaging testing.19:42
bnemecIf it's not I would consider that a bug.19:42
sean-k-mooneyya so for singel node it would be valid19:42
sean-k-mooneymaybe not production reday19:42
sean-k-mooneybut useable19:43
sean-k-mooneyat least at small scale19:43
bnemecI think the main thing is that it's limited to single node because it's an in-memory driver.19:44
sean-k-mooneyyep19:44
bnemecIt probably performs pretty well since there's no transport overhead. :-)19:44
sean-k-mooneyso i was going to just swap out the dicts with etcd and see if that worked19:44
sean-k-mooneyif i go a simple singel node working19:45
sean-k-mooneybut im not sure if im going to run with this or not19:45
sean-k-mooneyi jsut wanted to see what was possible quickly19:45
sean-k-mooneywe have talked about having a singel agent on a host in the past but we have never really tried19:46
sean-k-mooneyi was kind of wondering would it be possible to do without modifing the existing projects.19:47
sean-k-mooneyjust import them and start the relevnet oslo services for them with the right config19:47
sean-k-mooneybnemec: anyway thanks. if i do play with this and get anything workin ill let ye know19:49
bnemecSounds good.19:50
sean-k-mooneyoh one last question does oslo messaging support plugins for the dirvers via stevador or is it in tree only19:51
sean-k-mooneyi dont really plann on proposing on in tree for an experiment but just wonderin gif i woudl create a fork and add it or just a plugin19:51
sean-k-mooneyif i get that far19:51
sean-k-mooneylooks like there are entry points https://github.com/openstack/oslo.messaging/blob/master/setup.cfg#L41-L5219:53
sean-k-mooneyit uses stevador https://github.com/openstack/oslo.messaging/blob/e44c9883066d9b2d081a594b97aac3d598d491c9/oslo_messaging/transport.py#L205-L20919:59
sean-k-mooneyso if i want to ply with this i can just do it in my own repo cool19:59
sean-k-mooneyJayF: i assume that is what ironic did for the json rpc one?20:00
sean-k-mooneylook like no neithr ironic or ironic lib provide a driver via stevadore20:13
sean-k-mooneyfor json rpvc20:14
sean-k-mooneyah you have your own server https://github.com/openstack/ironic/blob/0e65f0134d1b068cac7b0ea5b6f35ed8726dda25/ironic/common/json_rpc/server.py20:14
sean-k-mooneyand client20:15
sean-k-mooneyso no oslo when usign that20:15
JayFsean-k-mooney: I guess; I'm not an expert in it really. I'm sure nobody would object to our pattern being oslo-ified.20:32
sean-k-mooneyim not sure how well it would map20:33
JayFI'm just excited about the idea of not having to run rabbitmq as a deployer :D20:34
sean-k-mooneyim just suprise that you didnt just add it as a plugin but i gues syou still would have needed a server implemenation20:34
sean-k-mooneyJayF: ya that was what i was trying to avoid too20:34
sean-k-mooneyit does work to a certin scale20:34
*** rcernin has joined #openstack-oslo20:34
sean-k-mooneyi think there was a propsal for a nats driver at some point too20:35
sean-k-mooneybut there is a cost to drivers too20:35
JayFI'm unfamiliar with nats20:35
JayFpulsar has been mentioned here at a basic "I wish we could use pulsar instead" platitude20:36
JayFin general I've worked almost my entire career at places that ran rabbitmq, and I'm not sure I've ever been like "Rabbitmq is the most stable, awesome part of the environment. I hope it never goes away" :D20:37
sean-k-mooneynats is one of the cloud native compute foundation projects20:37
sean-k-mooneyhttps://nats.io/20:37
JayFcncf is k8s, right?20:37
sean-k-mooneynot really20:38
*** rcernin has quit IRC20:38
sean-k-mooneypartly but they are different20:38
*** rcernin has joined #openstack-oslo20:38
JayFCNCF:K8s::OpenInfraFoundation:OpenStack -ish20:38
sean-k-mooneyhttps://www.cncf.io/projects/20:38
JayFOK, yeah, I did oversimplify but it's what I thought20:39
JayFeveryone has a foundation now :P20:39
sean-k-mooneyit a much of cloud adjacent project losly under the linux foundation banner in ther eonw cncf foundation20:39
sean-k-mooney/much/bunch20:39
sean-k-mooneyso like it has rook which si a kubernets native operator framework dirven way to deploy ceph in k8s20:40
sean-k-mooneybut ceph isnt a cncf proejct20:40
sean-k-mooneyso some of what they have are integration of existing tech with k8s20:41
sean-k-mooneysome of it is new tech written likely in go assumign a cloud plathform will be what the are deployed on or will help build20:42
sean-k-mooneyJayF: i think nat orginally started as an anser to aws's messaging bus20:43
sean-k-mooneyit mainly for iot but it could be used for anything really20:43
JayFI worked a lot with etcd in the early coreos days, but in general am not an expert on messagings ystems20:43
sean-k-mooneythen you know a lot more then me :P20:44
JayFetcd 1 API was basically20:44
JayFset a value at a path20:44
JayFget a value at a path20:44
sean-k-mooneythe added triggers and a few other things since right20:44
JayFand that is about it :)20:44
JayFyeah, I believe so, but that's how dusty  my experience is20:45
sean-k-mooneyya i really havent looked at it much20:45
sean-k-mooneyi was thinking of modeling excanages and intermdiate topics as folders and queue as paths20:48
sean-k-mooneythen you could use the watch stream https://etcd.io/docs/v3.3.12/learning/api/#watch-streams many to monitor for change to topics20:48
sean-k-mooneyi realy had not got to far with that20:48
sean-k-mooneybtu the fake driver basically used lists and dicts so i was like that should be mappable to etcd20:49
sean-k-mooneyit might be slow or fast who knows  but it likely would be functional20:50
sean-k-mooneybut ya the fact it now supprot events and watching for it made me think maybe notifcations could work too20:50
sean-k-mooneyanyway time to go un brick my pinebook pro. i may have copied the root file system to an ssd using btrfs instead of ext4 and forgot to check if the initramfs had the right modules20:55
sean-k-mooneyim hoping that is the problem anyway or this could be interesting to fix...20:56
JayFGood luck! If you manage to de-rabbitify the world, I'll buy you a cold beverage  whenever the world (and conferences) get back to normal20:57
*** sboyron has quit IRC21:37
*** cognifloyd has quit IRC21:37
*** gibi has quit IRC21:37
*** bcafarel has quit IRC21:37
*** sboyron has joined #openstack-oslo21:37
*** cognifloyd has joined #openstack-oslo21:37
*** gibi has joined #openstack-oslo21:37
*** bcafarel has joined #openstack-oslo21:37
*** tosky has quit IRC21:40
*** hoonetorg has quit IRC21:40
*** amotoki has quit IRC21:40
*** purplerbot has quit IRC21:40
*** bnemec has quit IRC21:40
*** zaneb has quit IRC21:40
*** gus has quit IRC21:40
*** brinzhang0 has quit IRC21:40
*** elod has quit IRC21:40
*** kgiusti has quit IRC21:40
*** sean-k-mooney has quit IRC21:40
*** SpamapS has quit IRC21:40
*** tosky has joined #openstack-oslo21:41
*** hoonetorg has joined #openstack-oslo21:41
*** amotoki has joined #openstack-oslo21:41
*** purplerbot has joined #openstack-oslo21:41
*** bnemec has joined #openstack-oslo21:41
*** zaneb has joined #openstack-oslo21:41
*** gus has joined #openstack-oslo21:41
*** brinzhang0 has joined #openstack-oslo21:41
*** elod has joined #openstack-oslo21:41
*** kgiusti has joined #openstack-oslo21:41
*** sean-k-mooney has joined #openstack-oslo21:41
*** SpamapS has joined #openstack-oslo21:41
*** camelCaser has quit IRC21:41
*** gouthamr_ has quit IRC21:41
*** dansmith has quit IRC21:41
*** DinaBelova has quit IRC21:41
*** stephenfin has quit IRC21:41
*** dansmith has joined #openstack-oslo21:42
*** DinaBelova has joined #openstack-oslo21:42
*** stephenfin has joined #openstack-oslo21:42
*** camelCaser has joined #openstack-oslo21:42
*** gouthamr_ has joined #openstack-oslo21:42
*** camelCaser has quit IRC21:42
*** sorrison has quit IRC21:44
*** rcernin has quit IRC21:46
*** sorrison has joined #openstack-oslo21:46
*** adrianc has quit IRC21:46
*** iurygregory has quit IRC21:46
*** yoctozepto has quit IRC21:46
*** ttx has quit IRC21:46
*** jlvillal has quit IRC21:46
*** ebbex has quit IRC21:46
*** frickler has quit IRC21:46
*** takamatsu has quit IRC21:46
*** benj_ has quit IRC21:46
*** johanssone has quit IRC21:46
*** jkulik has quit IRC21:46
*** trident has quit IRC21:46
*** iurygregory has joined #openstack-oslo21:47
*** adrianc has joined #openstack-oslo21:47
*** yoctozepto has joined #openstack-oslo21:47
*** ttx has joined #openstack-oslo21:47
*** jlvillal has joined #openstack-oslo21:47
*** ebbex has joined #openstack-oslo21:47
*** frickler has joined #openstack-oslo21:47
*** sboyron has quit IRC21:48
*** johnsom has quit IRC21:48
*** jberg-dev has quit IRC21:48
*** dtantsur|afk has quit IRC21:48
*** StevenK has quit IRC21:48
*** mgagne has quit IRC21:48
*** fungi has quit IRC21:48
*** takamatsu has joined #openstack-oslo21:50
*** benj_ has joined #openstack-oslo21:50
*** johanssone has joined #openstack-oslo21:50
*** jkulik has joined #openstack-oslo21:50
*** trident has joined #openstack-oslo21:50
*** johnsom has joined #openstack-oslo21:51
*** jberg-dev has joined #openstack-oslo21:51
*** dtantsur|afk has joined #openstack-oslo21:51
*** StevenK has joined #openstack-oslo21:51
*** mgagne has joined #openstack-oslo21:51
*** fungi has joined #openstack-oslo21:51
*** raildo has quit IRC21:51
*** lbragstad has quit IRC21:51
*** geguileo has quit IRC21:51
*** zzzeek has quit IRC21:51
*** moguimar has quit IRC21:51
*** smcginnis has quit IRC21:51
*** JayF has quit IRC21:51
*** geguileo has joined #openstack-oslo21:53
*** zzzeek has joined #openstack-oslo21:53
*** moguimar has joined #openstack-oslo21:53
*** smcginnis has joined #openstack-oslo21:53
*** JayF has joined #openstack-oslo21:53
*** raildo has joined #openstack-oslo21:53
*** lbragstad has joined #openstack-oslo21:53
*** dougwig has quit IRC21:53
*** vdrok has quit IRC21:53
*** f0o has quit IRC21:53
*** dougwig has joined #openstack-oslo21:53
*** vdrok has joined #openstack-oslo21:53
*** f0o has joined #openstack-oslo21:53
*** dougwig has quit IRC21:53
*** vdrok has quit IRC21:53
*** f0o has quit IRC21:53
*** raildo has quit IRC21:53
*** lbragstad has quit IRC21:53
*** geguileo has quit IRC21:53
*** zzzeek has quit IRC21:53
*** moguimar has quit IRC21:53
*** smcginnis has quit IRC21:53
*** JayF has quit IRC21:53
*** takamatsu has quit IRC21:53
*** benj_ has quit IRC21:53
*** johanssone has quit IRC21:53
*** jkulik has quit IRC21:53
*** trident has quit IRC21:53
*** johnsom has quit IRC21:53
*** jberg-dev has quit IRC21:53
*** dtantsur|afk has quit IRC21:53
*** StevenK has quit IRC21:53
*** mgagne has quit IRC21:53
*** fungi has quit IRC21:53
*** adrianc has quit IRC21:53
*** iurygregory has quit IRC21:53
*** yoctozepto has quit IRC21:53
*** ttx has quit IRC21:53
*** jlvillal has quit IRC21:53
*** ebbex has quit IRC21:53
*** frickler has quit IRC21:53
*** dansmith has quit IRC21:53
*** DinaBelova has quit IRC21:53
*** stephenfin has quit IRC21:53
*** gouthamr_ has quit IRC21:53
*** brinzhang0 has quit IRC21:53
*** elod has quit IRC21:53
*** kgiusti has quit IRC21:53
*** sean-k-mooney has quit IRC21:53
*** SpamapS has quit IRC21:53
*** zaneb has quit IRC21:53
*** gus has quit IRC21:53
*** tosky has quit IRC21:53
*** hoonetorg has quit IRC21:53
*** amotoki has quit IRC21:53
*** purplerbot has quit IRC21:53
*** bnemec has quit IRC21:53
*** cognifloyd has quit IRC21:53
*** gibi has quit IRC21:53
*** bcafarel has quit IRC21:53
*** dave-mccowan has quit IRC21:53
*** rpittau|afk has quit IRC21:53
*** mnaser has quit IRC21:53
*** dasp_ has quit IRC21:53
*** irclogbot_3 has quit IRC21:53
*** lifeless has quit IRC21:53
*** jrosser has quit IRC21:53
*** gmann has quit IRC21:53
*** melwitt has quit IRC21:53
*** tkajinam has quit IRC21:53
*** dhellmann has quit IRC21:53
*** openstackgerrit has quit IRC21:53
*** sorrison has quit IRC21:53
*** hamalq has quit IRC21:53
*** hberaud has quit IRC21:53
*** gouthamr has quit IRC21:53
*** jungleboyj has quit IRC21:53
*** mugsie has quit IRC21:53
*** mnasiadka has quit IRC21:53
*** rm_work has quit IRC21:53
*** knikolla has quit IRC21:53
*** csatari has quit IRC21:53
*** logan- has quit IRC21:53
*** diconico07 has quit IRC21:53
*** HenryG has quit IRC21:53
*** jroll has quit IRC21:53
*** fnordahl has quit IRC21:53
*** adriant has quit IRC21:53
*** zigo has quit IRC21:53
*** redrobot has quit IRC21:53
*** f0o has joined #openstack-oslo21:54
*** vdrok has joined #openstack-oslo21:54
*** dougwig has joined #openstack-oslo21:54
*** lbragstad has joined #openstack-oslo21:54
*** raildo has joined #openstack-oslo21:54
*** JayF has joined #openstack-oslo21:54
*** smcginnis has joined #openstack-oslo21:54
*** moguimar has joined #openstack-oslo21:54
*** zzzeek has joined #openstack-oslo21:54
*** geguileo has joined #openstack-oslo21:54
*** fungi has joined #openstack-oslo21:54
*** mgagne has joined #openstack-oslo21:54
*** StevenK has joined #openstack-oslo21:54
*** dtantsur|afk has joined #openstack-oslo21:54
*** jberg-dev has joined #openstack-oslo21:54
*** johnsom has joined #openstack-oslo21:54
*** trident has joined #openstack-oslo21:54
*** jkulik has joined #openstack-oslo21:54
*** johanssone has joined #openstack-oslo21:54
*** benj_ has joined #openstack-oslo21:54
*** takamatsu has joined #openstack-oslo21:54
*** frickler has joined #openstack-oslo21:54
*** ebbex has joined #openstack-oslo21:54
*** jlvillal has joined #openstack-oslo21:54
*** ttx has joined #openstack-oslo21:54
*** yoctozepto has joined #openstack-oslo21:54
*** adrianc has joined #openstack-oslo21:54
*** iurygregory has joined #openstack-oslo21:54
*** sorrison has joined #openstack-oslo21:54
*** gouthamr_ has joined #openstack-oslo21:54
*** stephenfin has joined #openstack-oslo21:54
*** DinaBelova has joined #openstack-oslo21:54
*** dansmith has joined #openstack-oslo21:54
*** SpamapS has joined #openstack-oslo21:54
*** sean-k-mooney has joined #openstack-oslo21:54
*** kgiusti has joined #openstack-oslo21:54
*** elod has joined #openstack-oslo21:54
*** brinzhang0 has joined #openstack-oslo21:54
*** gus has joined #openstack-oslo21:54
*** zaneb has joined #openstack-oslo21:54
*** bnemec has joined #openstack-oslo21:54
*** purplerbot has joined #openstack-oslo21:54
*** amotoki has joined #openstack-oslo21:54
*** hoonetorg has joined #openstack-oslo21:54
*** tosky has joined #openstack-oslo21:54
*** bcafarel has joined #openstack-oslo21:54
*** gibi has joined #openstack-oslo21:54
*** cognifloyd has joined #openstack-oslo21:54
*** hamalq has joined #openstack-oslo21:54
*** dave-mccowan has joined #openstack-oslo21:54
*** rpittau|afk has joined #openstack-oslo21:54
*** lifeless has joined #openstack-oslo21:54
*** hberaud has joined #openstack-oslo21:54
*** mnaser has joined #openstack-oslo21:54
*** gouthamr has joined #openstack-oslo21:54
*** jungleboyj has joined #openstack-oslo21:54
*** mnasiadka has joined #openstack-oslo21:54
*** rm_work has joined #openstack-oslo21:54
*** knikolla has joined #openstack-oslo21:54
*** jrosser has joined #openstack-oslo21:54
*** csatari has joined #openstack-oslo21:54
*** gmann has joined #openstack-oslo21:54
*** diconico07 has joined #openstack-oslo21:54
*** melwitt has joined #openstack-oslo21:54
*** mugsie has joined #openstack-oslo21:54
*** tkajinam has joined #openstack-oslo21:54
*** dasp_ has joined #openstack-oslo21:54
*** irclogbot_3 has joined #openstack-oslo21:54
*** dhellmann has joined #openstack-oslo21:54
*** logan- has joined #openstack-oslo21:54
*** openstackgerrit has joined #openstack-oslo21:54
*** adriant has joined #openstack-oslo21:54
*** HenryG has joined #openstack-oslo21:54
*** zigo has joined #openstack-oslo21:54
*** redrobot has joined #openstack-oslo21:54
*** jroll has joined #openstack-oslo21:54
*** fnordahl has joined #openstack-oslo21:54
*** mnasiadka has quit IRC21:54
*** rm_work has quit IRC21:54
*** knikolla has quit IRC21:54
*** csatari has quit IRC21:54
*** logan- has quit IRC21:54
*** diconico07 has quit IRC21:54
*** HenryG has quit IRC21:54
*** jroll has quit IRC21:54
*** fnordahl has quit IRC21:54
*** trident has quit IRC21:54
*** adriant has quit IRC21:54
*** zigo has quit IRC21:54
*** redrobot has quit IRC21:54
*** raildo has quit IRC21:54
*** lbragstad has quit IRC21:54
*** mnasiadka has joined #openstack-oslo21:54
*** rm_work has joined #openstack-oslo21:54
*** knikolla has joined #openstack-oslo21:54
*** csatari has joined #openstack-oslo21:54
*** diconico07 has joined #openstack-oslo21:54
*** logan- has joined #openstack-oslo21:54
*** HenryG has joined #openstack-oslo21:54
*** jroll has joined #openstack-oslo21:54
*** fnordahl has joined #openstack-oslo21:54
*** raildo has joined #openstack-oslo21:54
*** logan- has quit IRC21:54
*** lbragstad has joined #openstack-oslo21:54
*** adriant has joined #openstack-oslo21:55
*** zigo has joined #openstack-oslo21:55
*** redrobot has joined #openstack-oslo21:55
*** trident has joined #openstack-oslo21:55
*** logan- has joined #openstack-oslo21:57
*** mnasiadka has quit IRC21:57
*** mnasiadka has joined #openstack-oslo21:57
*** rcernin has joined #openstack-oslo22:03
*** rcernin has quit IRC22:05
*** rcernin has joined #openstack-oslo22:05
*** tosky has quit IRC23:08

Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!