clarkb | Shrews: is there a reason unlockNodeRequest() shoudl error if there is no lock? | 00:04 |
---|---|---|
clarkb | seems like that should noop instead | 00:04 |
clarkb | (that would fix this problem, but I'm not sure I'm missing something) | 00:04 |
Shrews | clarkb: there will likely be more noderequest locks than noderequests b/c they are not part of the same znode (just the way we designed it). | 00:20 |
Shrews | clarkb: i'm not sure about the race. that doesn't seem likely, but too late in my day to look. will look tomorrow | 00:20 |
Shrews | clarkb: and yes, i want unlockNodeRequest to error if there is no lock b/c that really shouldn't happen (unless there's a bug) | 00:21 |
clarkb | Shrews: I'm also struggling with how getNodeRequestLock() returns a different type than request.lock | 00:21 |
clarkb | I'm going to work on collapsing those into one type | 00:21 |
clarkb | Shrews: but ya reading more the more confident I am that its two conflicting/racing cleanups causing this problem. | 00:23 |
Shrews | clarkb: those are different types b/c they are fundamentally different. request locks are separate from the actual requests (described in http://specs.openstack.org/openstack-infra/infra-specs/specs/zuulv3.html). | 00:28 |
clarkb | yup I know | 00:28 |
Shrews | clarkb: don't have time to go into now though | 00:28 |
clarkb | problem is with the terminology in the code | 00:28 |
clarkb | getRequestNodeLock should requtn the node request lock | 00:29 |
clarkb | its just confusing otherwise | 00:29 |
clarkb | I think a single object could be both the lock content and the lock itself in kazoo/zk if we want | 00:29 |
clarkb | or we can just rename things to make it a bit more clear these are not the same data | 00:29 |
*** JasonCL has joined #zuul | 00:55 | |
*** JasonCL has quit IRC | 00:59 | |
openstackgerrit | Clark Boylan proposed openstack-infra/nodepool feature/zuulv3: Clarify terminology around node request locks https://review.openstack.org/526233 | 01:01 |
openstackgerrit | Clark Boylan proposed openstack-infra/nodepool feature/zuulv3: Handle race between handler and request cleanup https://review.openstack.org/526234 | 01:01 |
clarkb | jeblair: Shrews ^ thats the end result of my digging around this problem | 01:01 |
clarkb | I think the chagnes in the first change should make it easier to understand when a lock is a lock or a set of znode stats or an id | 01:02 |
*** JasonCL has joined #zuul | 01:04 | |
openstackgerrit | Tristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: handler: fix support for handler without launch_manager https://review.openstack.org/524773 | 01:37 |
openstackgerrit | Tristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: builder: do not cleanup image for driver not managing image https://review.openstack.org/516920 | 01:37 |
openstackgerrit | Tristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: Add a plugin interface for drivers https://review.openstack.org/524620 | 01:37 |
openstackgerrit | Tristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: Implement a static driver for Nodepool https://review.openstack.org/468624 | 01:37 |
tristanC | jeblair: thanks, here is a new ps for the static driver ^ | 01:37 |
tristanC | jeblair: i'll now investigate how to make the request handler generic accross openstack and static driver | 01:38 |
tristanC | jeblair: mordred: and i'm still waiting for guidance regarding making the static node request using long live znode, (instead of creating new znode for each request) | 01:38 |
tristanC | and thanks for all the review and +3, feels good to remove patches from staging :-) | 01:43 |
*** harlowja has quit IRC | 02:22 | |
*** threestrands has joined #zuul | 03:52 | |
*** threestrands has quit IRC | 03:52 | |
*** threestrands has joined #zuul | 03:52 | |
*** harlowja has joined #zuul | 04:39 | |
*** tushar has quit IRC | 05:21 | |
*** tushar has joined #zuul | 05:21 | |
*** harlowja has quit IRC | 05:30 | |
*** threestrands has quit IRC | 06:32 | |
*** jaianshu has joined #zuul | 08:05 | |
jaianshu | Hi...i see my instance in nodepool list gets stuck in building state, while i can see in my provider that it is active from 'nova list'. Also it continously deletes the instance and re-creates. | 08:07 |
kklimonda | jaianshu: check nodepool logs, it's possible that nodepool can't verify the connectivity to the machine (by trying to fetch its ssh host key) and deletes it | 08:12 |
jaianshu | kklimonda: so do we need to create a new dib-element for generating key in my dib image? | 08:18 |
kklimonda | jaianshu: well, your image should have openssh server installed and running - the keys will be generated during boot one way or another | 08:21 |
jaianshu | kklimonda: then how nodepool will use these keys to validate login? | 08:22 |
kklimonda | jaianshu: nodepool fetches ssh *host* key which is then stored in zookeeper and used by zuul to verify that it's connecting to the correct node | 08:23 |
jaianshu | kklimonda: where in nodepool do we need to define this ssh keys? | 08:24 |
kklimonda | you don't, those are generated during boot - I think you are confusing host keys (used by client to verify the authenticity of the host) and authentication keys (used by the host to authenticate client). host keys are what's generated during boot, and nodepool has to fetch them (by using ssh-keyscan) so that zuul can verify that it's connecting to the correct machine. You can put additional ssh public keys in your image with elements if | 08:30 |
kklimonda | that's what you need, but this is not what your problem is about - iirc nodepool does not try to login to the machine by itself. Anyway, you have to check logs and see why is nodepool retrying the node. | 08:30 |
*** jpena|off is now known as jpena | 08:32 | |
jaianshu | ok..trying it | 08:50 |
*** hashar has joined #zuul | 09:01 | |
*** jaianshu has quit IRC | 09:19 | |
*** sshnaidm|afk is now known as sshnaidm|rover | 09:30 | |
openstackgerrit | Tristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: builder: do not cleanup image for driver not managing image https://review.openstack.org/516920 | 09:31 |
openstackgerrit | Tristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: handler: fix support for handler without launch_manager https://review.openstack.org/524773 | 09:31 |
openstackgerrit | Tristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: Add a plugin interface for drivers https://review.openstack.org/524620 | 09:31 |
openstackgerrit | Tristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: Implement a static driver for Nodepool https://review.openstack.org/468624 | 09:31 |
openstackgerrit | Tristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: Implement an OpenContainer driver https://review.openstack.org/468753 | 09:31 |
openstackgerrit | Tristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: Implement a Kubernetes driver https://review.openstack.org/521356 | 09:31 |
openstackgerrit | Tristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: Implement a generic run_handler https://review.openstack.org/526325 | 09:31 |
*** electrofelix has joined #zuul | 09:36 | |
tristanC | jeblair: so, i had a hard time figuring out a good design for that run_handler() method... please find in 526325 a proposal so make it generic | 09:38 |
tristanC | note that i rebased it on top of all the other drivers to make sure it's compatible, and so far so good, my setup is still working | 09:38 |
tristanC | i took this oportunity to improved the k8s driver so that it creates a thread per node request using the NodeLauncherManager, it's much faster now :) | 09:39 |
tristanC | anyway, the relevant files are nodepool/driver/__init__.py and nodepool/driver/openstack/handler.py, the rests are tests related | 09:40 |
*** smyers has quit IRC | 10:04 | |
*** smyers has joined #zuul | 10:15 | |
*** tobiash has quit IRC | 10:45 | |
openstackgerrit | Tristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: handler: fix support for handler without launch_manager https://review.openstack.org/524773 | 11:01 |
openstackgerrit | Tristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: Add a plugin interface for drivers https://review.openstack.org/524620 | 11:01 |
openstackgerrit | Tristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: builder: do not cleanup image for driver not managing image https://review.openstack.org/516920 | 11:01 |
*** tflink has quit IRC | 11:11 | |
*** jkilpatr has quit IRC | 11:12 | |
*** tflink has joined #zuul | 11:22 | |
*** jesusaur has quit IRC | 11:25 | |
*** jesusaur has joined #zuul | 11:28 | |
*** jesusaur has quit IRC | 11:31 | |
*** jesusaur has joined #zuul | 11:33 | |
*** jkilpatr has joined #zuul | 11:47 | |
*** Wei_Liu has joined #zuul | 11:54 | |
Wei_Liu | hello, on which OS is recommended for zuul-scheduler/executor to run? | 11:55 |
kklimonda | Wei_Liu: I think it's xenial | 12:06 |
kklimonda | hmm, nodepool does not rebuilt "min-ready" nodes when a new image is uploaded | 12:07 |
Wei_Liu | kklimonda: hi, if I want to install v3 on xenial, I need to install python3 and git checkout zuul, change branch to v3, and run "pip install .", right? | 12:27 |
Wei_Liu | from zuul user? | 12:27 |
kklimonda | Wei_Liu: as root, it will install to /usr/local/ and then you can start it as user zuul | 12:28 |
*** jpena is now known as jpena|lunch | 12:40 | |
Wei_Liu | kklimonda: should I use python3.5 or 3.6? | 12:44 |
*** JasonCL has quit IRC | 12:54 | |
kklimonda | Wei_Liu: whatever comes with xenial is fine | 12:54 |
*** JasonCL has joined #zuul | 12:55 | |
Wei_Liu | kklimonda: pip did not worked with python 3.5, I can not use "pip install .", should I use "python setup.py isntall" | 13:02 |
kklimonda | Wei_Liu: what error do you get with pip install . ? (it's probably pip3 for python3 too) | 13:06 |
Wei_Liu | kklimonda: yes, I installed python3-pip, it worked. thanks | 13:12 |
Wei_Liu | kklimonda: there is no /etc/zuul directory, I create it, what access should it be? | 13:18 |
openstackgerrit | Rico Lin proposed openstack-infra/nodepool master: Fix getProviderManager in alien_list https://review.openstack.org/524092 | 13:19 |
kklimonda | Wei_Liu: you need to follow documentation from https://docs.openstack.org/infra/zuul/feature/zuulv3/index.html as well as https://github.com/openstack-infra/project-config and https://github.com/openstack-infra/puppet-zuul | 13:20 |
kklimonda | Wei_Liu: for scheduler you'll need basic zuul config files as well as a tenant configuration | 13:21 |
*** JasonCL has quit IRC | 13:21 | |
*** JasonCL has joined #zuul | 13:22 | |
Wei_Liu | kklimonda: yes, I found it in puppet-zuul, thanks | 13:23 |
*** tobiash has joined #zuul | 13:23 | |
*** tobiash_ has joined #zuul | 13:26 | |
*** tobiash has quit IRC | 13:28 | |
*** tobiash_ has quit IRC | 13:31 | |
*** tobiash has joined #zuul | 13:36 | |
*** jkilpatr has quit IRC | 13:38 | |
*** jpena|lunch is now known as jpena | 13:46 | |
*** tobiash has quit IRC | 13:46 | |
*** tobiash has joined #zuul | 13:49 | |
*** jkilpatr has joined #zuul | 13:50 | |
*** tobiash has quit IRC | 13:53 | |
*** tobiash has joined #zuul | 13:59 | |
*** tobiash has quit IRC | 14:03 | |
*** tobiash has joined #zuul | 14:15 | |
pabelanger | Wei_Liu: any OS with python3.5+ should work, I've doing development on fedora my self. But ya, openstack-infra is running xenial | 14:17 |
*** tobiash has quit IRC | 14:19 | |
*** tobiash has joined #zuul | 14:24 | |
*** tobiash has quit IRC | 14:30 | |
*** dkranz has joined #zuul | 14:34 | |
*** tobiash has joined #zuul | 14:35 | |
*** jesusaur has quit IRC | 14:48 | |
*** electrofelix has quit IRC | 14:48 | |
*** openstackgerrit has quit IRC | 14:48 | |
*** sshnaidm|rover has quit IRC | 14:48 | |
*** leifmadsen has quit IRC | 14:48 | |
*** mwhahaha has quit IRC | 14:48 | |
*** fungi has quit IRC | 14:48 | |
*** TheJulia has quit IRC | 14:48 | |
*** robcresswell has quit IRC | 14:48 | |
*** fdegir has quit IRC | 14:48 | |
*** logan- has quit IRC | 14:48 | |
*** ChanServ has quit IRC | 14:48 | |
*** qwc has quit IRC | 14:48 | |
*** hashar has quit IRC | 14:48 | |
*** jtanner has quit IRC | 14:48 | |
*** toabctl has quit IRC | 14:48 | |
*** jlk has quit IRC | 14:48 | |
*** jpena has quit IRC | 14:48 | |
*** nguyentrihai has quit IRC | 14:48 | |
*** nhicher has quit IRC | 14:48 | |
*** ianw has quit IRC | 14:48 | |
*** zigo has quit IRC | 14:48 | |
*** jhesketh has quit IRC | 14:48 | |
*** JasonCL has quit IRC | 14:48 | |
*** tushar has quit IRC | 14:48 | |
*** gundalow has quit IRC | 14:48 | |
*** tristanC has quit IRC | 14:48 | |
*** fbouliane has quit IRC | 14:48 | |
*** persia has quit IRC | 14:48 | |
*** gothicmindfood has quit IRC | 14:48 | |
*** odyssey4me has quit IRC | 14:48 | |
*** tobiash has quit IRC | 14:48 | |
*** jkilpatr has quit IRC | 14:48 | |
*** _ari_ has quit IRC | 14:48 | |
*** myoung|ruck has quit IRC | 14:48 | |
*** rcarrillocruz has quit IRC | 14:48 | |
*** lennyb has quit IRC | 14:48 | |
*** EmilienM has quit IRC | 14:48 | |
*** SpamapS has quit IRC | 14:48 | |
*** eventingmonkey has quit IRC | 14:48 | |
*** pabelanger has quit IRC | 14:48 | |
*** bramwelt has quit IRC | 14:48 | |
*** mwhahaha has joined #zuul | 14:54 | |
*** fungi has joined #zuul | 14:54 | |
*** TheJulia has joined #zuul | 14:54 | |
*** robcresswell has joined #zuul | 14:54 | |
*** fdegir has joined #zuul | 14:54 | |
*** logan- has joined #zuul | 14:54 | |
*** hashar has joined #zuul | 14:54 | |
*** jtanner has joined #zuul | 14:54 | |
*** qwc has joined #zuul | 14:54 | |
*** leifmadsen has joined #zuul | 14:54 | |
*** sshnaidm|rover has joined #zuul | 14:54 | |
*** openstackgerrit has joined #zuul | 14:54 | |
*** electrofelix has joined #zuul | 14:54 | |
*** jesusaur has joined #zuul | 14:54 | |
*** tobiash has joined #zuul | 14:54 | |
*** jkilpatr has joined #zuul | 14:54 | |
*** JasonCL has joined #zuul | 14:54 | |
*** tushar has joined #zuul | 14:54 | |
*** nguyentrihai has joined #zuul | 14:54 | |
*** _ari_ has joined #zuul | 14:54 | |
*** gundalow has joined #zuul | 14:54 | |
*** tristanC has joined #zuul | 14:54 | |
*** nhicher has joined #zuul | 14:54 | |
*** jpena has joined #zuul | 14:54 | |
*** myoung|ruck has joined #zuul | 14:54 | |
*** ianw has joined #zuul | 14:54 | |
*** toabctl has joined #zuul | 14:54 | |
*** zigo has joined #zuul | 14:54 | |
*** EmilienM has joined #zuul | 14:54 | |
*** bramwelt has joined #zuul | 14:54 | |
*** jlk has joined #zuul | 14:54 | |
*** rcarrillocruz has joined #zuul | 14:54 | |
*** jhesketh has joined #zuul | 14:54 | |
*** lennyb has joined #zuul | 14:54 | |
*** fbouliane has joined #zuul | 14:54 | |
*** SpamapS has joined #zuul | 14:54 | |
*** persia has joined #zuul | 14:54 | |
*** eventingmonkey has joined #zuul | 14:54 | |
*** pabelanger has joined #zuul | 14:54 | |
*** gothicmindfood has joined #zuul | 14:54 | |
*** odyssey4me has joined #zuul | 14:54 | |
*** jkilpatr has quit IRC | 14:55 | |
*** jkilpatr has joined #zuul | 14:56 | |
*** tobiash has quit IRC | 14:56 | |
*** tobiash has joined #zuul | 14:58 | |
*** tobiash has quit IRC | 15:06 | |
Shrews | tristanC: I saw your ML post about refactoring the request handler. I don't really want to context switch away from what I'm doing right now (takes me too much time to get back on task), but I do plan to look at what you have at some point | 15:07 |
*** tobiash has joined #zuul | 15:07 | |
*** tobiash has quit IRC | 15:11 | |
*** tobiash has joined #zuul | 15:12 | |
*** ChanServ has joined #zuul | 15:16 | |
*** barjavel.freenode.net sets mode: +o ChanServ | 15:16 | |
*** myoung|ruck is now known as myoung|rover | 15:16 | |
jeblair | kklimonda: i left a couple comments on 515169 | 15:35 |
jeblair | i +2d a lot of zuul changes yesterday, if another core wants to take a look at them, that would be great. :) | 15:36 |
*** sshnaidm|rover is now known as sshnaidm|ruck | 15:46 | |
openstackgerrit | Merged openstack-infra/zuul feature/zuulv3: Correctly stream the remaining buffer https://review.openstack.org/515470 | 15:51 |
openstackgerrit | David Shrewsbury proposed openstack-infra/zuul feature/zuulv3: WIP: Add finger gateway https://review.openstack.org/525276 | 16:17 |
kklimonda | jeblair: thanks, I'll take a look at them tomorrow | 16:18 |
openstackgerrit | Merged openstack-infra/zuul-jobs master: revoke-sudo: only revoke when zuul is sudoer https://review.openstack.org/522261 | 16:33 |
openstackgerrit | Merged openstack-infra/zuul-jobs master: bindep: fix install bindep_command fact name https://review.openstack.org/525503 | 16:33 |
openstackgerrit | Merged openstack-infra/zuul-jobs master: bindep: skip package install when not needed https://review.openstack.org/525506 | 16:33 |
openstackgerrit | Merged openstack-infra/zuul-jobs master: Fix npm-run-test https://review.openstack.org/518879 | 16:33 |
*** dmsimard is now known as dmsimard|afk | 16:34 | |
*** hashar is now known as hasharAway | 16:35 | |
openstackgerrit | Tobias Henkel proposed openstack-infra/nodepool feature/zuulv3: Add connection-port to provider diskimage https://review.openstack.org/504112 | 16:52 |
pabelanger | tobiash: wanted to make sure you seen comment from jeblair on https://review.openstack.org/503166 | 17:00 |
tobiash | pabelanger: ah thanks, overlooked that | 17:01 |
tobiash | will fix that | 17:01 |
pabelanger | tobiash: also a quick question on 504112 | 17:02 |
pabelanger | but looks good in general | 17:02 |
tobiash | pabelanger: good point, that was there in the beginning where the port was optional | 17:04 |
openstackgerrit | Tobias Henkel proposed openstack-infra/nodepool feature/zuulv3: Add connection-port to provider diskimage https://review.openstack.org/504112 | 17:05 |
tobiash | pabelanger: fixed that ^^ | 17:05 |
openstackgerrit | Fabien Boucher proposed openstack-infra/zuul feature/zuulv3: WIP: Git driver https://review.openstack.org/525614 | 17:07 |
*** harlowja has joined #zuul | 17:08 | |
openstackgerrit | Merged openstack-infra/zuul feature/zuulv3: Add command socket support to zuul-merger https://review.openstack.org/523197 | 17:08 |
openstackgerrit | Merged openstack-infra/zuul feature/zuulv3: Add command_socket setting to executor section https://review.openstack.org/523465 | 17:08 |
openstackgerrit | Merged openstack-infra/zuul feature/zuulv3: Move send_command() into ZuulApp https://review.openstack.org/523211 | 17:08 |
openstackgerrit | Merged openstack-infra/zuul feature/zuulv3: Add command socket support to zuul-scheduler https://review.openstack.org/523466 | 17:08 |
openstackgerrit | Tobias Henkel proposed openstack-infra/nodepool feature/zuulv3: Don't gather host keys for non ssh connections https://review.openstack.org/503166 | 17:09 |
openstackgerrit | Tobias Henkel proposed openstack-infra/nodepool feature/zuulv3: Add connection-port to provider diskimage https://review.openstack.org/504112 | 17:09 |
openstackgerrit | Merged openstack-infra/nodepool feature/zuulv3: Rename ssh_port to connection_port https://review.openstack.org/500800 | 17:10 |
openstackgerrit | Merged openstack-infra/nodepool feature/zuulv3: Support username also for unmanaged cloud images https://review.openstack.org/500808 | 17:12 |
openstackgerrit | Merged openstack-infra/nodepool feature/zuulv3: Add connection-type to provider diskimage https://review.openstack.org/503148 | 17:12 |
pabelanger | tobiash: cool, will look in a min | 17:13 |
tobiash | pabelanger, jeblair: do you have the parent-change-enqueued trigger in the gate? | 17:15 |
tobiash | looks like 500799 didn't enter the gate but the depends-on change entered the gate and merged | 17:15 |
pabelanger | tobiash: him, is zuul and nodepool in the same shared change queue? I didn't see on status.o.o/zuul | 17:18 |
tobiash | hm, good point | 17:21 |
tobiash | then we would also need parent-change-merged to support non shared queues | 17:21 |
tobiash | not sure if that's already existing | 17:22 |
SpamapS | Playing with tenants today.. as I start, I'm wondering.. is it possible I can use one repo in two tenants? I want to do that so that I can have a tenant with "deploy" pipelines and a tenant with "test" pipelines.. and I don't want them to share config. | 17:24 |
openstackgerrit | Merged openstack-infra/zuul feature/zuulv3: Rename ssh_port to connection_port https://review.openstack.org/500799 | 17:32 |
jeblair | tobiash: i don't think we have that trigger configured atm | 17:33 |
jeblair | SpamapS: yes, you can add the same project to multiple tenants, and you can configure which types of config objects get loaded from that project independently for each tenant | 17:34 |
SpamapS | jeblair: I'll let you know how that goes. Exciting times. :) | 17:38 |
jeblair | ++ | 17:39 |
SpamapS | If it works out, I'll have a setup where Zuul deploys stuff in the gate to a stage environment and reports back on the diff it would enact in prod. Then another branch's gate will deploy to prod. | 17:40 |
SpamapS | With failed deploys in both cases simply pausing and saying "login and fix the deploy or run X to cancel and fail the gate" | 17:41 |
*** JasonCL has quit IRC | 17:42 | |
*** JasonCL has joined #zuul | 17:45 | |
SpamapS | (and I want those deploys to be in a diff tenant than testing so that I can use super-secret-secrets and not worry about them being abused) | 17:46 |
*** jpena is now known as jpena|off | 17:48 | |
*** JasonCL has quit IRC | 17:52 | |
*** JasonCL has joined #zuul | 17:53 | |
jeblair | SpamapS: cool, i'd like to hear how that goes. once you get that going, i wonder if, with some combination of final and protected jobs and config repos, you could accomplish that in one tenant. | 17:54 |
*** Wei_Liu has quit IRC | 17:55 | |
SpamapS | jeblair: that's a good question, I wondered that too. | 17:57 |
SpamapS | jeblair: for now one problem I have is a lot of secrets just live in private repos... I don't quite have time to convert it all to zuul secrets. | 17:58 |
jeblair | SpamapS: yeah, i think you're on the right track with that caveat; refactor later. :) | 18:03 |
tobiash | jeblair: is 525239 ready to land or is some cleanup left in openstack world? | 18:09 |
jeblair | tobiash: there may be a few changes left that haven't merged, but they've had plenty of time. i'm ready to land it. i'll go ahead and +w it so i take the blame. :) | 18:19 |
tobiash | :) | 18:21 |
*** vivsoni__ has joined #zuul | 18:24 | |
*** vivsoni_ has quit IRC | 18:24 | |
openstackgerrit | Tobias Henkel proposed openstack-infra/zuul feature/zuulv3: Add support for protected jobs https://review.openstack.org/522985 | 18:25 |
openstackgerrit | Merged openstack-infra/zuul feature/zuulv3: Remove implied playbook extensions https://review.openstack.org/525239 | 18:36 |
*** sshnaidm|ruck is now known as sshnaidm|off | 18:43 | |
*** jkilpatr has quit IRC | 18:52 | |
*** electrofelix has quit IRC | 19:08 | |
*** jkilpatr has joined #zuul | 19:13 | |
*** jkilpatr has quit IRC | 19:18 | |
*** jkilpatr has joined #zuul | 19:19 | |
*** harlowja has quit IRC | 19:21 | |
*** ricky_vaca has joined #zuul | 19:31 | |
*** JasonCL has quit IRC | 19:33 | |
*** JasonCL has joined #zuul | 19:35 | |
*** Wei_Liu has joined #zuul | 19:41 | |
*** JasonCL has quit IRC | 19:59 | |
ricky_vaca | m | 20:03 |
*** JasonCL has joined #zuul | 20:03 | |
*** jkilpatr has quit IRC | 20:08 | |
*** jkilpatr has joined #zuul | 20:24 | |
*** hasharAway is now known as hashar | 20:31 | |
*** jkilpatr has quit IRC | 20:32 | |
*** dmellado has quit IRC | 20:37 | |
*** dmellado has joined #zuul | 20:50 | |
*** jkilpatr has joined #zuul | 21:06 | |
*** nguyentrihai has quit IRC | 21:29 | |
*** dmsimard|afk is now known as dmsimard | 21:30 | |
*** hashar has quit IRC | 21:43 | |
*** jtanner has quit IRC | 21:43 | |
*** hashar has joined #zuul | 21:48 | |
*** jtanner has joined #zuul | 21:48 | |
*** openstackgerrit has quit IRC | 21:48 | |
*** jkilpatr has quit IRC | 21:53 | |
*** tobiash has quit IRC | 22:01 | |
*** tobiash has joined #zuul | 22:01 | |
*** threestrands has joined #zuul | 22:04 | |
*** hashar has quit IRC | 22:14 | |
*** openstackgerrit has joined #zuul | 22:23 | |
openstackgerrit | David Shrewsbury proposed openstack-infra/zuul feature/zuulv3: WIP: Add finger gateway https://review.openstack.org/525276 | 22:23 |
*** weshay is now known as weshay|ruck | 22:23 | |
Shrews | wth... how is that in merge conflict | 22:24 |
Shrews | ugh | 22:24 |
openstackgerrit | David Shrewsbury proposed openstack-infra/zuul feature/zuulv3: WIP: Add finger gateway https://review.openstack.org/525276 | 22:27 |
*** jtanner has quit IRC | 22:36 | |
*** leifmadsen has quit IRC | 22:39 | |
*** jtanner has joined #zuul | 22:42 | |
*** leifmadsen has joined #zuul | 22:42 | |
*** leifmadsen has quit IRC | 22:42 | |
*** leifmadsen has joined #zuul | 22:42 | |
*** harlowja has joined #zuul | 23:07 | |
*** dkranz has quit IRC | 23:14 | |
*** jkilpatr has joined #zuul | 23:40 | |
*** threestrands has quit IRC | 23:55 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!