nibalizer | does puppet-* have a similar list? or just each module's own metadata.json ? | 00:00 |
---|---|---|
nibalizer | crinkle: ^? | 00:00 |
crinkle | nibalizer: no, each module has its own dependencies | 00:00 |
*** dannywilson has quit IRC | 00:00 | |
jeblair | the more i think about it, the more i think that maybe we should take the approach of using metadata.json to tell zuul-cloner which repos to use | 00:00 |
*** yamada-h has joined #openstack-infra | 00:01 | |
jeblair | it's a slightly different approach than we've used for integration testing before (where we usually just have a single job, and the list of repos is defined in the job one way or another) | 00:01 |
crinkle | some things in metadata.json are external dependencies that zuul doesn't have knowledge of | 00:02 |
crinkle | like puppetlabs/apt etc | 00:02 |
jeblair | but this means that the foo-beaker job and the bar-beaker job all work with the correct and minimal set of requirements automatically (and we can share the job defn for any puppet module) | 00:02 |
jeblair | crinkle: (yeah, so maybe the spec helper says "i can zuul this one; i have to puppet module install this other one") | 00:02 |
*** Sukhdev has quit IRC | 00:03 | |
crinkle | jeblair: so when you say spec helper do you mean spec_helper_acceptance.rb within the module or a script in jjb? | 00:03 |
jeblair | crinkle: sha.rb | 00:03 |
*** Sukhdev has joined #openstack-infra | 00:03 | |
*** yamamoto has joined #openstack-infra | 00:03 | |
nibalizer | the metadata.json is the source of truth I would use | 00:04 |
jeblair | the only other trick with this approach is that we have to tell zuul to combine these modules into a shared change queue, which it will only do if job names match across repos; that's taken care of in infra because of the apply job, but we may need, temporarily, a way to bind all of the openstack-puppet repos together if they don't share an integration test job. we've done that before with a fake project, so that's not too hard. | 00:04 |
nibalizer | jeblair: ah so i was wondering about that | 00:04 |
nibalizer | each puppet module has its own beaker tests right now, there isn't a shared test | 00:05 |
nibalizer | if that makes any sense | 00:05 |
nibalizer | so you can't (right now) treat it like devstack | 00:05 |
*** yamada-h has quit IRC | 00:05 | |
*** radez_g0n3 is now known as radez | 00:05 | |
nibalizer | now it would be really cool to have a puppet-go-make-openstack that does exercise all the modules in one test | 00:06 |
nibalizer | but until that appears I don't think we're supposed to make them the same job name and share a queue | 00:06 |
openstackgerrit | Wayne Warren proposed openstack-infra/zuul: WIP: Support GitHub PR webhooks https://review.openstack.org/163117 | 00:06 |
nibalizer | unless its smart enough to say "i am a job testing puppet-nova and pupept-keystone and puppet-glance, so I must run each of their tests in sequence" | 00:06 |
jeblair | nibalizer, crinkle: the critical question is whether you want the modules to test unreleased code of other modules | 00:06 |
jeblair | for infra, that is yes | 00:07 |
nibalizer | we have to answer 'yes' to that question to get 'depends-on' right? | 00:07 |
jeblair | nibalizer: yep | 00:07 |
crinkle | yes, we want that | 00:07 |
*** Sukhdev has quit IRC | 00:08 | |
jeblair | what that does mean is that you can end up with master of one module not working with latest release of another | 00:08 |
jeblair | you're locked into either using master everywhere, or releases everywhere (and releases should be simultaneous) | 00:08 |
jeblair | again, in infra, we're okay with that. openstack itself has decided that in some cases, it wants to work with releases and not unreleased code. so it's in a sort of hybrid state right now, with some jobs installing from git, and others installing some things from releases. | 00:09 |
crinkle | we do synchronized releases | 00:10 |
*** camunoz_mtg is now known as camunoz | 00:10 | |
*** Zhongjun has joined #openstack-infra | 00:10 | |
crinkle | so modules with the same major version work with each other | 00:10 |
jeblair | that sounds reasonabl. if you're okay with those caveats, then i'd continue along this line. | 00:10 |
crinkle | and modules on master work with each other | 00:10 |
*** claudiub has joined #openstack-infra | 00:10 | |
crinkle | wfm | 00:11 |
nibalizer | jeblair: do you think we should have an rm -fr /etc/puppet/modules/* at the top of apply-test.sh ? | 00:11 |
*** puranamr_ has joined #openstack-infra | 00:11 | |
*** puranamr has quit IRC | 00:11 | |
nibalizer | I feel like we should, depending on how zuul-cloner feels about cloning into a repo that already exists | 00:11 |
nibalizer | but even so, if something was removed from modules.env zuul-cloner wouldn't deal with taht | 00:12 |
*** markvoelker has joined #openstack-infra | 00:12 | |
anteaya | j^2: pleia2 helped me find the log of the last time I asked this question: http://eavesdrop.openstack.org/irclogs/%23openstack-infra/%23openstack-infra.2014-05-07.log.html#t2014-05-07T16:10:47 | 00:12 |
anteaya | thanks pleia2 | 00:12 |
jeblair | so i think this is a nice idea: have sha.rb read metadata.json and for each dep, if it is in gerrit and zuul-cloner exists, zuul-cloner it, otherwise, puppet-module-install it. that means sha.rb works in ci, and locally, and works generically for any puppet module in our system. | 00:12 |
anteaya | j^2: it appears that direct-release affects how bugs are closed in your projects | 00:13 |
anteaya | j^2: do you plan on creating releases of your repos? | 00:13 |
jeblair | nibalizer: i think we leave the apply-test alone for now and do something different with beaker, yeah? | 00:13 |
nibalizer | if clark were here he would ask that we use git clone instead of puppet module install | 00:13 |
nibalizer | but not enought information is available in metadata.json to do that I think | 00:14 |
nibalizer | not unless you want to interrogate the forge api to figure out the project URL | 00:14 |
crinkle | yeah that's not really sustainable | 00:14 |
nibalizer | jeblair: I think its just a bug in the apply test, doesn't matter to this conversation | 00:14 |
nibalizer | im cribbing the apply-test for my reasoning about this | 00:14 |
nibalizer | but jeblair yea I think your idea works | 00:15 |
crinkle | ++ | 00:15 |
*** fallenpegasus has joined #openstack-infra | 00:15 | |
nibalizer | maybe we just curl the tarball from the forge and ignore puppet-module-install | 00:16 |
jeblair | so maybe we try that out in a few places, and if it works, that would be a really nice thing to break out into something we can gem install | 00:16 |
jeblair | and then that's just "the way" you do module testing on our platform | 00:16 |
j^2 | anteaya: not that I know of. We've been just creating "stable/<blah>" branches. | 00:16 |
j^2 | We don't have releases per se | 00:17 |
jeblair | anteaya: it means that a bug is marked released as soon as a patch that "fixes-bug" that bug is merged | 00:17 |
anteaya | jeblair: oh okay thanks | 00:17 |
*** markvoelker has quit IRC | 00:17 | |
anteaya | j^2: to you want to have bugs marked released as soon as a patch marked fixes bug is merged for your repos? | 00:17 |
*** marun has joined #openstack-infra | 00:18 | |
jeblair | ianw: i think that sounds generally reasonable for a short period, particularly for a non-voting job. i think we've done similar with libvirt before. it's one of the things we'd like to fix with real infra packaging work. | 00:18 |
j^2 | anteaya: yep that's exactly what I'd like | 00:18 |
anteaya | j^2: okey dokey, then that is what the direct-release option does in gerrit/projects.yaml | 00:19 |
*** Kennan2 is now known as Kennan | 00:19 | |
anteaya | j^2: thanks for your patience | 00:19 |
jeblair | nibalizer: i thought we did rm the directories in apply-test; regardless, i _think_ that zuul-cloner will take them over and dtrt | 00:19 |
j^2 | anteaya: :) | 00:20 |
*** ddieterly has joined #openstack-infra | 00:22 | |
jeblair | crinkle, nibalizer: what's the best way to determine a dependency is on gerrit, and where? | 00:22 |
*** marun has quit IRC | 00:23 | |
jeblair | looking at ours, we have things like "openstackci/vcsrepo" | 00:23 |
jeblair | and actually, anything we auto-publish will be under openstackci/ | 00:24 |
jeblair | that's awkward | 00:24 |
nibalizer | yea metdata.json doesn't really have all the information | 00:24 |
jeblair | { "name": "openstackinfra/vcsrepo" }, | 00:24 |
jeblair | { "name": "openstackinfra/jenkins" } | 00:24 |
jeblair | oh right we changed it to openstackinfra | 00:24 |
nibalizer | stackforge/* and openstack/* is sufficient though? | 00:25 |
nibalizer | thats a forge-name | 00:25 |
*** puranamr_ has quit IRC | 00:25 | |
jeblair | { "name": "stackforge/openstacklib", "version_requirement": ">=5.0.0 <6.0.0" } | 00:25 |
nibalizer | so that resolvs to gerrit's stackforge/puppet-openstacklib | 00:26 |
jeblair | that's sort of weird since we don't control that namespace | 00:26 |
nibalizer | the puppet-openstack people do | 00:27 |
*** julim has quit IRC | 00:27 | |
*** ociuhandu has quit IRC | 00:27 | |
openstackgerrit | Jeremy Stanley proposed openstack-infra/system-config: Add Apps Site to System Config https://review.openstack.org/187863 | 00:27 |
jeblair | even if everything were under openstackinfra/, we'd still have to map that to at least 3 gerrit namespaces | 00:27 |
nibalizer | yea | 00:28 |
jeblair | i think that's throwing a significant wrench in this | 00:28 |
nibalizer | so, a mordredesque idea, would be to invent a git_dependencies: { } object into metadata.json | 00:28 |
ianw | jeblair: actually ... hmm, the fix is in https://rhn.redhat.com/errata/RHSA-2015-0987.html | 00:28 |
jeblair | can we do that? | 00:28 |
*** zz_dimtruck is now known as dimtruck | 00:29 | |
nibalizer | I think so, this is adding new fields not changing the meaning of old fields like last time | 00:29 |
ianw | jeblair: but guess what, i think our old friend of image builds failing is coming into play | 00:29 |
jeblair | and tools don't blow up with new fields? | 00:29 |
nibalizer | really any field in that blob is created by someone | 00:29 |
ianw | http://nodepool.openstack.org/rax-iad.devstack-centos7.log <- Exception: Failed to clone openstack/nova | 00:29 |
jeblair | nibalizer, crinkle: https://etherpad.openstack.org/p/puppet-git-dependencies | 00:29 |
*** mtanino has quit IRC | 00:30 | |
*** asettle has joined #openstack-infra | 00:31 | |
nibalizer | jeblair: I don't have the authority to say if we can or can not add fields arbitrarily to that | 00:32 |
nibalizer | http://docs.puppetlabs.com/puppet/latest/reference/modules_publishing.html#write-a-metadatajson-file is the closest I can find to a spec | 00:32 |
jeblair | nibalizer: could use a new file | 00:33 |
*** yamamoto has quit IRC | 00:33 | |
nibalizer | is this how clonemap.yaml was meant to be used? | 00:33 |
*** shuoy has quit IRC | 00:33 | |
jeblair | nibalizer: that's not a bad idea | 00:34 |
nibalizer | you still have to read metdata.json to find puppet-forge dependencies though | 00:35 |
crinkle | so what we already is just have spec_helper_acceptance.rb know what modules it should clone from git | 00:35 |
nibalizer | and you have to filter out dependencies satisfied by clonemap.yml | 00:35 |
crinkle | so adding that stuff to a different file doesn't accomplish anything | 00:35 |
nibalizer | ya i mean the dumb way would be to change all those 'pupet module installs' to be shellouts to zuul-cloner | 00:36 |
openstackgerrit | Joshua Hesketh proposed openstack-infra/system-config: Add jhesketh user and sshkey https://review.openstack.org/190878 | 00:36 |
openstackgerrit | Joshua Hesketh proposed openstack-infra/system-config: Add jhesketh to infrastructure servers https://review.openstack.org/190879 | 00:36 |
nibalizer | and just have a human figure out what uses zuul-cloner and what uses puppet-module-install | 00:36 |
crinkle | nibalizer: no those things can't be installed with zuul-cloner | 00:36 |
jeblair | crinkle, nibalizer: check out idea3 in etherpad | 00:36 |
*** asettle is now known as asettle-pto | 00:37 | |
jeblair | that actually is basically the idea we had started with (before all this), but it's moving the list of repos to zuul-cloner from JJB into the modules, so it's more templatable | 00:37 |
jhesketh | And with that, I bravely run away to an appointment | 00:37 |
jeblair | yeah, spec_helper_acceptance would still install any deps that zuul-cloner did not install | 00:37 |
nibalizer | jhesketh: :) | 00:37 |
nibalizer | gratz, btw | 00:37 |
jhesketh | thanks :-) | 00:38 |
nibalizer | oh it would basially [ -f dir] || puppet module install ? | 00:38 |
crinkle | i don't entirely see the value in splitting it out, sha.rb could just know which modules need to be zuul-cloned and do it there | 00:38 |
nibalizer | crinkle: i guess we started out by saying 'that information is in metadata.json anyways, why duplicate' | 00:39 |
nibalizer | so thats where we started | 00:39 |
*** sigmavirus24 is now known as sigmavirus24_awa | 00:39 | |
nibalizer | now we are somewhat afield | 00:39 |
crinkle | nibalizer: but not all the information we need is there | 00:39 |
crinkle | so we're adding more information in strange places | 00:39 |
nibalizer | no, its not | 00:39 |
crinkle | the simplest thing is just to tell the spec helper to do the thing since most of the logic is there anyways | 00:40 |
crinkle | we also use one module that breaks the mold, our openstack_extras module isn't depended on by anything but it's used in the tests | 00:41 |
crinkle | so we'd clone that from git master anyways | 00:42 |
*** stevemar has joined #openstack-infra | 00:42 | |
jeblair | on idea3, can we remove the line " This has the issue that it doesn't install the non-gerrit dependencies, still need that from somewhere" ? | 00:42 |
nibalizer | so I thought there was a problem to do this with differing testss | 00:42 |
jeblair | cause i think that is addressed by line 27 (spec_helper_acceptance.rb satisfies any dependencies not already satisfied) | 00:42 |
nibalizer | like an example is that keystone's tests don't also run the nova tests, so you could land something in keystone that breaks nova right? | 00:43 |
nibalizer | i know thats not the exact problem at hand... | 00:43 |
jeblair | nibalizer: yes, we call that an asymmetric gate | 00:43 |
jeblair | the only way to avoid that is to run symmetric jobs/tests on all repos that participate | 00:44 |
openstackgerrit | Davanum Srinivas (dims) proposed openstack/requirements: Remove suds package from global-requirements https://review.openstack.org/190881 | 00:44 |
jeblair | that line in idea3 is really bothering me, can we either agree that it's a problem or remove it? | 00:44 |
nibalizer | jeblair: so wouldn't we be creating one of those with any of these options? | 00:44 |
*** tiswanso_ has quit IRC | 00:45 | |
*** r-daneel_ has joined #openstack-infra | 00:45 | |
nibalizer | jeblair: better? | 00:45 |
jeblair | doesn't beaker run sha.rb? | 00:45 |
*** tiswanso has joined #openstack-infra | 00:45 | |
*** r-daneel has quit IRC | 00:45 | |
nibalizer | oh | 00:45 |
nibalizer | yes | 00:46 |
jeblair | we can do that if it makes it clearer :) | 00:46 |
*** alivigni has quit IRC | 00:46 | |
nibalizer | I didn't see the part where Idea 3 was using a jjb job, I thought all that was going to be in the sha.rb | 00:46 |
*** baoli has joined #openstack-infra | 00:47 | |
jeblair | nibalizer: okay, so about asymmetric gates, yes, it's really easy to do here. especially if, say for use, we do this with vcsrepo. it would need to run the func tests for _every_ one of our modules to ensure that nothing breaks | 00:47 |
jeblair | nibalizer: we could do that, since after all, we never change vcsrepo anyway. or, instead, we could throw one job on it and say "if it works there, it will probably work for the others" and be done with it :) | 00:47 |
*** radez is now known as radez_g0n3 | 00:47 | |
*** fallenpegasus has quit IRC | 00:48 | |
jeblair | (i would probably vote for the latter) | 00:48 |
nibalizer | okay | 00:49 |
openstackgerrit | Dawid Malinowski proposed openstack-infra/jenkins-job-builder: Add support for OWASP Dependency-Check Plugin https://review.openstack.org/179604 | 00:49 |
jeblair | nibalizer: with idea3, i believe we're encoding the list of "things that should be installed from git" into the clonemap... oh i see.... | 00:49 |
jeblair | nibalizer: you're perhaps saying that sha.rb can handle doing that | 00:50 |
crinkle | yes | 00:50 |
crinkle | it has to know that stuff for when devs are running it locally | 00:50 |
crinkle | so we might as well use that knowledge and zuul-cloner things to it | 00:50 |
crinkle | and add * | 00:50 |
nibalizer | yea that makes sense to me | 00:51 |
*** fallenpegasus has joined #openstack-infra | 00:51 | |
jeblair | does idea3 look right now? | 00:52 |
nibalizer | ya | 00:52 |
nibalizer | though I don't have a strong opinon on this version vs the last version (where jjb was doing the zuul clonery bits) | 00:52 |
nibalizer | it sounds like crinkle is against having another file with a list of dependiencs in it | 00:53 |
crinkle | i'm happier with idea 3 now than when it was jjb doing it | 00:53 |
jeblair | i'm sympathetic, but without the information of forge-module-name -> gerrit-repo-name, i'm not sure how else we can do it. we have to add that info somewhere. | 00:53 |
crinkle | if zuul-cloner wants to read a yaml file then that's okay | 00:54 |
*** koolhead17 has joined #openstack-infra | 00:54 | |
crinkle | jeblair: well that info is in sha.rb | 00:54 |
crinkle | but it doesn't matter entirely whether it's hardcoded in sha.rb or if it reads it from another file | 00:54 |
*** salv-orlando has joined #openstack-infra | 00:55 | |
*** stevemar has quit IRC | 00:55 | |
jeblair | crinkle: i think what i'm instictively trying to do is to get a chunk of code that can do this generically so we can move the data away from the code | 00:55 |
*** shuoy has joined #openstack-infra | 00:55 | |
crinkle | as long as its available to the dev on their laptop | 00:55 |
crinkle | jeblair: sounds fine to me | 00:55 |
jeblair | because when this is done, this is going to be in 300 git repos | 00:55 |
crinkle | jeblair: what is going to be in 300 git repos? all the modules have different dependencies so they'll all have different clonemaps | 00:55 |
crinkle | but the model is there, yes | 00:56 |
nibalizer | yea Idea 3 is starting to look really good | 00:56 |
*** baoli has quit IRC | 00:57 | |
*** abitha has quit IRC | 00:58 | |
jeblair | is the thing added necessary? i think if zuul-cloner is not available, then all modules in metadata.json have not been satisfied, so they all need to be puppet module installed? | 00:58 |
crinkle | i think jeblair is right | 00:59 |
nibalizer | so idea 3 has no metadata.json in it | 00:59 |
nibalizer | I don't want two lists of openstack modules, because that will just get out of date instantly | 00:59 |
jeblair | nibalizer: oh, i imagined it just had the normal and complete metadata.json | 00:59 |
nibalizer | jeblair: so this is what it looks like right now | 01:00 |
nibalizer | http://git.openstack.org/cgit/stackforge/puppet-keystone/tree/spec/spec_helper_acceptance.rb | 01:00 |
*** juggler has quit IRC | 01:00 | |
jeblair | nibalizer: i think the problem with that is that when you publish a module, it needs to have the full deps listed in metadata.json | 01:00 |
nibalizer | I would like to move the block of 'stackforge' stuff, the data anyways, into clonemap | 01:00 |
*** juggler has joined #openstack-infra | 01:00 | |
nibalizer | why is that a problem? I'm saying deduplicate the sha.rb and clonemap.yaml, is all | 01:01 |
*** salv-orlando has quit IRC | 01:01 | |
jeblair | nibalizer: i'm saying no data in sha.rb, list of all deps it metadata.json, list of git repos in clonemap (which is a subset of the previous) | 01:02 |
*** sputnik13 has quit IRC | 01:02 | |
nibalizer | that works for me | 01:03 |
nibalizer | so I could delete my line | 01:03 |
nibalizer | and the bottom line of Idea3 could be appended with ", with data sourced from metadata.json" | 01:03 |
openstackgerrit | Dawid Malinowski proposed openstack-infra/jenkins-job-builder: Add support for OWASP Dependency-Check Plugin https://review.openstack.org/179604 | 01:06 |
*** baoli has joined #openstack-infra | 01:10 | |
jeblair | nibalizer, crinkle: did i summarise pros/cons accurately? | 01:10 |
*** marcusvrn has joined #openstack-infra | 01:11 | |
nibalizer | ya i think so | 01:11 |
crinkle | jeblair: i think so | 01:11 |
nibalizer | crinkle: what about Idea 1 | 01:11 |
nibalizer | well the core of it, one list of modules | 01:11 |
nibalizer | are the dependencies really disjoint? | 01:11 |
jeblair | (idea1 does work well for infra, means we don't have to fiddle with as many files :) | 01:12 |
jeblair | (just install everything whether we need it or not) | 01:12 |
*** alexsyip has quit IRC | 01:13 | |
crinkle | i'm not a fan of it because it means that the logic is in two places | 01:13 |
nibalizer | in idea 1? | 01:13 |
crinkle | nibalizer: yes, when it's run in ci then the logic is in jjb, when it's run on a laptop the logic is in sha.rb | 01:14 |
crinkle | if i need to update something i need to update it in both places | 01:14 |
crinkle | it it's broken in one place i might not be able to reproduce it in the other place | 01:14 |
*** shuoy has quit IRC | 01:15 | |
nibalizer | crinkle: in the infra version of this we keep the list of modules in a git directory, the the laptop workflow is to pull that file and use it | 01:16 |
nibalizer | that refers to the data | 01:16 |
nibalizer | we will always have two pieces of logic, I think | 01:16 |
jeblair | nibalizer: (https://review.openstack.org/184905 automated the laptop workflow) | 01:16 |
nibalizer | depending on context | 01:16 |
jeblair | nibalizer: in infra, we might still want to install external dependencies via modules.env, but as long as we do that before we run beaker, the rest should hold | 01:18 |
*** koolhead17 has quit IRC | 01:18 | |
nibalizer | ya | 01:18 |
openstackgerrit | Merged openstack-infra/system-config: Add Apps Site to System Config https://review.openstack.org/187863 | 01:18 |
jeblair | (that way we don't have the "global requirements" problem) | 01:18 |
crinkle | so we'd need another install_modules.sh for openstack-puppet | 01:20 |
crinkle | we have a lot of modules though, it takes a long time to download all of them :/ | 01:21 |
nibalizer | that would ensure the same versions of all modules for every test (modulo zuul ) | 01:21 |
crinkle | i suppose infra does too | 01:21 |
jeblair | crinkle: it's faster with zuul-cloner, but that's small comfort for the laptop use-case | 01:21 |
nibalizer | which seems more controlled than each module expressing different dependencies | 01:21 |
nibalizer | oh I hadn't thought of that | 01:21 |
jeblair | yeah, in infra we basically want to ignore per-module deps most of the time. | 01:22 |
nibalizer | yea what we put in metadata.json is ... a suggestion | 01:23 |
nibalizer | not what we actually do | 01:23 |
*** patrickeast has quit IRC | 01:23 | |
nibalizer | and we're just trying to be nice to the poor person who tries to use a subset of our modules | 01:23 |
crinkle | but we treat these modules like packages, the metadata.json is a contract | 01:23 |
jeblair | yeah, infra is not as good at this as puppet-openstack :) | 01:24 |
nibalizer | crinkle: but there is another contract though, which is that puppet-glance and puppet-swift can both be in the same modulepath | 01:24 |
nibalizer | and thats what one list gets you | 01:24 |
nibalizer | i think | 01:24 |
nibalizer | at least I think thats the idea behind devstack and global-requirements | 01:24 |
nibalizer | which I'm trying to adapt to puppet I think | 01:24 |
*** koolhead17 has joined #openstack-infra | 01:25 | |
crinkle | discovering that puppet-glance and puppet-swift are broken when installed together is for the integration test to find out, not the functional test | 01:26 |
crinkle | imo | 01:26 |
openstackgerrit | Ian Wienand proposed openstack-infra/nodepool: Enhance logging around image building https://review.openstack.org/190889 | 01:26 |
*** annegentle has joined #openstack-infra | 01:26 | |
nibalizer | so is beaker a functional or integration test? | 01:27 |
jeblair | nibalizer, crinkle: i added a note to idea3 about the way we will install deps in infra. i also added idea3b which is the earlier 'run zuul-cloner from jenkins before running beaker' variant of the idea. | 01:27 |
crinkle | nibalizer: we're using it as a functional test, we could add another thing that uses it as an integration test | 01:27 |
crinkle | but there's a whole other spec on that i think | 01:28 |
nibalizer | ya I think i've become obsessed with doing some kind of devstack-puppet and that's making it hard for me to focus on keeping scope down in this conversation | 01:28 |
nibalizer | so idea3 looks fine for me | 01:28 |
openstackgerrit | James E. Blair proposed openstack-infra/nodepool: Delete leaked instances https://review.openstack.org/190827 | 01:29 |
crinkle | jeblair: 3b seems sort of like 1 to me | 01:30 |
jeblair | nibalizer: modules.env is like openstack/requirements, except that we aren't syncing them to metadata.json. if we add that step, they will be even more similar. i do not believe we should do what openstack does and support modules using different versions of dependencies. | 01:30 |
*** otter768 has joined #openstack-infra | 01:31 | |
nibalizer | i agree, we should support 1 version of stdlib and if other versions work thats cool but not a supported feature | 01:31 |
*** annegentle has quit IRC | 01:31 | |
nibalizer | can I ask another question about the asymetric gate? | 01:31 |
jeblair | crinkle: very similar, but in 1, we had sha.rb depending on a global list of modules, but in 3 it's optional (and sha.rb only depends on the local lib). granted, that's not all in the etherpad. i'll add more words. | 01:32 |
*** yamamoto has joined #openstack-infra | 01:32 | |
crinkle | ty | 01:32 |
jeblair | nibalizer: certainly | 01:32 |
nibalizer | jeblair: so if puppet-keystone-1 and puppet-nova-1 both pass check and get put in the puppet-openstack-beaker gate queue, then zuul fires up a test with both of them in it, in which directory does it run 'bundle exec rspec spec/acceptance' ? If its in the nova dir it runs the nova tests ... but those aren't the keystone tests... but if everything passes the keystone stuff still lands? | 01:34 |
*** hdd has quit IRC | 01:34 | |
*** dims_ has quit IRC | 01:35 | |
*** baoli has quit IRC | 01:35 | |
*** otter768 has quit IRC | 01:35 | |
jeblair | nibalizer: imagine "gate-puppet-nova-beaker" and "gate-puppet-keystone-beaker" and "gate-puppet-integration" jobs | 01:35 |
nibalizer | okay and gate-puppet-integration is some other thing ok | 01:36 |
jeblair | nibalizer: gate-puppet-nova-beaker clones puppet-nova, then runs beaker in it; likewise puppet-keystone | 01:36 |
nibalizer | that does make sense | 01:36 |
nibalizer | and in that case zuul is just helping us ensure the order that things land in isn't going to break stuff | 01:36 |
jeblair | and gate-puppet-integration is like devstack; it clones them both and runs something else :) | 01:36 |
nibalizer | yes yes | 01:36 |
jeblair | right. | 01:36 |
fungi | imagine replacing devstack with "apply all the puppet modules with default values" and then maybe run tempest smoke tests against the resuly | 01:36 |
nibalizer | so in your idea3 you reccomend they share a change queue, why? | 01:36 |
fungi | result | 01:36 |
fungi | er, people clearly are coming to the same conclusions. i'll go back to maintenance plans ;) | 01:37 |
jeblair | nibalizer: because we're actually more concerned with "gate-puppet-keystone-beaker" and "gate-puppet-something-beaker" in this case (where puppet-keystone depends on puppet-something) | 01:37 |
nibalizer | fungi: no thats totally what I want to build, but isn't in scope for this discussion | 01:37 |
*** stpierre has quit IRC | 01:37 | |
jeblair | nibalizer: and "gate-puppet-keystone-beaker" is going to incidentally zuul-clone puppet-something and us it in its tests | 01:38 |
nibalizer | so what would share a change queue in that case? Is 'shraing a change queue' different from 'having the same test name' and 'sharing a gate together' ? | 01:38 |
fungi | nibalizer: i was merely giving an example of an integration test | 01:38 |
jeblair | nibalizer: having the same job name causes projects to share a change queue (it's just the mechanism in place right now, it will change in zuulv3) | 01:38 |
jeblair | nibalizer: it is probably what you mean by "sharing a gate together", but i tend to get really specific and technical talking about this :) | 01:39 |
nibalizer | and you should because there are clearly still holes in my knowlege | 01:39 |
nibalizer | okay I think I'm getting it | 01:40 |
jeblair | a shared change queue means all projects in it land changes in strict sequence, and changes ahead in the queue will be available to changes behind (via zuul-cloner) | 01:40 |
* nibalizer nods | 01:41 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 01:43 | |
*** koolhead_ has joined #openstack-infra | 01:44 | |
*** asettle-pto has quit IRC | 01:44 | |
nibalizer | so i think Idea3 is something I can get behind | 01:45 |
nibalizer | jeblair: it sounds like you like idea3 | 01:45 |
nibalizer | crinkle: ? | 01:45 |
crinkle | i am ++ idea3 | 01:45 |
crinkle | 3a mainly | 01:45 |
*** yamamoto has quit IRC | 01:46 | |
*** r-daneel_ has quit IRC | 01:46 | |
*** achanda has joined #openstack-infra | 01:46 | |
*** koolhead17 has quit IRC | 01:47 | |
jeblair | ++ | 01:48 |
crinkle | \o/ | 01:48 |
*** ayoung has joined #openstack-infra | 01:49 | |
StevenK | crinkle, nibalizer: Can I bug you to look at https://review.openstack.org/#/c/190516/ ? Specifically, am I doing it in a silly way and a clue for the precise test would be lovely | 01:50 |
nibalizer | StevenK: whats the way you want the string to look? | 01:51 |
StevenK | nibalizer: https://translate-dev.openstack.org:443/ -> translate-dev_openstack_org | 01:51 |
nibalizer | it looks like you're trying to nil.gsub and thats barfing | 01:52 |
nibalizer | so maybe thing.gsub unless thing.nil? | 01:52 |
StevenK | nibalizer: But it shouldn't be nil :-( | 01:52 |
*** spzala has quit IRC | 01:52 | |
StevenK | I don't think URI changed that much for precise :-/ | 01:53 |
openstackgerrit | Merged openstack-infra/infra-specs: Add spec for shade https://review.openstack.org/187312 | 01:53 |
*** fallenpegasus has quit IRC | 01:53 | |
StevenK | nibalizer: I'm happy to get at a Precise machine and poke at this, but I'm not clear how to debug it | 01:53 |
*** camunoz is now known as camunoz_away | 01:54 | |
openstackgerrit | Merged openstack-infra/infra-specs: Host a code search service https://review.openstack.org/188574 | 01:56 |
StevenK | nibalizer: I was doing it using regsubst(), but the regex was getting horrible and as I was about to add support for :443 (which may not be there), I yearned for actual ruby | 01:56 |
*** sarob has quit IRC | 01:56 | |
*** unicell has quit IRC | 01:56 | |
crinkle | ugh, looks like URI for ruby 1.8.7 uses URI.parse() instead of URI() | 01:57 |
crinkle | comparing http://ruby-doc.org/stdlib-1.8.7/libdoc/uri/rdoc/URI.html and http://ruby-doc.org/stdlib-1.9.3/libdoc/uri/rdoc/URI.html | 01:57 |
StevenK | Oh BLAH | 01:57 |
StevenK | Why can't we have nice things! | 01:57 |
crinkle | looks like .parse will work on 1.9.3 | 01:58 |
StevenK | Ah ha, nice | 01:58 |
*** asettle has joined #openstack-infra | 01:58 | |
openstackgerrit | melanie witt proposed openstack-infra/project-config: Make check|gate-tempest-dsvm-cells voting https://review.openstack.org/190894 | 01:58 |
*** sabeen1 has joined #openstack-infra | 01:58 | |
StevenK | crinkle: Thanks! | 01:58 |
openstackgerrit | Merged openstack-infra/infra-specs: Add maniphest bug tracking spec https://review.openstack.org/188196 | 01:59 |
*** asettle is now known as asettle-pto | 01:59 | |
*** yonglihe has quit IRC | 01:59 | |
*** yamamoto has joined #openstack-infra | 01:59 | |
*** yonglihe has joined #openstack-infra | 01:59 | |
openstackgerrit | James E. Blair proposed openstack-infra/infra-specs: Add spec covering puppet 4 readiness https://review.openstack.org/175223 | 02:00 |
openstackgerrit | James E. Blair proposed openstack-infra/infra-specs: Add spec for puppet apply work https://review.openstack.org/165217 | 02:00 |
openstackgerrit | James E. Blair proposed openstack-infra/infra-specs: Perform puppet module functional testing https://review.openstack.org/178887 | 02:00 |
*** markvoelker has joined #openstack-infra | 02:01 | |
*** achanda has quit IRC | 02:02 | |
fungi | spec-o-rama! (quite the spec-tacle) | 02:02 |
fungi | i guess they all merge-conflicted on the index list | 02:02 |
nibalizer | fungi: that was a groaner, but i liked it | 02:03 |
*** yanfengxi has joined #openstack-infra | 02:04 | |
*** dims has joined #openstack-infra | 02:05 | |
openstackgerrit | Merged openstack-infra/infra-specs: Perform puppet module functional testing https://review.openstack.org/178887 | 02:06 |
openstackgerrit | Merged openstack-infra/infra-specs: Add spec covering puppet 4 readiness https://review.openstack.org/175223 | 02:06 |
openstackgerrit | Merged openstack-infra/infra-specs: Add spec for puppet apply work https://review.openstack.org/165217 | 02:06 |
*** markvoelker has quit IRC | 02:07 | |
*** yamahata has quit IRC | 02:09 | |
*** yamamoto has quit IRC | 02:09 | |
*** bknudson has quit IRC | 02:10 | |
*** prad_ has quit IRC | 02:16 | |
openstackgerrit | melanie witt proposed openstack-infra/project-config: Make tempest-dsvm-cells job voting https://review.openstack.org/190894 | 02:17 |
*** teran has quit IRC | 02:17 | |
*** Zhongjun has quit IRC | 02:18 | |
*** claudiub has quit IRC | 02:25 | |
*** marcusvrn has quit IRC | 02:26 | |
*** shuoy has joined #openstack-infra | 02:27 | |
*** yamamoto has joined #openstack-infra | 02:28 | |
*** shuoy has quit IRC | 02:28 | |
*** salv-orlando has joined #openstack-infra | 02:36 | |
*** dims has quit IRC | 02:39 | |
*** salv-orlando has quit IRC | 02:41 | |
*** asettle-pto has quit IRC | 02:43 | |
*** esmute has quit IRC | 02:47 | |
openstackgerrit | Steve Kowalik proposed openstack-infra/puppet-zanata: Correctly determine the server id https://review.openstack.org/190516 | 02:49 |
ianw | fungi: so rax-iad.devstack-centos7 & rax-dfw.devstack-f21 have both failed to build, can you restart them? | 02:51 |
*** ddieterly has quit IRC | 02:52 | |
fungi | ianw: sure, just a sec | 02:53 |
ianw | fungi: so modulo the complete magic REST interface, i'm just going to use a combo of https://review.openstack.org/#/c/190889/ , https://github.com/ianw/nodechecker + cron to try keeping on this | 02:55 |
fungi | they're running now. keep in mind that manual image updates don't write to the log, but i'll let you know when they succees, or what the error is if they fail | 02:55 |
fungi | er, s/succees/succeed/ | 02:55 |
ianw | fungi: so i think it explains why all the reruns worked ... other nodes had the right kernel | 02:56 |
*** julim has joined #openstack-infra | 02:58 | |
*** bhunter71 has quit IRC | 02:59 | |
*** yonglihe has quit IRC | 02:59 | |
*** rkukura has quit IRC | 03:00 | |
*** rkukura_ has joined #openstack-infra | 03:00 | |
*** wenlock has joined #openstack-infra | 03:01 | |
*** harlowja_at_home has joined #openstack-infra | 03:02 | |
*** camunoz_away is now known as camunoz | 03:05 | |
*** SumitNaiksatam_ has joined #openstack-infra | 03:05 | |
timrc | jeblair, Do all the jobs that run for a given project in a given pipeline have to run on the same Jenkins master? | 03:06 |
*** SumitNaiksatam has quit IRC | 03:07 | |
*** stevemar has joined #openstack-infra | 03:09 | |
*** julim has quit IRC | 03:09 | |
*** SumitNaiksatam_ has quit IRC | 03:10 | |
fungi | timrc: not at all | 03:10 |
timrc | I guess it's more appropriate to use QueueItems for a given Change? | 03:10 |
timrc | fungi, Ah, okay. | 03:10 |
fungi | timrc: jobs are entirely discrete and run on any master which has an available worker registered to run them | 03:11 |
*** marun has joined #openstack-infra | 03:11 | |
*** yonglihe has joined #openstack-infra | 03:11 | |
fungi | timrc: if you go to our zuul status page and check out the links for all the in-progress jobs you'll see that jobs for a given change are running on a variety of different jenkins masters | 03:12 |
fungi | that allows us to distribute load across multiple masters effectively, since past about 100 slaves on a single master jenkins starts getting cranky | 03:13 |
nibalizer | fungi: do the masters only talk to a single region or anything like that? | 03:14 |
fungi | nibalizer: nope, all over the map | 03:14 |
nibalizer | as you may have noticed, cody has asked us to find the 'scale' button and press it | 03:15 |
fungi | nodepool just round-robins which master it will register the next ready node to | 03:15 |
fungi | nibalizer: press harder | 03:15 |
nibalizer | timrc: ^^ | 03:15 |
fungi | it's pressure-sensitive | 03:15 |
timrc | fungi, Right. I just wasn't sure if jobs were batched but it makes sense and is even better if jobs for any given change can be run on multiple masters. | 03:16 |
fungi | thankfully, with our design, the "scale" button is mostly just getting bigger instance quotas from our providers | 03:16 |
nibalizer | timrc: so i tried to re-create my 'nodes available by type' chart with upstream data | 03:17 |
*** baoli has joined #openstack-infra | 03:17 | |
nibalizer | and its way harder because of the multi jenkins | 03:17 |
*** marun has quit IRC | 03:17 | |
fungi | and then adding more of one not-nodepool server here or there as we cross certain thresholds (spin up an additional jenkins master, or add another git server to the farm, or add more logstash workers, or add more space for log storage, or whatever) | 03:17 |
*** SumitNaiksatam has joined #openstack-infra | 03:18 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 03:18 | |
fungi | adding more zuul mergers too. that was a relatively recent additional scale point. separating a merger daemon out of the scheduler so that we could run multiple merge workers on dedicated servers | 03:19 |
*** mwagner_afk has joined #openstack-infra | 03:20 | |
vipul | Can someone help me debug a readthedocs issue | 03:21 |
vipul | i just submitted a pre-release tag, which kicked off the correct job, which seems to pass on the jenkins side.. | 03:22 |
vipul | but docs not getting updated on the readthedocs site | 03:22 |
vipul | https://readthedocs.org/builds/cue/ | 03:22 |
*** dimtruck is now known as zz_dimtruck | 03:23 | |
*** asettle has joined #openstack-infra | 03:23 | |
*** SumitNaiksatam has quit IRC | 03:24 | |
*** geoffarnold has quit IRC | 03:25 | |
openstackgerrit | Tony Breeds proposed openstack-infra/yaml2ical: Add meeting length parameter https://review.openstack.org/159639 | 03:25 |
openstackgerrit | Tony Breeds proposed openstack-infra/yaml2ical: Fix issue with meetings that start on day1 and end on day2 https://review.openstack.org/190899 | 03:25 |
*** geoffarnold has joined #openstack-infra | 03:26 | |
timrc | fungi, Looking forward to offloading image building from nodepool. | 03:26 |
*** koolhead_ has quit IRC | 03:28 | |
*** wenlock has quit IRC | 03:29 | |
*** geoffarnold has quit IRC | 03:30 | |
*** ivar-lazzaro has quit IRC | 03:30 | |
*** geoffarnold has joined #openstack-infra | 03:30 | |
*** otter768 has joined #openstack-infra | 03:32 | |
timrc | nibalizer, Looks like I'll be headed your way for oscon. | 03:32 |
timrc | Let's do ELK for system logs! | 03:32 |
*** baoli has quit IRC | 03:33 | |
*** otter768 has quit IRC | 03:36 | |
*** dims has joined #openstack-infra | 03:40 | |
*** tiswanso has quit IRC | 03:41 | |
*** stevemar has quit IRC | 03:41 | |
*** stevemar2 has joined #openstack-infra | 03:41 | |
*** dpaterson has quit IRC | 03:41 | |
*** fifieldt has joined #openstack-infra | 03:42 | |
*** baoli has joined #openstack-infra | 03:43 | |
*** baoli has quit IRC | 03:44 | |
*** dguerri` is now known as dguerri | 03:44 | |
fungi | ianw: devstack-f21-1434077681.template.openstack.org in rax-dfw is ready | 03:44 |
fungi | the other is still building | 03:45 |
*** dims has quit IRC | 03:45 | |
*** geoffarnold has quit IRC | 03:45 | |
ianw | fungi: thanks, centos one hopefully has the right kernel now... | 03:47 |
gus | So how do I debug why eventlet can't import eventlet.greenthread in gate? | 03:48 |
*** esmute has joined #openstack-infra | 03:48 | |
gus | (http://logs.openstack.org/36/104436/13/check/gate-oslo.db-python27/8beb37b/console.html) | 03:48 |
gus | or perhaps there's already some known breakage going on? I'm not clear from the scrollback... | 03:50 |
*** markvoelker has joined #openstack-infra | 03:50 | |
*** geoffarnold has joined #openstack-infra | 03:50 | |
fungi | gus: none to my knowledge | 03:52 |
ianw | gus: does it work locally? | 03:52 |
*** esmute has quit IRC | 03:52 | |
nibalizer | timrc: woo | 03:53 |
*** ddieterly has joined #openstack-infra | 03:53 | |
fungi | gus: since https://review.openstack.org/184392 hasn't been approved yet, i'm going to declare it not my fault ;_ | 03:54 |
timrc | Wow I'm an idiot. So fungi and jeblair the reason that I was getting the not_registered was because I forgot to add the job to projects.yaml and zuul was looking for build:job-name:default-label-for-project | 03:54 |
*** dguerri is now known as dguerri` | 03:54 | |
*** jerryz has quit IRC | 03:54 | |
fungi | timrc: i'm sure i've made the same error at least once | 03:54 |
*** markvoelker has quit IRC | 03:55 | |
fungi | ianw: devstack-centos7-1434077662.template.openstack.org in rax-iad is ready | 03:56 |
ianw | fungi: ok, thanks | 03:58 |
ianw | fungi: is the nodepool host in UTC or something else? just figuring out what 14:00 means to it | 03:58 |
*** rossella_s has quit IRC | 03:58 | |
fungi | ianw: utc | 03:58 |
*** ddieterly has quit IRC | 03:58 | |
fungi | all is utc | 03:58 |
*** rossella_s has joined #openstack-infra | 03:58 | |
*** HeOS has quit IRC | 04:00 | |
ianw | fungi: great, can you do me a favor and uname -a devstack-centos7-rax-iad-3018765 | 04:00 |
ianw | the devstack-gate scripts only do this in setup, so it's hidden unless we get to copy the logs out | 04:01 |
*** fallenpegasus has joined #openstack-infra | 04:02 | |
*** fedexo has joined #openstack-infra | 04:03 | |
openstackgerrit | Merged openstack/diskimage-builder: CentOS-6 resize support https://review.openstack.org/188064 | 04:05 |
*** jamespage has quit IRC | 04:05 | |
*** gnuoy has quit IRC | 04:05 | |
fungi | vipul: i'm not finding the hook-cue-rtfd log from your pre-release tag | 04:06 |
fungi | it's possible that i should just be going to sleep now | 04:06 |
*** gnuoy has joined #openstack-infra | 04:06 | |
*** jamespage has joined #openstack-infra | 04:06 | |
fungi | ianw: checking, just a sec | 04:06 |
fungi | ianw: Linux devstack-centos7-rax-iad-3018765.slave.openstack.org 3.10.0-229.el7.x86_64 #1 SMP Fri Mar 6 11:36:42 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux | 04:07 |
openstackgerrit | Merged openstack-infra/irc-meetings: Add meeting_id and agenda_url for QA meetings https://review.openstack.org/190867 | 04:10 |
openstackgerrit | Merged openstack-infra/irc-meetings: Add meeting_id and agenda_url for weekly infra team meeting. https://review.openstack.org/190862 | 04:11 |
*** stevemar2 has quit IRC | 04:12 | |
*** arxcruz has quit IRC | 04:13 | |
fungi | vipul: oh, i figured out why i couldn't find the log. that job's logs get pushed to swift now | 04:13 |
*** harlowja_at_home has quit IRC | 04:14 | |
*** hdd has joined #openstack-infra | 04:14 | |
ianw | fungi: hmm, that's not the right kernel, it should be kernel-3.10.0-229.4.2 | 04:14 |
fungi | vipul: https://jenkins03.openstack.org/job/hook-cue-rtfd/16/console says it successfully hit rtfd's update trigger api endpoint at 03:16:54 utc | 04:15 |
ianw | fungi: can you get me the build log? | 04:15 |
fungi | ianw: i didn't save the terminal buffer from that since it succeeded. is it possible the job ran on a node which had already booted from the earlier image | 04:15 |
ianw | fungi: yeah, that's probably it ... can we clear them all out? | 04:16 |
fungi | it should echo the image name in the console log | 04:16 |
fungi | ianw: looking for whether it says devstack-centos7-1434077662.template.openstack.org near the beginning of the console log | 04:17 |
ianw | fungi: don't think so ... https://jenkins06.openstack.org/job/check-tempest-dsvm-centos7/102/console | 04:18 |
*** Sukhdev has joined #openstack-infra | 04:19 | |
fungi | oh, hrm maybe we never added the builder macro to echo that in all jobs | 04:21 |
fungi | yeah, you can see it in unit test jobs like https://jenkins03.openstack.org/job/gate-heat-python27/164/console | 04:22 |
fungi | oh well, one more item for the to do list | 04:22 |
fungi | i'll correlate the build time from the nodepool log instead | 04:23 |
fungi | ianw: yep, as suspected that's the issue. that node was launched at 2015-06-12 03:37:52 | 04:24 |
fungi | the new image wasn't ready for 20+ minutes after that | 04:24 |
fungi | i'll mark any remaining ready devstack-centos7 nodes in rax-iad for deletion just in case | 04:25 |
fungi | there's only one, and its creation time was 15 minutes after the new image went ready, so should be fine at this point | 04:26 |
fungi | okay, i think i'm done for the evening. overdone even. later everyone | 04:28 |
*** marun has joined #openstack-infra | 04:29 | |
ianw | fungi: thanks for the help | 04:29 |
*** mgedmin has quit IRC | 04:30 | |
*** Mmike has quit IRC | 04:31 | |
*** frickler has quit IRC | 04:31 | |
*** mgedmin has joined #openstack-infra | 04:31 | |
*** fitoduarte has quit IRC | 04:35 | |
*** fallenpegasus has quit IRC | 04:42 | |
*** unicell has joined #openstack-infra | 04:49 | |
*** Mmike has joined #openstack-infra | 04:49 | |
*** Mmike has joined #openstack-infra | 04:49 | |
*** abitha has joined #openstack-infra | 04:50 | |
*** salv-orlando has joined #openstack-infra | 04:50 | |
*** maishsk_afk has quit IRC | 04:52 | |
*** salv-orlando has quit IRC | 04:53 | |
openstackgerrit | Merged openstack/diskimage-builder: Dont fail if were missing setfiles https://review.openstack.org/190453 | 04:53 |
*** ddieterly has joined #openstack-infra | 04:54 | |
*** frickler has joined #openstack-infra | 04:54 | |
*** marun has quit IRC | 04:54 | |
*** abitha has quit IRC | 04:56 | |
openstackgerrit | Merged openstack-infra/project-config: Fix abandon permissions for mox3 repo https://review.openstack.org/190803 | 04:57 |
*** ddieterly has quit IRC | 04:58 | |
*** chlong is now known as chlong_mtg | 04:59 | |
*** geoffarnold has quit IRC | 05:02 | |
*** fawadkhaliq has joined #openstack-infra | 05:03 | |
*** salv-orlando has joined #openstack-infra | 05:03 | |
*** geoffarnold has joined #openstack-infra | 05:04 | |
openstackgerrit | Merged openstack-infra/devstack-gate: Add support for DEVSTACK_GATE_SETTINGS https://review.openstack.org/190321 | 05:05 |
openstackgerrit | Clint Adams proposed openstack-infra/irc-meetings: Add project_id and agenda_url for weekly akanda meeting https://review.openstack.org/190922 | 05:08 |
openstackgerrit | Clint Adams proposed openstack-infra/irc-meetings: Add meeting_id and agenda_url for heat meetings https://review.openstack.org/190923 | 05:08 |
openstackgerrit | Clint Adams proposed openstack-infra/irc-meetings: Add meeting_id and agenda_url for weekly keystone meeting https://review.openstack.org/190924 | 05:08 |
openstackgerrit | Clint Adams proposed openstack-infra/irc-meetings: Add meeting_id and agenda_url for weekly OpenStackClient meetings https://review.openstack.org/190925 | 05:08 |
openstackgerrit | Clint Adams proposed openstack-infra/irc-meetings: Add meeting_id and agenda_url for weekly product team meeting https://review.openstack.org/190926 | 05:08 |
openstackgerrit | Clint Adams proposed openstack-infra/irc-meetings: Add meeting_id and agenda_url for weekly swift meeting https://review.openstack.org/190927 | 05:08 |
openstackgerrit | Clint Adams proposed openstack-infra/irc-meetings: Add project_id and agenda_url for weekly tacker meeting https://review.openstack.org/190928 | 05:08 |
openstackgerrit | Clint Adams proposed openstack-infra/irc-meetings: Add project_id and agenda_url for weekly training-guides meeting https://review.openstack.org/190929 | 05:08 |
*** bkero has quit IRC | 05:10 | |
*** bkero has joined #openstack-infra | 05:10 | |
*** BharatK has joined #openstack-infra | 05:12 | |
*** maishsk_afk has joined #openstack-infra | 05:17 | |
*** yfried has joined #openstack-infra | 05:22 | |
*** harlowja_at_home has joined #openstack-infra | 05:23 | |
*** koolhead17 has joined #openstack-infra | 05:25 | |
*** geoffarnold has quit IRC | 05:29 | |
*** maishsk_afk has quit IRC | 05:30 | |
*** geoffarnold has joined #openstack-infra | 05:30 | |
*** BharatK has quit IRC | 05:31 | |
*** otter768 has joined #openstack-infra | 05:32 | |
*** otter768 has quit IRC | 05:37 | |
*** harlowja_at_home has quit IRC | 05:37 | |
*** AK has joined #openstack-infra | 05:39 | |
*** markvoelker has joined #openstack-infra | 05:39 | |
*** AK has quit IRC | 05:39 | |
*** AzherKhan has joined #openstack-infra | 05:39 | |
*** markvoelker has quit IRC | 05:44 | |
*** fawadkhaliq has quit IRC | 05:44 | |
*** marun has joined #openstack-infra | 05:51 | |
*** fawadkhaliq has joined #openstack-infra | 05:51 | |
*** koolhead17 has quit IRC | 05:54 | |
*** zz_naotok has quit IRC | 05:54 | |
*** ddieterly has joined #openstack-infra | 05:55 | |
*** marun has quit IRC | 05:56 | |
*** BharatK has joined #openstack-infra | 05:56 | |
openstackgerrit | Merged openstack-infra/elastic-recheck: Add query for ceph snapshot delete race fail bug 1464259 https://review.openstack.org/190644 | 05:57 |
openstack | bug 1464259 in Cinder "EC2VolumesTest fails with rbd backend" [Low,Triaged] https://launchpad.net/bugs/1464259 | 05:57 |
*** koolhead17 has joined #openstack-infra | 05:57 | |
*** ildikov_ has quit IRC | 05:58 | |
*** ddieterly has quit IRC | 06:00 | |
*** jtomasek has joined #openstack-infra | 06:00 | |
*** fawadkhaliq has quit IRC | 06:01 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack-infra/project-config: Normalize projects.yaml https://review.openstack.org/190490 | 06:01 |
*** BharatK has quit IRC | 06:04 | |
*** chlong_mtg is now known as chlong | 06:06 | |
*** hdd has quit IRC | 06:07 | |
*** sdake has quit IRC | 06:08 | |
*** koolhead17 has quit IRC | 06:10 | |
*** HeOS has joined #openstack-infra | 06:11 | |
*** koolhead17 has joined #openstack-infra | 06:11 | |
*** ildikov_ has joined #openstack-infra | 06:11 | |
*** armax has quit IRC | 06:13 | |
openstackgerrit | Steve Kowalik proposed openstack-infra/puppet-zanata: Correctly determine the server id https://review.openstack.org/190516 | 06:14 |
*** BharatK has joined #openstack-infra | 06:16 | |
*** HeOS has quit IRC | 06:16 | |
*** amotoki has joined #openstack-infra | 06:16 | |
*** Sukhdev has quit IRC | 06:19 | |
*** mrunge has joined #openstack-infra | 06:23 | |
*** camunoz has quit IRC | 06:27 | |
*** bhunter71 has joined #openstack-infra | 06:28 | |
*** devvesa has joined #openstack-infra | 06:30 | |
*** k4n0 has joined #openstack-infra | 06:33 | |
*** harlowja_at_home has joined #openstack-infra | 06:35 | |
openstackgerrit | Steve Kowalik proposed openstack-infra/system-config: Pass through zanata client parameters https://review.openstack.org/176440 | 06:38 |
*** soren has joined #openstack-infra | 06:38 | |
openstackgerrit | Steve Kowalik proposed openstack-infra/project-config: Support pushing translations to Zanata https://review.openstack.org/181113 | 06:42 |
*** HeOS has joined #openstack-infra | 06:44 | |
*** Guest____ has joined #openstack-infra | 06:45 | |
*** amotoki has quit IRC | 06:47 | |
*** harlowja_at_home has quit IRC | 06:47 | |
*** amotoki has joined #openstack-infra | 06:50 | |
*** Guest____ is now known as jcoufal | 06:51 | |
*** jcoufal is now known as Guest76410 | 06:51 | |
*** maishsk_afk has joined #openstack-infra | 06:52 | |
*** deepakcs has joined #openstack-infra | 06:53 | |
*** Guest76410 has quit IRC | 06:53 | |
*** jcoufal_ has joined #openstack-infra | 06:53 | |
*** dtantsur|afk is now known as dtantsur | 06:54 | |
*** HeOS has quit IRC | 06:55 | |
*** maishsk_afk_ has joined #openstack-infra | 06:55 | |
*** ddieterly has joined #openstack-infra | 06:56 | |
*** maishsk_afk has quit IRC | 06:56 | |
*** maishsk_afk_ is now known as maishsk_afk | 06:56 | |
*** sabeen1 has quit IRC | 06:59 | |
*** derekh has joined #openstack-infra | 06:59 | |
*** ddieterly has quit IRC | 07:00 | |
openstackgerrit | Brian Exelbierd proposed openstack-infra/yaml2ical: Add project and agenda URLs to the bottom of calendar descriptions https://review.openstack.org/190841 | 07:01 |
*** Ala has joined #openstack-infra | 07:07 | |
*** maishsk_afk has quit IRC | 07:08 | |
*** ianw has quit IRC | 07:08 | |
*** ianw has joined #openstack-infra | 07:09 | |
*** isviridov_away is now known as isviridov | 07:10 | |
*** yanfengxi has quit IRC | 07:11 | |
*** markus_z has joined #openstack-infra | 07:14 | |
*** ianw has quit IRC | 07:15 | |
*** fedexo has quit IRC | 07:15 | |
*** ianw has joined #openstack-infra | 07:15 | |
*** fedexo has joined #openstack-infra | 07:16 | |
*** ianw has quit IRC | 07:20 | |
*** markvoelker has joined #openstack-infra | 07:28 | |
*** jerryz has joined #openstack-infra | 07:31 | |
*** gordc has joined #openstack-infra | 07:31 | |
*** maishsk_afk has joined #openstack-infra | 07:32 | |
*** markvoelker has quit IRC | 07:33 | |
*** otter768 has joined #openstack-infra | 07:33 | |
*** frickler_ has joined #openstack-infra | 07:37 | |
*** frickler_ has quit IRC | 07:37 | |
*** shardy has joined #openstack-infra | 07:37 | |
*** otter768 has quit IRC | 07:38 | |
*** samuelBartel has joined #openstack-infra | 07:39 | |
*** jlanoux has joined #openstack-infra | 07:40 | |
*** koolhead17 has quit IRC | 07:40 | |
*** scheuran has joined #openstack-infra | 07:43 | |
*** arxcruz has joined #openstack-infra | 07:43 | |
*** macjack has joined #openstack-infra | 07:44 | |
*** bexelbie|away-le has joined #openstack-infra | 07:46 | |
*** bexelbie|away-le is now known as bexelbie | 07:46 | |
*** Hal has joined #openstack-infra | 07:50 | |
*** Hal is now known as Guest13143 | 07:51 | |
*** dtantsur is now known as dtantsur|bbl | 07:51 | |
*** _nadya_ has joined #openstack-infra | 07:53 | |
*** fedexo has quit IRC | 07:56 | |
openstackgerrit | Joshua Hesketh proposed openstack-infra/system-config: Add jhesketh to infrastructure servers https://review.openstack.org/190879 | 07:56 |
*** mpaolino has joined #openstack-infra | 07:58 | |
*** mpaolino has quit IRC | 07:59 | |
*** teran has joined #openstack-infra | 08:00 | |
*** ZZelle has quit IRC | 08:02 | |
*** dims has joined #openstack-infra | 08:02 | |
*** ZZelle has joined #openstack-infra | 08:02 | |
*** dims has quit IRC | 08:07 | |
vponomaryov | AJaeger: Hello, if you have time, please, look at this one-liner - https://review.openstack.org/#/c/190624 | 08:13 |
*** chlong is now known as chlong_afk | 08:16 | |
*** fdegir has joined #openstack-infra | 08:16 | |
*** _nadya_ has quit IRC | 08:18 | |
*** pblaho has quit IRC | 08:19 | |
*** HeOS has joined #openstack-infra | 08:19 | |
*** jistr has joined #openstack-infra | 08:20 | |
*** claudiub has joined #openstack-infra | 08:22 | |
*** maishsk_afk has quit IRC | 08:26 | |
*** lxsli is now known as lexloofer | 08:26 | |
*** HeOS has quit IRC | 08:31 | |
*** _nadya_ has joined #openstack-infra | 08:32 | |
*** isviridov is now known as isviridov_away | 08:33 | |
*** ildikov_ has quit IRC | 08:34 | |
*** pblaho has joined #openstack-infra | 08:34 | |
*** cdent has joined #openstack-infra | 08:35 | |
*** e0ne has joined #openstack-infra | 08:38 | |
*** dizquierdo has joined #openstack-infra | 08:38 | |
*** fhubik has joined #openstack-infra | 08:42 | |
*** ruagair has quit IRC | 08:43 | |
*** smyers has quit IRC | 08:46 | |
*** vipul has quit IRC | 08:47 | |
*** wayneeseguin has quit IRC | 08:48 | |
*** vipul has joined #openstack-infra | 08:48 | |
*** jerryz has quit IRC | 08:49 | |
*** NobodyCam has quit IRC | 08:49 | |
*** NobodyCam has joined #openstack-infra | 08:50 | |
*** crinkle has quit IRC | 08:50 | |
*** esp has quit IRC | 08:52 | |
*** smyers has joined #openstack-infra | 08:52 | |
*** med_ has quit IRC | 08:53 | |
*** vponomaryov has quit IRC | 08:53 | |
*** bauwser has joined #openstack-infra | 08:53 | |
*** vponomaryov has joined #openstack-infra | 08:53 | |
*** esp has joined #openstack-infra | 08:53 | |
*** bauwser has quit IRC | 08:54 | |
*** jyuso1 has quit IRC | 08:54 | |
*** isviridov_away is now known as isviridov | 08:56 | |
*** claudiub has quit IRC | 08:57 | |
*** e0ne has quit IRC | 08:57 | |
*** claudiub has joined #openstack-infra | 08:58 | |
*** ParsectiX has joined #openstack-infra | 09:00 | |
*** nijaba has quit IRC | 09:01 | |
*** woodster_ has quit IRC | 09:01 | |
*** bauzas has joined #openstack-infra | 09:03 | |
*** chlong_afk has quit IRC | 09:03 | |
*** wayneeseguin has joined #openstack-infra | 09:04 | |
*** afazekas has joined #openstack-infra | 09:04 | |
*** dguerri` is now known as dguerri | 09:05 | |
*** mfmcdonagh has joined #openstack-infra | 09:07 | |
*** mcdonagm has joined #openstack-infra | 09:07 | |
*** jyuso1 has joined #openstack-infra | 09:07 | |
*** _nadya_ has quit IRC | 09:08 | |
*** nijaba has joined #openstack-infra | 09:09 | |
*** pelix has joined #openstack-infra | 09:09 | |
*** kushal has joined #openstack-infra | 09:10 | |
*** jyuso1 has quit IRC | 09:13 | |
*** markvoelker has joined #openstack-infra | 09:16 | |
*** spredzy is now known as spredzy|afk | 09:21 | |
*** markvoelker has quit IRC | 09:21 | |
*** pblaho has quit IRC | 09:23 | |
*** ildikov_ has joined #openstack-infra | 09:25 | |
*** marun has joined #openstack-infra | 09:29 | |
*** marun has quit IRC | 09:34 | |
*** dizquierdo has quit IRC | 09:45 | |
*** kaisers1 has joined #openstack-infra | 09:48 | |
*** dims has joined #openstack-infra | 09:49 | |
*** ociuhandu has joined #openstack-infra | 09:50 | |
*** dims has quit IRC | 09:50 | |
*** toabctl has quit IRC | 09:52 | |
*** toabctl has joined #openstack-infra | 09:52 | |
*** dims has joined #openstack-infra | 09:56 | |
*** BharatK has quit IRC | 09:59 | |
*** kaisers has joined #openstack-infra | 10:02 | |
*** e0ne has joined #openstack-infra | 10:04 | |
*** e0ne is now known as e0ne_ | 10:04 | |
*** ParsectiX has left #openstack-infra | 10:05 | |
*** ParsectiX has joined #openstack-infra | 10:05 | |
*** e0ne_ is now known as e0ne | 10:06 | |
openstackgerrit | Merged openstack-infra/project-config: Fix enabling of rally project in ci jobs https://review.openstack.org/190624 | 10:06 |
*** ams__ has joined #openstack-infra | 10:06 | |
*** ParsectiX has left #openstack-infra | 10:06 | |
*** ildikov_ has quit IRC | 10:07 | |
*** alexpilotti has joined #openstack-infra | 10:07 | |
*** maishsk_afk has joined #openstack-infra | 10:08 | |
*** ParsectiX has joined #openstack-infra | 10:10 | |
*** yfried has quit IRC | 10:10 | |
*** BharatK has joined #openstack-infra | 10:11 | |
openstackgerrit | Di Xu proposed openstack-infra/jenkins-job-builder: Support deep merge of defaults https://review.openstack.org/150730 | 10:13 |
*** pc_m has joined #openstack-infra | 10:14 | |
*** bexelbie is now known as bexelbie|afk | 10:17 | |
openstackgerrit | Bradley Jones proposed openstack-infra/project-config: Create Magnum UI repo https://review.openstack.org/190998 | 10:22 |
*** dizquierdo has joined #openstack-infra | 10:22 | |
*** kaisers1 has quit IRC | 10:34 | |
*** kaisers has quit IRC | 10:34 | |
*** maishsk_afk has quit IRC | 10:35 | |
*** maishsk_afk has joined #openstack-infra | 10:36 | |
*** bexelbie|afk is now known as bexelbie | 10:37 | |
*** ianw has joined #openstack-infra | 10:42 | |
openstackgerrit | Ian Wienand proposed openstack/diskimage-builder: Update default Fedora to 22 https://review.openstack.org/185843 | 10:42 |
openstackgerrit | Ian Wienand proposed openstack/diskimage-builder: Add YUM variable to for Fedora >= 22 https://review.openstack.org/185841 | 10:42 |
openstackgerrit | Ian Wienand proposed openstack/diskimage-builder: Cleanup yum downloading https://review.openstack.org/186620 | 10:42 |
openstackgerrit | Ian Wienand proposed openstack/diskimage-builder: Revert "Revert "Ensure DIB_RELEASE is exported for fedora"" https://review.openstack.org/191009 | 10:42 |
samueldmq | morning | 10:44 |
*** k4n0 has quit IRC | 10:44 | |
*** koolhead17 has joined #openstack-infra | 10:44 | |
*** koolhead17 has quit IRC | 10:47 | |
*** BharatK_ has joined #openstack-infra | 10:49 | |
*** maishsk_afk has quit IRC | 10:53 | |
*** maishsk_afk has joined #openstack-infra | 10:55 | |
*** dtantsur|bbl is now known as dtantsur | 10:57 | |
*** fifieldt has quit IRC | 10:58 | |
*** crinkle has joined #openstack-infra | 10:59 | |
*** BharatK_ has quit IRC | 11:00 | |
*** yamamoto has quit IRC | 11:01 | |
*** fdegir has quit IRC | 11:01 | |
*** BharatK has quit IRC | 11:02 | |
*** maishsk_afk has quit IRC | 11:03 | |
*** fdegir has joined #openstack-infra | 11:03 | |
*** AzherKhan has quit IRC | 11:05 | |
sdague | jhesketh: it's times like this where I wish you already had infra-root :) | 11:05 |
sdague | need a patch promoted | 11:05 |
jhesketh | sdague: heh, nearly | 11:06 |
*** shardy_ has joined #openstack-infra | 11:06 | |
*** shardy has quit IRC | 11:07 | |
jogo | jhesketh: any idea why ES is backed up / how to tell why | 11:07 |
*** fhubik is now known as fhubik_afk | 11:07 | |
*** BharatK has joined #openstack-infra | 11:09 | |
jhesketh | jogo: unfortunately the most insight I have at the moment is http://cacti.openstack.org/cacti/graph_view.php?action=tree&tree_id=1&leaf_id=24&page=2 | 11:09 |
jogo | hmm http://zuul.openstack.org/ is slow for me too | 11:09 |
jhesketh | looks like something is chewing up gearman looking at the queues | 11:10 |
sdague | jhesketh: that's probably all the gate reseting off of zuul | 11:10 |
sdague | es nodes being slow is typically an io issue on one of the nodes in the cluster | 11:10 |
jhesketh | yeah zuul is not being very responsive to me either | 11:10 |
sdague | which is often a noisy neighbor issue | 11:11 |
jogo | sdague: I wonder if some log grew recently | 11:11 |
*** shardy_ has quit IRC | 11:11 | |
sdague | you want to look at the elasticsearch nodes in cacti for that | 11:11 |
sdague | it's almost always the search cluster backend | 11:11 |
*** shardy has joined #openstack-infra | 11:12 | |
sdague | es1 is blank in cacti - that can't be good - http://cacti.openstack.org/cacti/graph_view.php?action=tree&tree_id=1&leaf_id=119 | 11:12 |
sdague | did that node get lost? | 11:12 |
jogo | sdague: http://cacti.openstack.org/cacti/graph_view.php?action=tree&tree_id=1&leaf_id=123 is almost full | 11:12 |
jhesketh | I think it's more than just es having trouble | 11:13 |
jhesketh | zuul's tcp connections don't look too healthy either | 11:13 |
sdague | jogo: yeh, someone was mentioning that in channel | 11:13 |
sdague | jhesketh: yeh, but I think they are independent events | 11:13 |
jhesketh | right, possibly | 11:14 |
*** BharatK_ has joined #openstack-infra | 11:14 | |
jhesketh | or as you say, noisy neighbor/provider issue(s) | 11:14 |
*** hichihara has quit IRC | 11:14 | |
jogo | http://logs.openstack.org/68/188468/2/check/check-tempest-dsvm-neutron-full/e1b8114/logs/?C=S;O=D | 11:16 |
jogo | q-agt is 5.8 MB lol | 11:16 |
*** koolhead17 has joined #openstack-infra | 11:17 | |
*** marcusvrn has joined #openstack-infra | 11:17 | |
jogo | 1.2 MB at INFO level | 11:18 |
*** marcusvrn has quit IRC | 11:23 | |
*** w__ has joined #openstack-infra | 11:26 | |
*** baoli has joined #openstack-infra | 11:28 | |
*** olaph has quit IRC | 11:28 | |
*** shardy_ has joined #openstack-infra | 11:33 | |
*** bexelbie is now known as bexelbie|lunch | 11:35 | |
*** shardy has quit IRC | 11:35 | |
*** fhubik_afk is now known as fhubik | 11:35 | |
*** otter768 has joined #openstack-infra | 11:35 | |
*** ildikov_ has joined #openstack-infra | 11:35 | |
*** baoli has quit IRC | 11:36 | |
*** baoli has joined #openstack-infra | 11:37 | |
flip214 | Is http://status.openstack.org/zuul/ broken? still? | 11:37 |
*** e0ne is now known as e0ne_ | 11:38 | |
*** ParsectiX has quit IRC | 11:39 | |
*** shardy_ has quit IRC | 11:39 | |
*** shardy has joined #openstack-infra | 11:39 | |
*** otter768 has quit IRC | 11:40 | |
*** yamamoto has joined #openstack-infra | 11:42 | |
*** krtaylor has joined #openstack-infra | 11:42 | |
*** yamamoto_ has joined #openstack-infra | 11:42 | |
*** rkukura has joined #openstack-infra | 11:46 | |
*** rkukura_ has quit IRC | 11:46 | |
sdague | it's very slow | 11:47 |
*** yamamoto has quit IRC | 11:47 | |
sdague | we need a fungi back to help sort what's going on I think | 11:47 |
fungi | looking | 11:49 |
*** e0ne_ has quit IRC | 11:49 | |
*** iurygregory has left #openstack-infra | 11:50 | |
*** deepakcs has quit IRC | 11:50 | |
*** markvoelker has joined #openstack-infra | 11:50 | |
*** danpb has joined #openstack-infra | 11:51 | |
*** danpb has left #openstack-infra | 11:52 | |
*** scheuran has quit IRC | 11:52 | |
fungi | i see an apache process eating 100% of a cpu | 11:53 |
StevenK | Mmmmm, nom nom nom | 11:53 |
fungi | i'm betting if i restart apache, we'll see it go right back. if this is someone looping really fast over the status api then i'll need to do some access log analysis to track down and block them | 11:54 |
fungi | okay, apache is started again | 11:56 |
*** esmute has joined #openstack-infra | 11:56 | |
*** marcusvrn has joined #openstack-infra | 11:56 | |
*** marcusvrn1 has joined #openstack-infra | 11:57 | |
*** rossella_s has quit IRC | 11:58 | |
*** rossella_s has joined #openstack-infra | 11:58 | |
*** mrunge has quit IRC | 12:00 | |
flip214 | looks much better, thanks! | 12:01 |
*** marcusvrn has quit IRC | 12:01 | |
*** esmute has quit IRC | 12:01 | |
fungi | yeah, so far i haven't seen apache start to chew up the cpu again, but i'll keep an eye on it | 12:02 |
*** w__ has quit IRC | 12:02 | |
*** macjack has left #openstack-infra | 12:05 | |
*** marcusvrn1 has quit IRC | 12:06 | |
*** dprince has joined #openstack-infra | 12:06 | |
openstackgerrit | Monty Taylor proposed openstack-infra/shade: Add role grant/revoke methods https://review.openstack.org/190478 | 12:09 |
*** marcusvrn has joined #openstack-infra | 12:13 | |
*** bexelbie|lunch is now known as bexelbie | 12:14 | |
*** ddieterly has joined #openstack-infra | 12:19 | |
*** julim has joined #openstack-infra | 12:19 | |
*** ociuhandu has quit IRC | 12:20 | |
*** BharatK has quit IRC | 12:20 | |
*** aysyanne has joined #openstack-infra | 12:21 | |
*** BharatK has joined #openstack-infra | 12:23 | |
*** bknudson has joined #openstack-infra | 12:25 | |
*** ddieterly has quit IRC | 12:26 | |
*** ParsectiX has joined #openstack-infra | 12:26 | |
*** claudiub has quit IRC | 12:27 | |
*** claudiub has joined #openstack-infra | 12:27 | |
sdague | fungi: we need a promote on - https://review.openstack.org/#/c/191010/ | 12:28 |
sdague | neutron jobs a really high fail rate with the pymysql driver change, which is gumming up everything | 12:28 |
*** linuxmaniac has joined #openstack-infra | 12:31 | |
openstackgerrit | Darragh Bailey proposed openstack-infra/jenkins-job-builder: Separate out custom yaml tags into separate classes https://review.openstack.org/180370 | 12:32 |
openstackgerrit | Douglas Mendizábal proposed openstack-infra/project-config: Move dogtag ca tests from experimental to standard checks https://review.openstack.org/190534 | 12:33 |
*** doug-fish has joined #openstack-infra | 12:35 | |
openstackgerrit | Darragh Bailey proposed openstack-infra/jenkins-job-builder: Support lazy resolving of include yaml tags https://review.openstack.org/63580 | 12:36 |
*** isviridov is now known as isviridov_away | 12:38 | |
*** ParsectiX has quit IRC | 12:39 | |
*** pblaho has joined #openstack-infra | 12:41 | |
*** EricGonczer_ has joined #openstack-infra | 12:44 | |
*** afazekas has quit IRC | 12:46 | |
*** ParsectiX has joined #openstack-infra | 12:48 | |
*** ldnunes has joined #openstack-infra | 12:49 | |
*** dpaterson has joined #openstack-infra | 12:50 | |
*** rlandy has joined #openstack-infra | 12:51 | |
*** spzala has joined #openstack-infra | 12:51 | |
*** fhubik is now known as fhubik_afk | 12:52 | |
*** maishsk_afk has joined #openstack-infra | 12:52 | |
*** kaisers has joined #openstack-infra | 12:53 | |
*** fhubik_afk is now known as fhubik | 12:53 | |
*** BharatK_ has quit IRC | 12:54 | |
devananda | fungi: this looks incorrect to me -- https://review.openstack.org/#/admin/groups/950,members | 12:54 |
devananda | fungi: specifically, the problem is that I can no longer approve changes to ironic/stable/kilo | 12:54 |
*** salv-orl_ has joined #openstack-infra | 12:54 | |
devananda | oh - i wonder if ths is the result of the group being renamed, but membership not moving? | 12:54 |
*** salv-orlando has quit IRC | 12:54 | |
dtantsur | devananda, oh, so I'll face the same problem with discoverd group renaming? | 12:55 |
devananda | dtantsur: dunno. maybe? | 12:56 |
devananda | I'm not sure what caused this issue | 12:56 |
*** BharatK has quit IRC | 12:57 | |
*** mpaolino has joined #openstack-infra | 12:57 | |
*** isviridov_away is now known as isviridov | 12:58 | |
*** ddieterly has joined #openstack-infra | 12:58 | |
*** ParsectiX has quit IRC | 12:59 | |
*** fhubik has quit IRC | 12:59 | |
*** hdd has joined #openstack-infra | 13:00 | |
*** e0ne has joined #openstack-infra | 13:01 | |
*** dboik has joined #openstack-infra | 13:02 | |
*** krtaylor has quit IRC | 13:02 | |
*** dims is now known as dimsum__ | 13:02 | |
*** annegentle has joined #openstack-infra | 13:04 | |
*** ParsectiX has joined #openstack-infra | 13:04 | |
*** abregman has joined #openstack-infra | 13:06 | |
*** dboik has quit IRC | 13:07 | |
*** BharatK has joined #openstack-infra | 13:07 | |
*** maishsk_afk has quit IRC | 13:07 | |
fungi | devananda: i think it must not have been updated when the other server project acls were batched for individual stable-maint | 13:08 |
*** tiswanso has joined #openstack-infra | 13:09 | |
*** rguillebert has joined #openstack-infra | 13:09 | |
*** kgiusti has joined #openstack-infra | 13:09 | |
fungi | devananda: it looks like on, for example, nova the stable-maint-core reviewers have added project-specific stable maintainers chosen from that project's core review group | 13:10 |
fungi | devananda: i've added stable-maint-core as an included group in ironic-stable-core now | 13:10 |
fungi | er, in ironic-stable-maint | 13:10 |
*** koolhead17 has quit IRC | 13:11 | |
*** BharatK has quit IRC | 13:11 | |
*** koolhead17 has joined #openstack-infra | 13:12 | |
fungi | mtreinish: mriedem_away: adam_g: zul: Daviey: flaper87: if one of you is okay adding devananda to https://review.openstack.org/#/admin/groups/950,members it sounds like he has some stable backports pending on ironic which need approving | 13:12 |
*** achanda has joined #openstack-infra | 13:13 | |
flaper87 | fungi: I'm more than happy to have him there. | 13:13 |
flaper87 | added | 13:14 |
flaper87 | devananda: fungi ^ | 13:14 |
*** alivigni has joined #openstack-infra | 13:14 | |
*** peristeri has joined #openstack-infra | 13:15 | |
fungi | thanks flaper87! | 13:15 |
*** koolhead17 has quit IRC | 13:16 | |
devananda | cheers! | 13:18 |
*** ociuhandu has joined #openstack-infra | 13:19 | |
*** hrubi has quit IRC | 13:19 | |
*** sdake has joined #openstack-infra | 13:21 | |
Daviey | devananda: I am guessing you are familair with the process and policy? | 13:23 |
devananda | Daviey: yah. been working with adam_g on ironic for a while | 13:24 |
*** ociuhandu has quit IRC | 13:24 | |
Daviey | devananda: Pukka. +1 | 13:24 |
devananda | i'm delighted if stablemaint-core want to / will handle ironic's stable branches | 13:24 |
*** ociuhandu has joined #openstack-infra | 13:24 | |
devananda | but also like to keep an eye on them myself | 13:24 |
*** krtaylor has joined #openstack-infra | 13:25 | |
*** koolhead17 has joined #openstack-infra | 13:26 | |
*** dboik has joined #openstack-infra | 13:28 | |
*** dansmith is now known as superdan | 13:29 | |
*** kushal has quit IRC | 13:29 | |
*** achanda_ has joined #openstack-infra | 13:29 | |
openstackgerrit | Julia Kreger proposed openstack-infra/shade: Correct get_machine_by_mac and add test https://review.openstack.org/191069 | 13:31 |
*** achanda has quit IRC | 13:31 | |
*** rfolco has joined #openstack-infra | 13:32 | |
*** mriedem_away is now known as mriedem | 13:33 | |
mriedem | fungi: devananda: should we drop https://review.openstack.org/#/admin/groups/167,members now? ironic-stable-maint replaces that now | 13:35 |
devananda | mriedem: yes | 13:35 |
*** bradjones has quit IRC | 13:35 | |
*** otter768 has joined #openstack-infra | 13:36 | |
*** bradjones has joined #openstack-infra | 13:38 | |
*** bradjones has quit IRC | 13:38 | |
*** bradjones has joined #openstack-infra | 13:38 | |
*** amitgandhinz has joined #openstack-infra | 13:38 | |
*** derekh is now known as derekh_afk | 13:39 | |
fungi | i can clear out and lock/hide that old group | 13:39 |
fungi | done | 13:40 |
docaedo | fungi: thanks for those last fixes to the app-catalog adition :) I think only thing left (assuming it's up and running fine?) is to switch DNS righ? | 13:40 |
*** otter768 has quit IRC | 13:41 | |
fungi | docaedo: it's not up and running yet. i need to get a few minutes to manually boot a server for it, and then i'll get you the ip address so you can test it out and make sure it's doing what you expect web-wise | 13:42 |
fungi | but after that, yes, dns change | 13:43 |
docaedo | fungi: that's great, understood - thanks much to you and everyone else on this channel for all the help. It's been a great experience from my side, and my understanding and appreciation for all things infra has grown 100x | 13:44 |
*** sslypushenko has quit IRC | 13:45 | |
docaedo | I love that I now have a tangible example of "config as code" I can demonstrate and talk | 13:45 |
docaedo | about with reasonable detail and confidence :) | 13:45 |
*** kaisers has quit IRC | 13:48 | |
*** tvanderwiel has joined #openstack-infra | 13:50 | |
*** woodster_ has joined #openstack-infra | 13:51 | |
*** dguitarbite has quit IRC | 13:51 | |
*** krtaylor has quit IRC | 13:51 | |
*** armax has joined #openstack-infra | 13:52 | |
*** sslypushenko has joined #openstack-infra | 13:53 | |
*** maishsk_afk has joined #openstack-infra | 13:54 | |
*** wenlock has joined #openstack-infra | 13:54 | |
*** rlandy has quit IRC | 13:54 | |
fungi | docaedo: we have some pre-baked slide decks if you want to present them at conferences, or write your own of course! | 13:55 |
*** rguillebert has quit IRC | 13:55 | |
docaedo | I saw the set nibs used recently, that the deck you're talking about (with animated brad pitt gif I think?) | 13:56 |
fungi | i don't know about any animated brad pitt | 13:57 |
openstackgerrit | Daniel Watkins proposed openstack-infra/project-config: Add coverage jobs for cloud-init for both supported Pythons. https://review.openstack.org/191081 | 13:57 |
fungi | well, except for bakshi's depiction of him in cool world | 13:57 |
docaedo | (I might be crazy, now I'm going to find it to be sure :) ) | 13:58 |
mordred | fungi: guess what? | 13:58 |
mordred | fungi: apparently the gate is goign to blow up when we upgarde to 3.4.2 | 13:59 |
fungi | docaedo: most of our collaboratively-maintained infra decks are available at http://docs.openstack.org/infra/publications/ | 13:59 |
fungi | mordred: let's not do that then | 13:59 |
*** lucasagomes has joined #openstack-infra | 13:59 | |
mordred | fungi: something about a bug in mock | 13:59 |
*** annegentle has quit IRC | 14:00 | |
mordred | fungi: lucasagomes knows all the things I think | 14:00 |
*** olaph has joined #openstack-infra | 14:00 | |
lucasagomes | mordred, hi there... well not all, but I know a bit | 14:00 |
fungi | docaedo: oh, and the source for them is at http://git.openstack.org/cgit/openstack-infra/publications/ maintained through our usual code review | 14:00 |
lucasagomes | fungi, mordred this is the issue | 14:00 |
lucasagomes | bugs.python.org/issue23661 | 14:00 |
docaedo | fungi: thanks - here's the one: http://docs.openstack.org/infra/publications/consuming-downstream-infra/ (but I'll leave off, you folks have some work to do!) | 14:00 |
lucasagomes | in the gate we run 3.4.0 so that bug doesn't affect the gate, but once it's updated to >=3.4.2 we are going to hit that | 14:01 |
*** sigmavirus24_awa is now known as sigmavirus24 | 14:01 | |
fungi | lucasagomes: mordred: yikes. that's a fun one | 14:01 |
lucasagomes | yeah | 14:02 |
fungi | open for 3 months and counting | 14:02 |
fungi | with a patch | 14:03 |
fungi | sometimes when i think openstack projects are bad about ignoring bugs with proposed fixes, i just have to look around at other free software projects to see that we're at least not alone | 14:04 |
*** fallenpegasus has joined #openstack-infra | 14:04 | |
*** maishsk_afk has quit IRC | 14:05 | |
lucasagomes | fungi, :-) you should follow the glibc development that's good for our ego | 14:06 |
fungi | touch'e | 14:07 |
fungi | meep, my compose key has gone all broken! | 14:07 |
*** shardy_ has joined #openstack-infra | 14:07 | |
*** annegentle has joined #openstack-infra | 14:07 | |
mordred | fungi: that's what you get for trying to use more than one mouse button and a touch screen | 14:07 |
mordred | fungi: don't you know, the Cult of Jobs has declared such things Bad | 14:08 |
*** EricGonc_ has joined #openstack-infra | 14:08 | |
*** achanda_ has quit IRC | 14:08 | |
*** shardy has quit IRC | 14:09 | |
fungi | xev says the keycodes in my .Xmodmap are still correct | 14:09 |
*** ParsectiX has quit IRC | 14:10 | |
fungi | reapplying it through xmodmap seems to have restored things to normal. i wonder how it got unmapped? | 14:10 |
fungi | i runs in my .xinitrc for crying out loud | 14:10 |
*** wenlock_ has joined #openstack-infra | 14:10 | |
*** rguillebert has joined #openstack-infra | 14:10 | |
fungi | er, it runs | 14:11 |
*** maishsk_afk has joined #openstack-infra | 14:11 | |
*** EricGonczer_ has quit IRC | 14:11 | |
*** dizquierdo has quit IRC | 14:13 | |
*** shardy_ has quit IRC | 14:13 | |
*** shardy has joined #openstack-infra | 14:13 | |
*** maishsk_afk_ has joined #openstack-infra | 14:14 | |
*** gordc has left #openstack-infra | 14:15 | |
*** maishsk_afk has quit IRC | 14:16 | |
*** maishsk_afk_ is now known as maishsk_afk | 14:16 | |
*** eharney has joined #openstack-infra | 14:16 | |
*** bnemec has joined #openstack-infra | 14:16 | |
*** hdd has quit IRC | 14:17 | |
*** hdd has joined #openstack-infra | 14:17 | |
*** annegentle has quit IRC | 14:20 | |
fungi | docaedo: for near-to-mid-term purposes, what size nova instance should i want for apps.openstack.org? in particular how much memory and storage are we looking at? | 14:20 |
*** sputnik13 has joined #openstack-infra | 14:20 | |
mordred | fungi: ALL THE MEMORIES!!!! | 14:21 |
russellb | lolz | 14:21 |
fungi | mordred: so long and thanks for all the memories? | 14:21 |
docaedo | fungi: I expect this site to eventually be in the top 10 of all internet sites, so let's treat it as a very important pet. 256gb ram, 2tb SSD local storage, 17 cores. | 14:22 |
fungi | heh | 14:22 |
fungi | how about in the next 6 months? ;) | 14:23 |
docaedo | fungi: actually doesn't need much since it's just static site so a moderately small VM can handle a lot of traffic - right now it's on two VMs behind a load balances (expected a big spike of traffic around the summit) .. | 14:24 |
docaedo | fungi: so - probably single VM with 8gb of ram would be more than sufficient, what are the flavor choices? | 14:24 |
fungi | docaedo: we generally don't go sub-1gb ram or over 30gb | 14:25 |
openstackgerrit | Doug Hellmann proposed openstack-infra/irc-meetings: Add a script for building courtesy ping list for PTLs https://review.openstack.org/191092 | 14:25 |
fungi | docaedo: what's the current memory footprint in its current vm? | 14:25 |
*** dizquierdo has joined #openstack-infra | 14:26 | |
*** timcline has joined #openstack-infra | 14:26 | |
docaedo | fungi: great question, I'll find out, hopefully can get answer quickly, will let you know. | 14:26 |
*** yamamoto_ has quit IRC | 14:26 | |
fungi | and how much did it spike during teh summit? did you have any trending to see what happened with memory pressure, cpu, et cetera? | 14:26 |
*** bauzas is now known as bauwser | 14:26 | |
fungi | i would like to make sure it size it appropriate to handle traffic levels that pair saw during the summit if you have numbers | 14:27 |
fungi | er, make sure i size it appropriately | 14:27 |
*** bauwser has left #openstack-infra | 14:27 | |
*** kushal has joined #openstack-infra | 14:28 | |
docaedo | fungi: good questions :) I'm asking the right people now, will let you know as soon as I've got an answer. | 14:29 |
*** timcline has quit IRC | 14:29 | |
fungi | docaedo: awesome. sorry i didn't think to ask earlier! :/ | 14:29 |
openstackgerrit | Merged openstack-infra/git-review: Add utf-8 char support https://review.openstack.org/170324 | 14:29 |
docaedo | fungi: no problem, I should have thought about it myself too. at some point it occured to me, but then I forgot again :) | 14:30 |
*** krtaylor has joined #openstack-infra | 14:32 | |
*** sputnik13 has quit IRC | 14:32 | |
*** rfolco has quit IRC | 14:34 | |
*** geoffarnold has quit IRC | 14:34 | |
openstackgerrit | Jeremy Stanley proposed openstack-infra/git-review: Add reviewers on upload https://review.openstack.org/139165 | 14:38 |
*** zz_jgrimm is now known as jgrimm | 14:39 | |
*** weshay has joined #openstack-infra | 14:39 | |
*** _jreslock has joined #openstack-infra | 14:40 | |
marcusvrn | asselin: hi | 14:40 |
*** jgrimm is now known as zz_jgrimm | 14:41 | |
asselin | marcusvrn, hi | 14:41 |
*** yamamoto has joined #openstack-infra | 14:43 | |
*** yamamoto has quit IRC | 14:43 | |
marcusvrn | asselin: I'm finishing the date filter for scoreboard...but I don't know which approach is better: add a date picker plugin or just enter the date manually | 14:44 |
marcusvrn | what do you think? | 14:44 |
*** hdd has quit IRC | 14:45 | |
asselin | plugin is probably more user friendly | 14:45 |
asselin | patrickeast is the main developer | 14:45 |
marcusvrn | yes | 14:45 |
*** abregman has quit IRC | 14:45 | |
marcusvrn | do you know when he is online? | 14:45 |
asselin | he's not online now, but definitely ping him later | 14:46 |
fungi | jeblair: i think part of the git-review feature we were debating earlier this week is already partly written by jd__ in https://review.openstack.org/139701 | 14:46 |
marcusvrn | I'll do that | 14:46 |
asselin | marcusvrn, he should be soon...he's in us pacific time I believe | 14:46 |
*** salv-orl_ has quit IRC | 14:47 | |
marcusvrn | asselin: hmm nice! I'll try to ping him later | 14:47 |
*** hdd has joined #openstack-infra | 14:47 | |
marcusvrn | thanks | 14:47 |
*** mrunge has joined #openstack-infra | 14:47 | |
jeblair | fungi: indeed that looks similar! | 14:47 |
fungi | ouch, our node graph looks pathological. suspecting we have a huge node leak again. checking now | 14:48 |
jeblair | ooh ooh ooh! | 14:48 |
fungi | and, yes, this would be a great opportunity to test-drive the metadata matching | 14:49 |
jeblair | yeah, i think my change is just failing tests because i forgot to git add a test file. brb | 14:49 |
*** e0ne is now known as e0ne_ | 14:49 | |
openstackgerrit | James E. Blair proposed openstack-infra/nodepool: Delete leaked instances https://review.openstack.org/190827 | 14:50 |
jeblair | running local tests | 14:50 |
*** s0nea has quit IRC | 14:50 | |
*** koolhead17 has quit IRC | 14:51 | |
*** sabeen1 has joined #openstack-infra | 14:52 | |
openstackgerrit | Paul Belanger proposed openstack-infra/infra-specs: Host Stackalytics Service https://review.openstack.org/187715 | 14:52 |
*** weshay has quit IRC | 14:53 | |
jeblair | fungi: yeah, i think that passes tests generally. i may still have a race in the test i'm adding, but i think it's safe to go aheand and run that commit in prod if we want to try it out. | 14:53 |
*** maishsk_afk has quit IRC | 14:53 | |
fungi | i'm game. in a few minutes i'll have a more traditionally-assembled alien node uuid list which will provide a good spot-check | 14:54 |
*** s0nea has joined #openstack-infra | 14:54 | |
*** sabeen2 has joined #openstack-infra | 14:54 | |
*** yamahata has joined #openstack-infra | 14:54 | |
fungi | i can go ahead and stop puppet on nodepool.o.o | 14:54 |
*** maishsk_afk has joined #openstack-infra | 14:54 | |
*** zz_dimtruck is now known as dimtruck | 14:54 | |
fungi | hrm, though if we restart nodepoold right now we're likely to tank dib updates | 14:55 |
*** e0ne_ is now known as e0ne | 14:55 | |
openstackgerrit | Julia Kreger proposed openstack-infra/project-config: Update bifrost job settings https://review.openstack.org/191104 | 14:56 |
*** Ala has quit IRC | 14:56 | |
*** tiswanso has quit IRC | 14:56 | |
*** sabeen1 has quit IRC | 14:56 | |
*** annegentle has joined #openstack-infra | 14:58 | |
*** abregman has joined #openstack-infra | 14:58 | |
*** esmute has joined #openstack-infra | 14:59 | |
*** yamamoto has joined #openstack-infra | 15:00 | |
fungi | jeblair: since gfw changes have apparently in the past few days started to cause problems reaching 29418/tcp from china and the https support in git-review is really only solid in master since the last release, i'm trying to mop up changes which are fit to be in 1.25.0 and tag that today. do you mind weighing in on 160152 and 180178 (they're both short a +2)? | 15:00 |
openstackgerrit | lifeless proposed openstack/requirements: Remove VERBOSE global state. https://review.openstack.org/190555 | 15:00 |
openstackgerrit | lifeless proposed openstack/requirements: Group pure and IO functions in update.py. https://review.openstack.org/190554 | 15:00 |
openstackgerrit | lifeless proposed openstack/requirements: Move update.py into the python package. https://review.openstack.org/190523 | 15:00 |
openstackgerrit | lifeless proposed openstack/requirements: Add basic testing of options -> parameters. https://review.openstack.org/190616 | 15:00 |
openstackgerrit | lifeless proposed openstack/requirements: Don't write partial requirements files. https://review.openstack.org/190582 | 15:00 |
openstackgerrit | lifeless proposed openstack/requirements: Convert test_update_suffix to unit tests. https://review.openstack.org/190617 | 15:00 |
openstackgerrit | lifeless proposed openstack/requirements: Ignore the dist directory. https://review.openstack.org/190694 | 15:00 |
openstackgerrit | lifeless proposed openstack/requirements: Move test_update to be unit tests. https://review.openstack.org/190693 | 15:00 |
openstackgerrit | lifeless proposed openstack/requirements: Convert test_pbr to unit tests. https://review.openstack.org/190692 | 15:00 |
openstackgerrit | lifeless proposed openstack/requirements: Split main out a little for testing. https://review.openstack.org/190605 | 15:00 |
openstackgerrit | lifeless proposed openstack/requirements: Make _copy_requires pure. https://review.openstack.org/190604 | 15:00 |
openstackgerrit | lifeless proposed openstack/requirements: Reduce dataloss window through interrupted writes. https://review.openstack.org/190606 | 15:00 |
openstackgerrit | lifeless proposed openstack/requirements: Mark as Python2.7 only the dependencies that are. https://review.openstack.org/189250 | 15:00 |
openstackgerrit | lifeless proposed openstack/requirements: Add upper-constraints.txt. https://review.openstack.org/189251 | 15:00 |
openstackgerrit | lifeless proposed openstack/requirements: Add upper-constraints.txt generator. https://review.openstack.org/189249 | 15:00 |
openstackgerrit | lifeless proposed openstack/requirements: Make _write_setup_py pure. https://review.openstack.org/190565 | 15:00 |
*** hichihara has joined #openstack-infra | 15:01 | |
jeblair | fungi: will do | 15:01 |
fungi | oh yeah, 66 rax-dfw.aliens, 7 rax-iad.aliens, 44 rax-ord.aliens | 15:01 |
fungi | hpcloud only has those 4 "locked" instances, so we don't appear to be leaking there at least | 15:02 |
*** tiswanso has joined #openstack-infra | 15:03 | |
fungi | jeblair: so anyway, i'm leaning toward just cleaning these up normally and not restarting nodepoold while we have image updates underway. what's your opinion? | 15:03 |
*** rfolco has joined #openstack-infra | 15:04 | |
*** ildikov_ has quit IRC | 15:04 | |
jeblair | fungi: okay :( | 15:04 |
*** tonytan4ever has joined #openstack-infra | 15:04 | |
* russellb wonders why this didn't go into gate queue: https://review.openstack.org/#/c/190325 | 15:04 | |
*** esmute has quit IRC | 15:05 | |
*** sdake_ has joined #openstack-infra | 15:05 | |
fungi | jeblair: i say once image updates complete we give it a shot. we seem to have some not-so-slow leaks in rax this week, so i expect we'll be able to see it doing its job fairly quickly anyway | 15:05 |
jeblair | ya | 15:06 |
mordred | wow | 15:06 |
mordred | I guess lifeless is up | 15:06 |
fungi | he never sleeps | 15:06 |
lifeless | its not me thats not sleeping :/ | 15:07 |
clarkb | lifeless o/ | 15:07 |
*** jcoufal_ has quit IRC | 15:07 | |
mordred | zomg | 15:07 |
mordred | and a clarkb | 15:07 |
lifeless | clarkb: o/ how goes the spawn? | 15:07 |
fungi | lifeless: well, it's now _also_ you that's not sleeping ;) | 15:07 |
jeblair | fungi: i have looked at https://review.openstack.org/180178 and it lgtm. but um. just to make sure my reading comprehension is up to par. that whole discussion was about using ssl in _tests_ right? | 15:07 |
clarkb | lifeless not sleeping either | 15:07 |
lifeless | clarkb: it gets better... in about 30 years | 15:07 |
fungi | jeblair: correct, for retrieving the updated gerrit.war | 15:07 |
mordred | I was not sleeping yesterday | 15:07 |
fungi | jeblair: integration testing | 15:08 |
lifeless | mordred: also you cold be reviewing! | 15:08 |
mordred | but it wasn't for those reasons - it was because jetlag + conference | 15:08 |
jeblair | fungi: okay. that is an admirable level of thoroughness. :) | 15:08 |
mordred | lifeless: I could, that is correct | 15:08 |
fungi | jeblair: simple and just wanted to clear it out before release since it's an easy one | 15:08 |
*** rkukura has quit IRC | 15:08 | |
mordred | ++ | 15:08 |
fungi | jeblair: i'm assuming this was to fix some problem pelix had running git-review integration testing locally in hp | 15:09 |
*** rkukura has joined #openstack-infra | 15:09 | |
*** sdake has quit IRC | 15:09 | |
*** sdake has joined #openstack-infra | 15:10 | |
lifeless | mordred: once you've done the pyCon AU thing of course :) | 15:10 |
mordred | lifeless: oh yeah. I shoudl do that | 15:11 |
dhellmann | mordred: we have mox3 all cleaned up now, so I was going to do a release on Monday. The code in your github repo matches what was released as 0.7.0, although there's no tag for that release in the repo itself. I'm going to call the next release, with the requirements updates, 0.8.0. | 15:11 |
*** alex_xu is now known as alexus | 15:11 | |
mordred | dhellmann: ++ | 15:11 |
*** achanda has joined #openstack-infra | 15:11 | |
openstackgerrit | Clint Adams proposed openstack-infra/irc-meetings: Add project_id and agenda_url for weekly product team meeting https://review.openstack.org/190926 | 15:11 |
fungi | jeblair: clarkb: pleia2: SergeyLukjanov: jhesketh: mordred: AJaeger: anteaya: sdague: i'd like to declare a soft freeze on new project creation today. i want to start teeing up the stack of project rename changes shortly and would like to avoid creating more spurious merge conflicts if possible | 15:12 |
pelix | jeblair fungi: problem was that urlopen ignores proxies by default, switching to requests showed some issues around SSL configuration with python 2.7. | 15:12 |
openstackgerrit | Flavio Percoco proposed openstack/requirements: Use pyngus>=1.3.1 https://review.openstack.org/191107 | 15:12 |
pelix | It's still not clear to me whether the last statement by saying that the extra libraries only silence the warning as opposed to adding pure python implementation of SSL that can be configured as expected to close off some SSL vulnerabilities. | 15:13 |
pelix | however it's probably no more/less insecure that before | 15:13 |
pelix | jeblair fungi: ^^ | 15:13 |
*** mrmartin has joined #openstack-infra | 15:13 | |
fungi | pelix: yeah, that's a battle we face with pretty much everything using requests now | 15:14 |
*** salv-orlando has joined #openstack-infra | 15:14 | |
*** dannywilson has joined #openstack-infra | 15:14 | |
*** sdake_ has quit IRC | 15:14 | |
fungi | pelix: you can either solve it by pip installing requests[security] explicitly or running a newer python interpreter | 15:14 |
jeblair | mordred: https://review.openstack.org/160152 lgtm, but you have spent some time with those options, maybe you should look at it too | 15:15 |
fungi | pelix: or you can ignore it and it's no less secure than it was before requests/urllib2 started echoing that warning | 15:15 |
mordred | jeblair: I will now look at it | 15:15 |
*** puranamr has joined #openstack-infra | 15:15 | |
openstackgerrit | Merged openstack-infra/git-review: Switch to requests to support proxying of 'https' https://review.openstack.org/180178 | 15:16 |
fungi | okay, i think i have the current alien leak mopped up for the moment | 15:16 |
pelix | fungi: indeed, but felt that the warning should be left there so someone running the tests can decide whether they would like to do something about the SSL or not | 15:16 |
fungi | pelix: yep | 15:16 |
mordred | jeblair: ah! neat - Ive been setting push url - I didn't know about pushinsteadof | 15:17 |
mordred | but I like it | 15:17 |
*** e0ne is now known as e0ne_ | 15:18 | |
sdague | fungi: ok, fine by me. I will not +A any more of those today. | 15:18 |
fungi | sdague: awesome--thanks! | 15:19 |
fungi | also for those interested, the maintenance plan for today's renames is shaping up at https://etherpad.openstack.org/p/repo-renaming-2015-06-12 | 15:19 |
fungi | the current count is 60 repos | 15:19 |
mordred | jeblair: I should really finish my use-push-url patch | 15:19 |
mordred | although I have been using it as the git-review on my laptop for, you know, almost a year now | 15:20 |
openstackgerrit | Clint Adams proposed openstack-infra/irc-meetings: Add meeting_id and agenda_url for weekly akanda meeting https://review.openstack.org/190922 | 15:20 |
openstackgerrit | Clint Adams proposed openstack-infra/irc-meetings: Add meeting_id and agenda_url for weekly keystone meeting https://review.openstack.org/190924 | 15:20 |
openstackgerrit | Clint Adams proposed openstack-infra/irc-meetings: Add meeting_id and agenda_url for weekly product team meeting https://review.openstack.org/190926 | 15:20 |
openstackgerrit | Clint Adams proposed openstack-infra/irc-meetings: Add meeting_id and agenda_url for weekly swift meeting https://review.openstack.org/190927 | 15:20 |
openstackgerrit | Clint Adams proposed openstack-infra/irc-meetings: Add meeting_id and agenda_url for weekly tacker meeting https://review.openstack.org/190928 | 15:20 |
openstackgerrit | Clint Adams proposed openstack-infra/irc-meetings: Add meeting_id and agenda_url for weekly training-guides meeting https://review.openstack.org/190929 | 15:20 |
fungi | mordred: yeah, i was going to ask if you had time to polish it up today for inclusion in 1.25.0 but i think maybe we just start releasing more often and have a 1.26.0 rsn for that | 15:20 |
*** armax has quit IRC | 15:21 | |
fungi | also i was wondering whether we should switch the doc job for git-review to only publish on release and not post | 15:21 |
fungi | since i have a feeling not a lot of people are running git-review from master, having the published documentation reflect newer features than are present in the latest release could be misleading there | 15:22 |
mordred | fungi: well, I just hit recheck on it | 15:22 |
*** dprince has quit IRC | 15:22 | |
mordred | because I think the old failures were an environmental not-related-to-patch issue | 15:22 |
mordred | fungi: I also agree about release docs | 15:22 |
fungi | oh, cool | 15:22 |
*** mpaolino has quit IRC | 15:23 | |
fungi | yeah, i'll whip up the job change for that real quick now | 15:23 |
*** MarkAtwood has joined #openstack-infra | 15:23 | |
*** michchap has quit IRC | 15:23 | |
*** ildikov_ has joined #openstack-infra | 15:23 | |
*** armax has joined #openstack-infra | 15:24 | |
mgagne | mordred: alright, I can't find the historical data. Where does the jeepyb name come from? | 15:24 |
mordred | mgagne: it's short for "Gerrit Project Builder" | 15:24 |
jeblair | fungi: shall i rebase/stack the rename changes, or were you itching to do that? | 15:24 |
mordred | mgagne: which is inspired by jenkins job builder | 15:24 |
mgagne | mordred: thanks! | 15:25 |
mordred | mgagne: but it's a weird phonetic reworking of how the acronym of that would sound spoken | 15:25 |
*** achanda has quit IRC | 15:25 | |
mordred | mgagne: it's the worst name I've ever made | 15:25 |
*** koolhead17 has joined #openstack-infra | 15:25 | |
openstackgerrit | Gal Sagie proposed openstack-infra/project-config: dragonflow : move from stackforge/ to openstack/ https://review.openstack.org/187471 | 15:25 |
mgagne | mordred: I can't type it right, have to google it everytime | 15:25 |
jeblair | after naming it so, mordred is officially no longer allowed to name projects. we have to get a special dispensation from the bikeshed subcomittee of the tc nomenclature working group each time he starts a new project. | 15:25 |
mordred | mgagne: (GPB is short for "Google Protocol Buffers"...) | 15:25 |
fungi | jeblair: if you want to, have at it. it looks like none of https://review.openstack.org/#/q/status:open+topic:project-rename,n,z have changed since i put together the renames list, so everything should be safe now | 15:25 |
*** michchap has joined #openstack-infra | 15:26 | |
mgagne | fungi: add jeepyb to the list :D /jk | 15:26 |
openstackgerrit | Merged openstack-infra/storyboard-webclient: Removed eslint from compile step https://review.openstack.org/188481 | 15:26 |
fungi | mgagne: heh | 15:26 |
openstackgerrit | Merged openstack-infra/storyboard-webclient: Remove limit parameter from browsing https://review.openstack.org/188199 | 15:26 |
*** e0ne_ is now known as e0ne | 15:27 | |
jeblair | also, is anyone else having problems with the rename etherpad? | 15:27 |
jeblair | http://cacti.openstack.org/cacti/graph.php?action=zoom&local_graph_id=114&rra_id=3&view_type=&graph_start=1431444476&graph_end=1434122876 | 15:28 |
jeblair | huh. that's interesting. | 15:28 |
*** AzherKhan has joined #openstack-infra | 15:28 | |
mordred | jeblair: I agree | 15:28 |
jeblair | there's a rogue abiword. killing. | 15:28 |
*** annegentle has quit IRC | 15:28 | |
*** spzala has quit IRC | 15:28 | |
jroll | dhellmann: did you ever end up writing a spec for servers switching to semver? | 15:28 |
*** annegentle has joined #openstack-infra | 15:29 | |
*** pradk has joined #openstack-infra | 15:30 | |
openstackgerrit | Jeremy Stanley proposed openstack-infra/project-config: Make Python 3.4 voting on git-review again https://review.openstack.org/191115 | 15:31 |
openstackgerrit | Jeremy Stanley proposed openstack-infra/project-config: Only update got-review docs on release https://review.openstack.org/191116 | 15:31 |
jeblair | fungi: Got Review? | 15:32 |
jeblair | i do! | 15:32 |
openstackgerrit | Jeremy Stanley proposed openstack-infra/project-config: Only update git-review docs on release https://review.openstack.org/191116 | 15:32 |
fungi | me too | 15:32 |
openstackgerrit | Merged openstack-infra/git-review: get_remote_url(): also honor url.*.pushInsteadOf https://review.openstack.org/160152 | 15:32 |
jeblair | i'm still getting kicked off of etherpad regularly | 15:33 |
fungi | weird | 15:33 |
fungi | jeblair: when that's happened to me in the past, i've found restarting my browser (iceweasel/firefox) makes it stop | 15:33 |
jeblair | i have not done that in several days, and i have had zuul status running. that's probably a good idea. | 15:34 |
zaro | morning | 15:34 |
jeblair | you know, i'm really not happy that people removed the depends-on lines i added to project rename patches. | 15:35 |
*** ildikov has joined #openstack-infra | 15:36 | |
*** ildikov_ has quit IRC | 15:37 | |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Rename stackforge/mistral to openstack/mistral https://review.openstack.org/175328 | 15:37 |
*** otter768 has joined #openstack-infra | 15:37 | |
*** rguillebert has quit IRC | 15:38 | |
openstackgerrit | Clint Adams proposed openstack-infra/git-review: Add git-review -l as a possibility in man page synopsis and usage doc https://review.openstack.org/191117 | 15:38 |
*** mrmartin has quit IRC | 15:38 | |
*** dizquierdo has quit IRC | 15:40 | |
openstackgerrit | Clint Adams proposed openstack-infra/git-review: Add “git-review -l” to man page synopsis and usage doc https://review.openstack.org/191117 | 15:40 |
*** devvesa has quit IRC | 15:41 | |
*** harlowja_at_home has joined #openstack-infra | 15:41 | |
*** otter768 has quit IRC | 15:41 | |
*** isviridov is now known as isviridov_away | 15:42 | |
*** patrickeast has joined #openstack-infra | 15:42 | |
anteaya | fungi: soft freeze on project-creation acknowledged | 15:44 |
*** alexsyip has joined #openstack-infra | 15:44 | |
fungi | thanks anteaya | 15:44 |
*** dangers_away is now known as dangers | 15:45 | |
*** maishsk_afk has quit IRC | 15:45 | |
openstackgerrit | Daniel Watkins proposed openstack-infra/project-config: Add coverage jobs for cloud-init for both supported Pythons. https://review.openstack.org/191081 | 15:45 |
*** maishsk_afk has joined #openstack-infra | 15:45 | |
fungi | jeblair: yeah, i think a lot of people still aren't aware of the possibility that their changes can be altered in gerrit and no longer match their local copy, and that they should refresh from gerrit any time they go to make new edits | 15:46 |
*** maishsk_afk has quit IRC | 15:46 | |
Clint | fungi: do you know where i might see the breakage 170324 is intended to fix? | 15:46 |
anteaya | fungi jeblair no in one case one person felt their depends on was stale and removed it intentionally | 15:47 |
fungi | Clint: add a change to review-dev or in the openstack-dev/sandbox repo on review.o.o with a non-latin-1 character in the commit subject, then git review -l for that repo | 15:47 |
anteaya | I commented that the depends on was not stale and was required to track a through review | 15:47 |
*** tiswanso has quit IRC | 15:48 | |
fungi | Clint: i take it you're considering writing the missing regression test for that? | 15:48 |
fungi | Clint: if so, thanks! | 15:48 |
openstackgerrit | Armando Migliaccio proposed openstack-infra/devstack-gate: Add configuration switches for features that make Neutron unstable https://review.openstack.org/191121 | 15:49 |
Clint | fungi: i'm trying to understand the change first, but i was thinking non-ascii rather than non-latin1, so that is a helpful bit of info | 15:49 |
*** dtantsur is now known as dtantsur|afk | 15:49 | |
fungi | Clint: well, i say non-latin-1 just to be sure it's not something easily transcoded | 15:49 |
mordred | jeblair: a rogue abiword? sigh | 15:49 |
jeblair | anteaya: thanks. it indeed still depends on a change whether the change has merged or not. i want a depends-on pointing to governance for every project rename change. | 15:50 |
*** achanda has joined #openstack-infra | 15:50 | |
*** rguillebert has joined #openstack-infra | 15:50 | |
fungi | Clint: non-ascii would probably work, but snowman or similar would be a more thorough confirmation | 15:50 |
Clint | fungi: “” look fine to me, which is why i was confused | 15:50 |
mordred | snowman! | 15:50 |
anteaya | jeblair: they added them back but not as a depends on, as a link to a governance change in the commit message | 15:50 |
mordred | just don't name a file that and expect to check the file out of VCS on solaris ... | 15:51 |
Clint | do i even have a font withi snowman installed | 15:51 |
jeblair | anteaya: <sigh> then i will have to do it again. | 15:51 |
*** shardy_ has joined #openstack-infra | 15:51 | |
anteaya | not sure why they don't like depends on in the commit message | 15:51 |
anteaya | jeblair: yeah, sorry :( | 15:51 |
*** kutija has joined #openstack-infra | 15:51 | |
SpamapS | fungi: the right way to say it instead of 'non-latin-1' is likely "multi-byte utf-8" | 15:51 |
jeblair | anteaya: in the future, i'm going to take a _very_ hard line on this and will not fix them. it's in the docs. anything lacking a depends-on will be dropped from the renames. day-of if need be. | 15:51 |
SpamapS | fungi: possibly even "more than 3 byte utf-8" | 15:52 |
anteaya | jeblair: okay thanks for letting me know, I was soft on it as I obviously missed how important it is | 15:52 |
fungi | SpamapS: possibly. though i think we'll run into gerrit issues too in that case | 15:52 |
anteaya | jeblair: I will be clearer in future | 15:52 |
*** shardy has quit IRC | 15:52 | |
fungi | SpamapS: depending on whether it also tries to store that in the database, which currently only supports 3-byte codepoints because yay mysql | 15:53 |
Clint | SpamapS: “ is multi-byte utf-8 :p | 15:54 |
SpamapS | Clint: you're multi-byte utf-8 | 15:54 |
*** tiswanso has joined #openstack-infra | 15:55 | |
*** kutija_ has quit IRC | 15:55 | |
anteaya | jeblair fungi I don't want to undo anything you have done, what can I do to help at this point? | 15:55 |
jeblair | anteaya: in a few minutes, i will ask you to re-review several of the changes | 15:55 |
* anteaya stands by | 15:55 | |
anteaya | jeblair: will do | 15:55 |
openstackgerrit | Tom Cammann proposed openstack-infra/project-config: Create new stackforge project for Cathead https://review.openstack.org/191125 | 15:56 |
*** spzala has joined #openstack-infra | 15:56 | |
fungi | anteaya: yep, and also reviewing the etherpad for inconsistencies would be awesome. the cut-and-paste bits are scripts i'll be running on relevant systems, but having them verbatim in the etherpad helps make them reviewable | 15:56 |
*** shardy_ has quit IRC | 15:57 | |
*** shardy has joined #openstack-infra | 15:57 | |
electrical | nibalizer: do you know how i can test with rspec-puppet if i receive a warning or not? I'm printing out a warning in some cases and want to make sure it does :-) | 15:57 |
*** spzala_ has joined #openstack-infra | 15:57 | |
anteaya | fungi: confirming this is the etherpad in question: https://etherpad.openstack.org/p/repo-renaming-2015-06-12 | 15:58 |
*** rossella_s has quit IRC | 15:58 | |
fungi | anteaya: yep! | 15:58 |
anteaya | great, will peruse | 15:58 |
*** rossella_s has joined #openstack-infra | 15:58 | |
*** rguillebert has quit IRC | 15:59 | |
anteaya | fungi: I will notify you if I see anything worth questioning, I won't edit it myself | 15:59 |
fungi | anteaya: well, if you do edit it, i'll see the color highlights (as long as you're not purely deleting), but whatever works best for you | 16:00 |
*** sputnik13 has joined #openstack-infra | 16:00 | |
anteaya | ah okay thanks | 16:00 |
*** rlandy has joined #openstack-infra | 16:00 | |
*** spzala has quit IRC | 16:01 | |
*** spzala_ is now known as spzala | 16:01 | |
fungi | anteaya: _hopefully_ it's all accurate since i scripted extraction of the rename mapping from the actual code changes, and then scripted generation of the commands from the result | 16:02 |
fungi | when dealing with 60 project renames, i don't trust myself not to miss something | 16:03 |
anteaya | I hope so too | 16:03 |
anteaya | and share your thoughts | 16:03 |
AJaeger | fungi: I'm fine with the soft-freeze. | 16:04 |
Clint | fungi: i'm still not seeing a problem, even with chinese | 16:04 |
openstackgerrit | Zhenguo Niu proposed openstack-infra/project-config: Add ironic-dashboard to openstack https://review.openstack.org/191131 | 16:05 |
AJaeger | fungi: Let's extend it to all the relevant files that we touch during the rename. | 16:05 |
anteaya | I don't see chef-pacemaker on the etherpad (it is an abandoned patch, so makes sense), do you want me to delete it from the infra wikipage? | 16:05 |
nibalizer | electrical: i dont rspec puppet so :shrug: | 16:05 |
*** wuhg has joined #openstack-infra | 16:05 | |
electrical | hehe okay | 16:05 |
AJaeger | Even a chnage to make a job non-voting might cause a merge conflict... | 16:05 |
*** jlanoux has quit IRC | 16:06 | |
*** mrmartin has joined #openstack-infra | 16:06 | |
openstackgerrit | Jeff Peeler proposed openstack-infra/project-config: Make kolla functional check voting https://review.openstack.org/191133 | 16:07 |
fungi | AJaeger: yep, mostly that's just going to be new project creation, but you're right there's a chance other changes touch some of those (not sure i want to freeze zuul/layout.yaml and jenkins/jobs/projects.yaml but i guess we can) | 16:07 |
openstackgerrit | Dirk Mueller proposed openstack-infra/project-config: Start with a green field for RPM packaging https://review.openstack.org/191134 | 16:07 |
AJaeger | fungi: if you want to approve something urgent, go for it. I'll take it slower today... | 16:08 |
*** arxcruz has quit IRC | 16:08 | |
pleia2 | j^2: left a comment in your governance patch | 16:08 |
anteaya | fungi: I'll just remove the mention of chef-pacemaker in the infra wiki, it is abandoned and isn't on the eitherpad | 16:08 |
j^2 | pleia2: looking | 16:08 |
*** harlowja_at_home has quit IRC | 16:08 | |
AJaeger | fungi, anteaya: Anything else you need from me? Otherwise i disappear again... | 16:09 |
anteaya | AJaeger: just reviews on patches that get rebased | 16:09 |
openstackgerrit | Dirk Mueller proposed openstack-infra/project-config: Start with a green field for RPM packaging https://review.openstack.org/191134 | 16:09 |
anteaya | possibly anytime from now to rename | 16:09 |
anteaya | AJaeger: and thanks | 16:09 |
openstackgerrit | Frank van Gemeren proposed openstack-infra/jenkins-job-builder: Add support for Gitlab Plugin https://review.openstack.org/191135 | 16:09 |
openstackgerrit | Frank van Gemeren proposed openstack-infra/jenkins-job-builder: Use an extra level in the XML https://review.openstack.org/191136 | 16:09 |
*** AzherKhan has quit IRC | 16:10 | |
AJaeger | anteaya: Ok, will review some later. | 16:11 |
*** AzherKhan has joined #openstack-infra | 16:11 | |
anteaya | AJaeger: thanks | 16:11 |
*** ddieterly has quit IRC | 16:11 | |
*** sdake_ has joined #openstack-infra | 16:12 | |
*** puranamr_ has joined #openstack-infra | 16:12 | |
*** puranamr has quit IRC | 16:13 | |
*** puranamr_ has quit IRC | 16:13 | |
*** tonytan4ever has quit IRC | 16:14 | |
jeblair | anteaya: sorry, taking longer than expected. maybe another 15 minutes to get those changes ready. | 16:14 |
anteaya | jeblair: no rush from me, dealing with email | 16:14 |
*** frickler_ has joined #openstack-infra | 16:14 | |
*** frickler_ has quit IRC | 16:14 | |
pleia2 | j^2: thumbs up | 16:15 |
j^2 | pleia2: thanks for that catch :) | 16:15 |
pleia2 | now we do have the issue of the rename change depending on the governance change, but I think it's unlikely that the TC will approve the goverance change before our rename, jeblair thoughts? re: https://review.openstack.org/#/c/186532/ and the 2nd Depends-On? | 16:16 |
*** sdake has quit IRC | 16:16 | |
*** bnemec has quit IRC | 16:16 | |
jeblair | pleia2: ah, yeah, we should reverse that; at that point it's a simple add to existing approved program. i will fix that in my surgery, thanks. | 16:17 |
pleia2 | jeblair: great, thanks | 16:17 |
openstackgerrit | Armando Migliaccio proposed openstack-infra/project-config: Add unstable Neutron job https://review.openstack.org/191141 | 16:19 |
openstackgerrit | Armando Migliaccio proposed openstack-infra/devstack-gate: Add configuration switches for features that make Neutron unstable https://review.openstack.org/191121 | 16:19 |
fungi | the alien mop-up hasn't really solved the node starvation much. looks like we're getting an "unknown error" trying to launch in hpcloud. checking for other leaks there now | 16:22 |
*** dguerri is now known as dguerri` | 16:22 | |
*** puranamr has joined #openstack-infra | 16:23 | |
*** e0ne has quit IRC | 16:24 | |
*** koolhead17 has quit IRC | 16:24 | |
fungi | ahh, yep. large floating-ip leak there | 16:25 |
fungi | 585 fips not associated with any instance | 16:25 |
openstackgerrit | David Shrewsbury proposed openstack-infra/shade: Add create method for secgroup rule https://review.openstack.org/190763 | 16:26 |
greghaynes | ah, were node starved? | 16:27 |
*** gyee_ has joined #openstack-infra | 16:28 | |
*** dprince has joined #openstack-infra | 16:28 | |
*** Swami has joined #openstack-infra | 16:29 | |
openstackgerrit | David Shrewsbury proposed openstack-infra/shade: Add create method for secgroup rule https://review.openstack.org/190763 | 16:30 |
openstackgerrit | Dirk Mueller proposed openstack-infra/project-config: Start with a green field for RPM packaging https://review.openstack.org/191134 | 16:32 |
dhellmann | jroll: ttx and I discussed that, and we thought the mailing list thread was sufficient documentation for now | 16:32 |
jroll | dhellmann: great, thanks :) | 16:32 |
*** ashleighfarnham has joined #openstack-infra | 16:33 | |
*** samuelBartel has quit IRC | 16:33 | |
*** puranamr has quit IRC | 16:33 | |
*** doude has quit IRC | 16:34 | |
dhellmann | jeblair, fungi: speaking of specs, should I put one together about my ideas for reviewing tag requests, or should I start a mailing list thread first/instead? | 16:34 |
*** wznoinsk has quit IRC | 16:35 | |
dhellmann | jeblair, fungi : the tl;dr is to have a repo with yaml files indicating the next requested tag for a project, to give us something to review, and in phase 1 use those files to create tags by hand and in phase 2 have a job do the tagging for us on merge. Details on file format, etc., TBD but would include version, sha, series, and any special highlights to note in the announce email. | 16:36 |
fungi | dhellmann: a spec might be a better place to start, since this is going to be heavy on the "what is possible in our toolchain and what do infra admins want to be stuck supporting" | 16:36 |
marcusvrn | patrickeast: ping | 16:36 |
jeblair | dhellmann: i think it will need an infra-spec eventually; so either list+spec or just spec. | 16:36 |
*** esmute has joined #openstack-infra | 16:36 | |
dhellmann | k | 16:36 |
*** MarkAtwood has quit IRC | 16:36 | |
*** puranamr has joined #openstack-infra | 16:36 | |
fungi | i'm basically okay with the "we have a repo where people can upload requests to have a release manager tag something" plan, but once we step past that into automation is where it gets concerning for me | 16:37 |
dhellmann | yeah, that part is pretty fuzzy so I'm not in a rush to take that step | 16:37 |
fungi | i would still like to see support in gerrit where it should be rather than some elaborate machine to automate this | 16:37 |
jeblair | fungi: ++ | 16:38 |
jeblair | i thought i heard sdague was going to work on that ;) | 16:38 |
flaper87 | fungi: just a heads up, images seem to have been correctly created | 16:38 |
dhellmann | jeblair: nice try ;-) | 16:38 |
sdague | jeblair: you keep hearing wrong :) | 16:38 |
jeblair | i know what i heard; not my fault you said "tag" and "gerrit" :P | 16:39 |
fungi | flaper87: awesome, thanks for checking! | 16:39 |
*** olaph has quit IRC | 16:40 | |
frickler | tonyb: are you still interested in getting vivid to run? https://review.openstack.org/189141 and https://review.openstack.org/189142 could use a bit more review. | 16:42 |
frickler | tonyb: once these are merge, we should be ready to get some nodepool instances with vivid, I did that already in my local setup | 16:43 |
greghaynes | jeblair: fungi AIUI we dont publish the nodepool logs for image uploads because some creds get leaked there? Has there been any thought to exposing the warning and above logs only (I assume creds are only leaked on debug)? | 16:43 |
*** AzherKhan has quit IRC | 16:44 | |
fungi | greghaynes: i don't honestly know. it needs to be investigated/researched | 16:44 |
jeblair | dhellmann, fungi: yeah, i _think_ there was some talk about putting a signed tag block in the yaml that's reviewed, in which case, maybe i could be comfortable with it. definitely spec worthy. | 16:44 |
*** olaph has joined #openstack-infra | 16:44 | |
fungi | jeblair: dhellmann: right. if that's a route we want to go i can play around with some tooling options to extract and propose and reapply a tag object | 16:45 |
dhellmann | jeblair: what does that buy us? | 16:45 |
dhellmann | I guess we don't just want a bot signing the packages? | 16:45 |
fungi | dhellmann: it would allow the projects' devs to submit tags, and someone else to decide whether they were okay and let them through into the release pipeline | 16:45 |
jeblair | dhellmann: the main thing this is dancing around is that right now, we have tas that are signed by a human that is part of a trust network. we can have a bot sign tags, but that is worth less. | 16:46 |
jeblair | "we have tags" | 16:46 |
*** Sukhdev has joined #openstack-infra | 16:46 | |
fungi | also if it's a mechanism anyone can use to propose a tag object they've created, then we get to preserve signatures from the dev teams who worked on the project rather than a release manager form some other tangentially related team | 16:47 |
fungi | s/form/from/ | 16:47 |
dhellmann | ok, that makes sense | 16:47 |
*** cdent_ has joined #openstack-infra | 16:49 | |
*** cdent has quit IRC | 16:50 | |
*** cdent_ is now known as cdent | 16:50 | |
*** ashleighfarnham has quit IRC | 16:50 | |
fungi | it also might make a good coordination point since the dev proposing the release can also propose release notes along with the tag object, and all that can get fed into something like automated release announcements too | 16:52 |
dhellmann | fungi: yeah, that's what I meant by "highlights" in the description ^^ | 16:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: networking-bgpvpn: move from stackforge/ to openstack/ https://review.openstack.org/188822 | 16:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Puppet: move from Stackforge to OpenStack https://review.openstack.org/176326 | 16:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Project rename stackforge/ironic-discoverd -> openstack/ironic-inspector https://review.openstack.org/188030 | 16:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: vmware-nsx: move from stackforge/ to openstack/ https://review.openstack.org/184558 | 16:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Move zvm-driver to stackforge-attic https://review.openstack.org/179738 | 16:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Rename stackforge/cookbook* to openstack/cookbook* https://review.openstack.org/186532 | 16:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: networking-midonet: move from stackforge/ to openstack/ https://review.openstack.org/187671 | 16:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Remove old Fuel plugins https://review.openstack.org/179714 | 16:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Move networking-l2gw project under openstack namespace https://review.openstack.org/185705 | 16:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: networking-ovn: move from stackforge/ to openstack/ https://review.openstack.org/184159 | 16:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Move networking-odl into the openstack namespace https://review.openstack.org/186813 | 16:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: networking-cisco: move from stackforge/ to openstack/ https://review.openstack.org/187768 | 16:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: networking-ofagent: move from stackforge/ to openstack/ https://review.openstack.org/187859 | 16:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: dragonflow : move from stackforge/ to openstack/ https://review.openstack.org/187471 | 16:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Rename stackforge/octavia -> openstack/octavia https://review.openstack.org/182748 | 16:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Rename stackforge/mistral to openstack/mistral https://review.openstack.org/175328 | 16:53 |
anteaya | it will be a patch bomb kind of day | 16:54 |
mestery | howdy infra folks! I can't seem to edit the members of the neutron-stable here (team https://review.openstack.org/#/admin/groups/539,info), is that be design? | 16:54 |
jeblair | anteaya: here's what i did for the governance changes -- any new programs have a "Depends-On:" header. any simple repo additions to existing programs have a note that says "Related governance change" so we know the cleanup patch has been proposed. | 16:54 |
jeblair | anteaya: and stackforge attic moves have neither | 16:54 |
anteaya | jeblair: very good | 16:54 |
* anteaya reviews | 16:55 | |
*** mrmartin has quit IRC | 16:55 | |
*** jith_ has quit IRC | 16:55 | |
jeblair | anteaya, fungi, pleia2, AJaeger: there were some _serious_ merge conflicts in there, and git did a terrible job on its own. so they are going to need real re-review. particularly around l2gw and mistral. | 16:56 |
anteaya | thanks for the heads up | 16:56 |
jeblair | (like, it was merging projects together and stuff) | 16:56 |
* anteaya starts with https://review.openstack.org/#/c/184159/5 the head of the stack | 16:56 | |
*** Guest13143 has quit IRC | 16:56 | |
fungi | mestery: the stable-maint-core team owns the per-project stable-maint teams | 16:57 |
jeblair | (in case you are wondering, they are in "least number of merge conflicts" order :) | 16:57 |
anteaya | ha ha ha | 16:57 |
anteaya | there's always a plan | 16:57 |
*** sarob has joined #openstack-infra | 16:57 | |
mestery | fungi: OK, cool, I'll work with those folks. Thanks! | 16:57 |
jeblair | i'm going to take a short break and then review them myself. biab. | 16:57 |
fungi | mestery: they want to vet new additions to make sure the people being proposed are intimately familiar with the backport standards and stable release management guidelines | 16:57 |
fungi | jeblair: thanks for untangling all that | 16:58 |
*** unicell has quit IRC | 16:58 | |
pleia2 | I'm packing up now to take the husband to the doctor, likely won't be back until mid-rename | 16:58 |
fungi | pleia2: g'luck | 16:58 |
patrickeast | marcusvrn: pong | 16:58 |
fungi | the fip leak cleanup seems to be getting our node starvation back under control | 16:58 |
anteaya | jeblair: yes, thank you | 16:59 |
anteaya | pleia2: good healing energy to surround you, your husband and the doctor | 16:59 |
*** lucasagomes is now known as lucas-beer | 17:00 | |
openstackgerrit | Armando Migliaccio proposed openstack-infra/project-config: Add unstable Neutron job https://review.openstack.org/191141 | 17:01 |
marcusvrn | patrickeast: hi! I'm working on some improvements of scoreboard | 17:01 |
patrickeast | marcusvrn: awesome! | 17:01 |
marcusvrn | patrickeast: I have talked to asselin and he said that you are the main dev | 17:02 |
openstackgerrit | Armando Migliaccio proposed openstack-infra/devstack-gate: Add configuration switches for features that make Neutron unstable https://review.openstack.org/191121 | 17:02 |
marcusvrn | patrickeast: I implemented a date filter instead of timeframe in order to search by periods | 17:02 |
*** lucas-beer has left #openstack-infra | 17:03 | |
*** viglesias has joined #openstack-infra | 17:03 | |
patrickeast | marcusvrn: ooh nice, have you posted a review for it? | 17:03 |
*** viglesias has left #openstack-infra | 17:03 | |
marcusvrn | patrickeast: not yet, to finish it I have to decide which approach is better: add a date picker plugin (more user friendly) or just leave the field to enter manually the date | 17:04 |
*** annegentle has quit IRC | 17:05 | |
marcusvrn | what do you think | 17:05 |
patrickeast | marcusvrn: gotcha, i’m cool with either one… any way to choose a date range is better than none ; ) | 17:05 |
patrickeast | marcusvrn: maybe as a starting point you could just use a html5 date input or something, should work on most browsers to make it at least somewhat easy to enter in tiems | 17:06 |
patrickeast | times* | 17:06 |
vipul | can anyone help fix a readthedocs issue? https://readthedocs.org/builds/cue/ | 17:06 |
patrickeast | marcusvrn: but if you want to put in a nice date picker im totally on board | 17:06 |
marcusvrn | patrickeast: oh, nice! I'll take a look on that | 17:07 |
marcusvrn | patrickeast: good, let me see what I can do :) | 17:07 |
*** shardy has quit IRC | 17:07 | |
*** salv-orl_ has joined #openstack-infra | 17:08 | |
marcusvrn | patrickeast: and I think two more interesting improvements could be: pagination and a score/summary of the search | 17:08 |
*** mriedem has quit IRC | 17:09 | |
*** ashleighfarnham has joined #openstack-infra | 17:09 | |
patrickeast | marcusvrn: yea definitely, both of those were things i had wanted to add and just didn’t have the time initially | 17:09 |
*** jerryz has joined #openstack-infra | 17:09 | |
patrickeast | marcusvrn: would help make it much nicer to use | 17:09 |
openstackgerrit | Paul Belanger proposed openstack-infra/system-config: WIP: Create stackalytics.o.o under -infra https://review.openstack.org/190765 | 17:10 |
AJaeger | jeblair: https://review.openstack.org/#/c/185705/ looks broken, it adds midonet in addition to the rename | 17:10 |
patrickeast | marcusvrn: iirc i even had a ‘start’ and ‘count’ parameter for the api endpoint for doing pagination | 17:10 |
patrickeast | marcusvrn: and just didn’t do anything with them | 17:10 |
openstackgerrit | Dirk Mueller proposed openstack-infra/project-config: Start with a green field for RPM packaging https://review.openstack.org/191134 | 17:10 |
anteaya | jeblair: do you want me to -2 to prevent merge, or not do that now? | 17:10 |
openstackgerrit | Paul Belanger proposed openstack-infra/puppet-stackalytics: WIP: Initial commit for puppet-stackalytics https://review.openstack.org/190708 | 17:11 |
marcusvrn | patrickeast: yep, I saw those parameters | 17:11 |
AJaeger | anteaya: let's -2 the first patch in the series | 17:11 |
jeblair | AJaeger: yeah, that should be sufficient | 17:11 |
marcusvrn | patrickeast: yep, nice to know that those improvements are desired. I'll work on those improvements | 17:11 |
jeblair | AJaeger: thanks, that does indeed look broken :/ | 17:11 |
*** salv-orlando has quit IRC | 17:11 | |
anteaya | AJaeger: okay which you have done | 17:11 |
*** hichihara has quit IRC | 17:12 | |
patrickeast | marcusvrn: cool, thanks for helping out with it! | 17:12 |
jeblair | AJaeger: the midonet change itself looks okay though, so that should be easy to fix. i'll continue reviewing up to l2gw and then fix it. | 17:13 |
waynr | zuul question: is there a good example of an alternative to jenkins' "matrix" style job in project-config? | 17:13 |
openstackgerrit | Paul Belanger proposed openstack-infra/system-config: WIP: Create stackalytics.o.o under -infra https://review.openstack.org/190765 | 17:13 |
*** markus_z has quit IRC | 17:13 | |
waynr | also: can we set any arbitrary job parameter using "parameter-function"? not just modify a set of predefined parameters? | 17:14 |
AJaeger | anteaya: I'll +2 what I've done. | 17:14 |
AJaeger | anteaya, jeblair: Is https://review.openstack.org/#/c/184159/ the bottom of the stack? Will either of you -2 it? | 17:14 |
waynr | also: (related to the matrix question) i'm hoping there is a way to queue the same job more than once, each time with a different set of variables | 17:14 |
anteaya | AJaeger: got it | 17:15 |
*** marcusvrn has quit IRC | 17:16 | |
*** claudiub|2 has joined #openstack-infra | 17:16 | |
*** marcusvrn has joined #openstack-infra | 17:16 | |
*** yamamoto has quit IRC | 17:17 | |
waynr | hmmm seems like i might have to implement matrix support myself | 17:18 |
*** claudiub has quit IRC | 17:19 | |
jeblair | waynr: parameter function can do anything | 17:19 |
openstackgerrit | Merged openstack-infra/devstack-gate: revert to eventlet based keystone upgrade for juno -> kilo https://review.openstack.org/190664 | 17:19 |
waynr | cool, that was my impression so far just wanted to be sure | 17:19 |
anteaya | AJaeger: what is broken on the midonet patch? | 17:20 |
jeblair | waynr: instead of adding matrix to zuul, consider using jjb templating to explode what you need into many jobs. that way the report to the user looks like "job-variant1: SUCCESS\n job-variant2: SUCCESS" | 17:20 |
AJaeger | anteaya: https://review.openstack.org/#/c/185705/ is the broken one | 17:20 |
anteaya | oh okay | 17:21 |
anteaya | thanks | 17:21 |
*** sarob has quit IRC | 17:21 | |
AJaeger | 185705 adds midonet setup besides the rename | 17:21 |
russellb | i've got a patch that won't go into the gate queue. It uses Depends-On and the other change has been merged already. https://review.openstack.org/#/c/190325/2 | 17:21 |
waynr | jeblair: ah right, that's what i was thinking a month ago when i last worked on this | 17:21 |
AJaeger | russellb: There's no automatic cross-project way to trigger it | 17:22 |
*** tvanderwiel has quit IRC | 17:22 | |
*** unicell has joined #openstack-infra | 17:22 | |
jeblair | russellb: oh, hrm. it's possible the enqueing there doesn't work across change queues. can you you re-approve? | 17:22 |
*** jaypipes has joined #openstack-infra | 17:22 | |
russellb | i've rechecked a couple times | 17:22 |
russellb | jeblair: you'll have to re-approve :-) | 17:22 |
AJaeger | jeblair: let me approve, you already did ;) | 17:22 |
jeblair | russellb: sadly, due to a gerrit bug, recheck doesn't work :( | 17:22 |
waynr | when specifying a zuul template for a particular project is it possible to expand that template using a list of values for a key? rather than copying the template for each variation | 17:22 |
russellb | jeblair: oh ok, thanks for clarifying, i didn't know that | 17:22 |
jeblair | oh that's a project config change | 17:23 |
*** gyee_ has quit IRC | 17:23 | |
jeblair | are we freezing the whole repo or just part of it? | 17:23 |
*** puranamr_ has joined #openstack-infra | 17:23 | |
anteaya | I'd like to freeze the whole thing | 17:24 |
anteaya | personally | 17:24 |
anteaya | these renames are very fragile | 17:24 |
anteaya | I don't want to unwind in case of a needed rebase | 17:24 |
jeblair | (apparently people think this is easy) | 17:24 |
AJaeger | jeblair: shall I remove my approval, russellb looked innocent | 17:24 |
anteaya | I don't know who they are | 17:24 |
fungi | "oh, it can go in stackforge now, we'll just rename it later" | 17:25 |
*** abregman has quit IRC | 17:25 | |
* fungi loves when people say that | 17:25 | |
*** salv-orlando has joined #openstack-infra | 17:25 | |
*** yamamoto has joined #openstack-infra | 17:25 | |
AJaeger | jeblair: you beat me - thanks | 17:25 |
jeblair | AJaeger: yeah, either way | 17:25 |
*** puranamr has quit IRC | 17:26 | |
jeblair | russellb: we'll approve it after the renames, okay? | 17:26 |
* russellb pouts | 17:26 | |
russellb | ok :) | 17:26 |
* anteaya hands russellb a cookie and glass of milk | 17:26 | |
russellb | yay | 17:26 |
jeblair | russellb: it does _actually_ touch a file in a rename change | 17:27 |
dhellmann | is there a way to delete or mark a story in storyboard as invalid? | 17:27 |
*** wznoinsk has joined #openstack-infra | 17:27 | |
* dhellmann struggles with a new ui | 17:27 | |
*** yamamoto has quit IRC | 17:27 | |
*** mriedem has joined #openstack-infra | 17:27 | |
russellb | jeblair: true | 17:27 |
jeblair | russellb: you might want to rebase it on https://review.openstack.org/184159 just in case | 17:27 |
*** yamamoto has joined #openstack-infra | 17:27 | |
*** Sukhdev has quit IRC | 17:27 | |
jeblair | (or at least check if it's going to conflict) | 17:28 |
*** salv-orl_ has quit IRC | 17:28 | |
* jeblair goes back to staring at changes cross-eyed | 17:28 | |
russellb | jeblair: ok, will do | 17:29 |
* anteaya is listening to opera | 17:29 | |
anteaya | it is helping to stave off some cross-eyed | 17:29 |
*** puranamr_ has quit IRC | 17:29 | |
*** alaski is now known as lascii | 17:30 | |
openstackgerrit | Russell Bryant proposed openstack-infra/project-config: Use DEVSTACK_GATE_SETTINGS in networking-ovn https://review.openstack.org/190325 | 17:30 |
*** akrivoka has joined #openstack-infra | 17:30 | |
*** puranamr has joined #openstack-infra | 17:30 | |
jeblair | anteaya, AJaeger: in 186532 the jenkins-jobs stanzas are changing | 17:30 |
russellb | rebased, no conflict | 17:30 |
jeblair | they go from 'chef-test-jobs' to a list of 5 jobs | 17:31 |
jeblair | is that intentional? | 17:31 |
anteaya | not from me | 17:31 |
anteaya | jeblair: is the last patchset from me? | 17:31 |
jeblair | no it's from me | 17:31 |
openstackgerrit | Merged openstack-infra/git-review: Add reviewers on upload https://review.openstack.org/139165 | 17:31 |
jeblair | i'm asking you in case you know anything about it | 17:31 |
anteaya | jeblair: in 25 they were all a list of 5 jobs | 17:32 |
AJaeger | jeblair: it rings a bell, let me dig a bit... | 17:32 |
AJaeger | jeblair: see change I56eee9e76b50d95bfcb38a6b9d2942e2113673da | 17:32 |
anteaya | jeblair: oh yes, I see what you are saying | 17:32 |
jeblair | GRR | 17:32 |
anteaya | my suspicion is they changed the jobs in the middle of the rename | 17:32 |
AJaeger | jeblair: yes, they did - and I didn't notice during review ;( | 17:33 |
jeblair | so the rename is lagging behind reality because of the "improvement" in I56eee9e76b50d95bfcb38a6b9d2942e2113673da | 17:33 |
anteaya | I just added chef-rake-integration to get jenkins to pass | 17:33 |
AJaeger | jeblair: exactly | 17:33 |
AJaeger | jeblair: do you want me to change it or will you do it? | 17:33 |
jeblair | AJaeger: i'll do it | 17:33 |
*** Sukhdev has joined #openstack-infra | 17:33 | |
*** Swami has quit IRC | 17:34 | |
*** MarkAtwood has joined #openstack-infra | 17:34 | |
*** sarob has joined #openstack-infra | 17:34 | |
anteaya | sorry I didn't dig back far enough to find out exactly what happened | 17:34 |
jeblair | okay, the rest of that change lgtm | 17:37 |
*** cdent has quit IRC | 17:37 | |
*** mrmartin has joined #openstack-infra | 17:37 | |
*** otter768 has joined #openstack-infra | 17:38 | |
*** radez_g0n3 is now known as radez | 17:38 | |
*** abregman has joined #openstack-infra | 17:39 | |
openstackgerrit | Jeremy Stanley proposed openstack-infra/infra-specs: Fix repositories section of puppet4 spec https://review.openstack.org/189498 | 17:39 |
mmedvede | hi infra, I have a zuul question. Is it possible to configure zuul to only report job failures, and not merge failures? I could not find it in zuul docs. | 17:40 |
jeblair | 188030 also has a jjb change, but i think it looks sensible | 17:40 |
jeblair | we might want to ask people not to do that in the future | 17:40 |
*** amotoki has quit IRC | 17:41 | |
anteaya | jeblair: sorry I am not seeing the jjb change in 188030 | 17:41 |
jeblair | it's mentioned (or at least, alluded to) in the commit message, so i presume any changes are correct. :) | 17:41 |
*** tonytan4ever has joined #openstack-infra | 17:41 | |
jeblair | anteaya: the change in jenkins/jobs/projects.yaml | 17:42 |
*** otter768 has quit IRC | 17:42 | |
fungi | as in not make modification to job configuration in rename changes beyond changing the names of the projects? | 17:43 |
anteaya | the removed pep8, py27, py34 and went with pypi jobs and python jobs | 17:43 |
fungi | seems like a sane requirement, for expediency of maintenances | 17:43 |
anteaya | well in moving to openstack some projects need to drop rtd in favour of docs.o.o | 17:44 |
jeblair | yeah. though we should think about the impact of things like 'stackforge-specs-jobs' -> 'openstack-specs-jobs' | 17:44 |
jeblair | anteaya: and that | 17:44 |
jeblair | but maybe we could limit it to changes related to the rename at least :) | 17:44 |
anteaya | I'm open to discussing how to handle that | 17:44 |
uberjay | possibly interesting? something I ran into when manually enqueuing a missed change (zuul enqueue ...): http://paste.openstack.org/show/285234/ | 17:44 |
fungi | fair enough. there are some cases where it makes sense related to the rename itself, tes | 17:44 |
fungi | er, yes | 17:44 |
anteaya | as I disagree with reconfigureing jobs in the midst of a rename | 17:44 |
anteaya | a la chef | 17:44 |
uberjay | (exception in zuul.WebApp, persistent, had to kill zuul-server and restart it) | 17:45 |
*** aysyanne has quit IRC | 17:46 | |
*** achanda has quit IRC | 17:46 | |
fungi | uberjay: interesting. this morning when i got online our zuul status page was performing terribly and i found a forked apache process eating tons of cpu. restarting apache seemed to clear it up | 17:46 |
fungi | probably not related | 17:46 |
marcusvrn | patrickeast: I used html5, it's clean and simple to use | 17:46 |
marcusvrn | patrickeast: https://review.openstack.org/#/c/191164/ | 17:46 |
*** notnownikki has quit IRC | 17:46 | |
uberjay | fungi: oh, weird... yeah, i don't *think* related, but this did completely break the web updates (they were frozen in time from when i enqueued the job) it didn't actually appear to affect processing the event stream and triggering jobs with jenkins, though | 17:47 |
anteaya | jeblair: am I waiting for you to respin 186532? | 17:47 |
anteaya | jeblair: or should I play through? | 17:48 |
*** jistr has quit IRC | 17:48 | |
fungi | uberjay: running zuul from master or some particular release? | 17:48 |
AJaeger | jeblair: in https://review.openstack.org/#/c/176326/ the added/subtracted lines don't match either - and I found two problems | 17:48 |
jeblair | anteaya: i will do 186532 now | 17:49 |
jeblair | AJaeger: thanks | 17:49 |
AJaeger | anteaya, fungi, jeblair: Please double check https://review.openstack.org/#/c/176326/ it's a large change and I'm not seeing what's changed | 17:49 |
anteaya | jeblair: okay | 17:49 |
uberjay | fungi: great question! i'll check. i'm using whatever asselin's os-ext-testing repo pulls. | 17:49 |
uberjay | yeah, master and up-to-date! | 17:50 |
fungi | okay, it seems our node starvation situation is now fully recovered and we're making a ton of headway on the queue backlog | 17:50 |
anteaya | \o/ | 17:50 |
uberjay | fungi: I had run "zuul enqueue --trigger gerrit --pipeline check --project openstack/cinder --change 188300,2" | 17:50 |
fungi | uberjay: i'll keep an eye out. you might find more context around that exception in your debug logs | 17:51 |
*** pelix has quit IRC | 17:52 | |
uberjay | ah, interesting, yes there is more | 17:52 |
fungi | uberjay: mainly curious how you ended up with a changeish associated with an unnamed project | 17:53 |
sdague | fungi: woot woot | 17:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Rename stackforge/cookbook* to openstack/cookbook* https://review.openstack.org/186532 | 17:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Puppet: move from Stackforge to OpenStack https://review.openstack.org/176326 | 17:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Remove old Fuel plugins https://review.openstack.org/179714 | 17:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Move networking-l2gw project under openstack namespace https://review.openstack.org/185705 | 17:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Project rename stackforge/ironic-discoverd -> openstack/ironic-inspector https://review.openstack.org/188030 | 17:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Rename stackforge/octavia -> openstack/octavia https://review.openstack.org/182748 | 17:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: dragonflow : move from stackforge/ to openstack/ https://review.openstack.org/187471 | 17:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Move zvm-driver to stackforge-attic https://review.openstack.org/179738 | 17:53 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Rename stackforge/mistral to openstack/mistral https://review.openstack.org/175328 | 17:53 |
fungi | and there go all our available non-devstack nodes again ;) | 17:53 |
jeblair | that's _only_ a change to the chef change, the rest are rebases (and some still contain uncorrected errors) | 17:53 |
anteaya | okay thanks | 17:54 |
jeblair | anteaya, AJaeger: but that should mean we can review from chef -> puppet | 17:54 |
anteaya | I'll start at chef and keep going | 17:54 |
*** esmute has quit IRC | 17:54 | |
asselin_ | uberjay, fungi that issue is a bug....there's a storyboard entry for it.... | 17:54 |
fungi | asselin_: oh, excellent | 17:54 |
jeblair | anteaya, AJaeger: if you have already reviewed chef, an inter-patchset diff is probably sufficient. | 17:55 |
anteaya | okay thanks | 17:55 |
AJaeger | jeblair: line numbers look great ;) | 17:55 |
uberjay | asselin_: fungi ahhh, ok! i just wanted to make sure someone knew about it :) | 17:55 |
*** Sukhdev has quit IRC | 17:56 | |
jeblair | fixing puppet change now | 17:56 |
*** gyee_ has joined #openstack-infra | 17:57 | |
*** annegentle has joined #openstack-infra | 17:58 | |
asselin_ | uberjay, fungi but I can't find it...must be past the 100 page pagination | 17:58 |
krotscheck | So, I have a projects-config patch with a +2A, and a depends-on on a patch that has just merged this morning. I've asked for a recheck, which passed, but the patch isn't landing. Any suggestions? https://review.openstack.org/#/c/185731/ | 17:58 |
uberjay | asselin_: yeah, i was just looking for it and couldn't find it... | 17:58 |
asselin_ | uberjay, but it's nice to know how to easily reproduce it! | 17:58 |
patrickeast | marcusvrn: wow, thats cool, i was expecting a lot more code changes than that | 17:58 |
anteaya | krotscheck: please mark your project config change wip until after today's rename is complete | 17:59 |
patrickeast | marcusvrn: i put a comment on there, i realized as i was reviewing it that my most often used url is to just have ‘timeframe=24’ which would be hard with having to supply a start and end date only | 17:59 |
anteaya | krotscheck: we can help you get it through after that | 17:59 |
jeblair | anteaya: that seems unecessary? | 17:59 |
anteaya | okay | 17:59 |
* krotscheck is confused? | 17:59 | |
*** achanda has joined #openstack-infra | 17:59 | |
jeblair | krotscheck: after the rename ask someone to re-approve it | 17:59 |
marcusvrn | patrickeast: me too....hehehe I started coding it and than it was done :) | 17:59 |
krotscheck | jeblair: You got it. | 18:00 |
*** e0ne has joined #openstack-infra | 18:00 | |
openstackgerrit | Merged openstack-infra/devstack-gate: collect grenade pluginrc if it exists https://review.openstack.org/190166 | 18:00 |
marcusvrn | patrickeast: do you think we can keep both filters, timeframe and date? It's actually a good idea | 18:01 |
EmilienM | jeblair: you already did, but feel free to take over anything you need in the puppet migration patch. | 18:02 |
AJaeger | jeblair: found first problem in https://review.openstack.org/#/c/176326/ - one ACL line removed by accident | 18:02 |
patrickeast | marcusvrn: yea i’m thinking maybe both, at least for a url parameter | 18:02 |
patrickeast | marcusvrn: the rest api piece maybe doesn’t need both… not sure the easiest way | 18:02 |
*** ivar-lazzaro has joined #openstack-infra | 18:02 | |
*** yamahata has quit IRC | 18:03 | |
patrickeast | marcusvrn: i’m ok doing something like; if there is a start/end specified then ignore the timeframe | 18:03 |
*** cloudnull is now known as cloudkiller | 18:03 | |
marcusvrn | patrickeast: I can do it, if you want | 18:03 |
jeblair | EmilienM: can you look at the comments in patchset 19 of 176326 and tell us what you think? | 18:04 |
jeblair | EmilienM: (don't update it yourself, i'll do that) | 18:04 |
marcusvrn | patrickeast: support url parameter is easy | 18:04 |
jeblair | AJaeger: ^ i found another one too | 18:04 |
EmilienM | jeblair: I don't don anything on it from now | 18:04 |
*** annegentle has quit IRC | 18:05 | |
*** cloudkiller is now known as cloudnull | 18:06 | |
AJaeger | jeblair: and I found one more in zuul/layout | 18:07 |
AJaeger | EmilienM: Just add coments and tell us whether the changes are intented or not | 18:07 |
EmilienM | AJaeger: looking | 18:07 |
*** mrmartin has quit IRC | 18:07 | |
AJaeger | EmilienM: Please both on comments in changeset 19 and 20 | 18:07 |
*** ivar-lazzaro has quit IRC | 18:07 | |
AJaeger | My head is spinning from reviewing 176326 line by line ;( | 18:08 |
jeblair | fungi: sudo mv /var/lib/git/{stackforge/puppet-openstack,extras}.git | 18:08 |
jeblair | fungi: that looks suspicious ^ | 18:08 |
* AJaeger needs a break now... | 18:09 | |
jeblair | fungi: i think that is pervasive (eg, does not just affect that command) | 18:10 |
anteaya | AJaeger: understood, thank you | 18:10 |
fungi | jeblair: interesting. i'll see if i can figure out where that came from | 18:11 |
EmilienM | AJaeger: commented, sorry for typos/errors. | 18:11 |
anteaya | EmilienM: thanks for being here to help us clean them up | 18:12 |
fungi | jeblair: i wonder if it's an error in the change i pulled it from | 18:12 |
EmilienM | anteaya: well, this is the least I can do | 18:12 |
anteaya | EmilienM: thank you, :) | 18:12 |
*** e0ne has quit IRC | 18:13 | |
fungi | jeblair: oh! i see the issue. i was using _ as a separator. lemme refactor my scripts and regenerate those blocks | 18:15 |
*** yamamoto has quit IRC | 18:15 | |
fungi | that's obviously going to be wrong all over the place for puppet modules particularly | 18:15 |
*** ashleighfarnham has quit IRC | 18:15 | |
*** ivar-lazzaro has joined #openstack-infra | 18:16 | |
*** achanda has quit IRC | 18:17 | |
openstackgerrit | John L. Villalovos proposed openstack-infra/irc-meetings: Add meeting for the OpenStack Diversity Workgroup https://review.openstack.org/191172 | 18:18 |
*** esmute has joined #openstack-infra | 18:19 | |
*** Sukhdev has joined #openstack-infra | 18:19 | |
*** e0ne has joined #openstack-infra | 18:19 | |
*** ashleighfarnham has joined #openstack-infra | 18:19 | |
*** dprince has quit IRC | 18:20 | |
fungi | jeblair: all swapped out now. let me know if you spot anything else odd-looking | 18:25 |
*** e0ne is now known as e0ne_ | 18:25 | |
*** puranamr has quit IRC | 18:26 | |
fungi | jeblair: interestingly, that turns out to have been the only project with an _ in it, but i redid the scripts i used to generate all of that anyway for future sanity | 18:27 |
jeblair | fungi: cool | 18:27 |
*** yamahata has joined #openstack-infra | 18:27 | |
*** amrith has joined #openstack-infra | 18:27 | |
jeblair | i'm still combing through the puppet change | 18:28 |
*** yamahata has quit IRC | 18:29 | |
fungi | i added a link to a paste of my script-generating-script for posterity | 18:29 |
amrith | greetings, anyone seeing trouble with the recent change to requirements.txt to use oslo.concurrency 2.0? | 18:29 |
*** yamahata has joined #openstack-infra | 18:29 | |
amrith | https://gist.github.com/anonymous/38839ccf8ee54a6f22c0 | 18:30 |
*** annegentle has joined #openstack-infra | 18:30 | |
*** e0ne_ has quit IRC | 18:30 | |
fungi | amrith: are you using a mirror of pypi? | 18:32 |
amrith | fungi, no | 18:32 |
*** wenlock_ has quit IRC | 18:32 | |
amrith | I'm able to install v2.0.0 if I just pip install | 18:32 |
amrith | but when I run tox, I get this error | 18:33 |
*** jaypipes is now known as leakypipes | 18:33 | |
amrith | amrith@amrith-work:/opt/stack/trove$ pip list | grep oslo.concurrency | 18:33 |
amrith | oslo.concurrency (2.0.0) | 18:33 |
*** tvanderwiel has joined #openstack-infra | 18:33 | |
fungi | amrith: that's odd. the error message makes it sound like it didn't see 2.0.0 on pypi | 18:33 |
*** wenlock has quit IRC | 18:34 | |
amrith | yes | 18:34 |
fungi | it's not complaining about a version conflict, but that it can't find it at all | 18:34 |
dhellmann | amrith: what's in your ~/.pip/pip.conf file | 18:34 |
*** sdake_ is now known as sdake | 18:34 | |
amrith | don't have one | 18:34 |
dimsum__ | amrith: looks like a local issue, CI jobs ok? | 18:34 |
amrith | hi dimsum__ | 18:34 |
amrith | this is desktop | 18:35 |
amrith | hi dhellmann | 18:35 |
amrith | I don't have a ~/.pip | 18:35 |
amrith | could it be someplace else | 18:35 |
*** Swami has joined #openstack-infra | 18:35 | |
dstufft | yes | 18:36 |
dstufft | is it a linux machine | 18:36 |
dstufft | or OSX | 18:36 |
dstufft | or something else | 18:36 |
* fungi hopes it's openvms | 18:36 | |
amrith | linux | 18:36 |
amrith | am searching /etc | 18:36 |
amrith | not anyplace on the machine | 18:37 |
amrith | amrith@amrith-work:/$ sudo find . -name pip.conf | 18:37 |
amrith | amrith@amrith-work:/$ | 18:37 |
*** wenlock has joined #openstack-infra | 18:37 | |
jeblair | EmilienM, fungi, anteaya, AJaeger: i found several more issues in the puppet patch | 18:37 |
jeblair | EmilienM: i'll need responses on those | 18:37 |
anteaya | okay, I'm still on the zvm-driver to attic patch | 18:37 |
anteaya | sorry I'm slow | 18:37 |
EmilienM | jeblair: looking now | 18:38 |
jeblair | anteaya: i have spent 50 minutes reviewing the puppet change. | 18:38 |
anteaya | I believe it | 18:39 |
dhellmann | amrith: which version of pip? | 18:39 |
*** wenlock has quit IRC | 18:39 | |
dstufft | amrith: can you do pip install -vvvv oslo.concurrency and give me output | 18:39 |
anteaya | took me over an hour to figure out what was happening with the chef change | 18:39 |
amrith | dhellmann, 7.0.3 | 18:39 |
anteaya | and I still didn't get it right | 18:39 |
dstufft | the whole output | 18:39 |
*** bknudson has quit IRC | 18:39 | |
*** wenlock has joined #openstack-infra | 18:40 | |
AJaeger | jeblair: some of those are duplicates from what I found and EmilienM had commented in changeset 20 on it | 18:40 |
amrith | dstufft, please see https://gist.github.com/amrith/993006d63d1a6652d6ab | 18:40 |
AJaeger | jeblair: the new one I noticed are the stackforge/openstack ACLs | 18:40 |
dstufft | amrith: can you do it inside of a virtualenv so it's not picking up the system libs | 18:40 |
amrith | dstufft, one second | 18:40 |
jeblair | AJaeger: okay. i'm copying the comments from 20 to 19 now so they are all in one place. | 18:41 |
AJaeger | I should have said: The stackforge/openstack ACL changes are something I didn't note. | 18:41 |
AJaeger | jeblair: ok. | 18:41 |
EmilienM | jeblair: commented now | 18:41 |
*** akrivoka has left #openstack-infra | 18:41 | |
*** leakypipes has quit IRC | 18:41 | |
AJaeger | jeblair: thanks for catching all these! | 18:41 |
bexelbie | once a patch has passed code-review - what is needed to get jenkins to finish hte verified? | 18:41 |
AJaeger | bexelbie: did you read the Infra Manual? http://docs.openstack.org/infra/manual/developers.html | 18:42 |
amrith | dstufft, just recreating venv | 18:42 |
amrith | problem is that it fails | 18:42 |
openstackgerrit | David Shrewsbury proposed openstack-infra/shade: Add create method for secgroup rule https://review.openstack.org/190763 | 18:43 |
dstufft | fails installing setuptools or pip I bet? | 18:43 |
fungi | bexelbie: one of the core reviewers who is in favor of it will set workflow +1 (approval) and then the machinery jumps to action retesting and finally merging it to the published repo | 18:43 |
*** jaypipes has joined #openstack-infra | 18:43 | |
jeblair | AJaeger, EmilienM: done; so everything should be captured in PS 19 now. | 18:43 |
amrith | dstufft, see here | 18:43 |
amrith | https://gist.github.com/amrith/e8d1c9e250354a7a743f | 18:43 |
amrith | venv create fails | 18:43 |
bexelbie | AJaeger, yes | 18:43 |
bexelbie | fungi, that is what I expected as well | 18:43 |
*** eantyshev has quit IRC | 18:43 | |
*** ildikov has quit IRC | 18:43 | |
*** ildikov has joined #openstack-infra | 18:43 | |
dhellmann | amrith: try: ./.tox/venv/bin/pip install oslo.concurrency==2.0.0 | 18:43 |
bexelbie | I just didn't see it queued on zuul - and was curious | 18:44 |
dhellmann | oops, left out the -vvv | 18:44 |
dstufft | amrith: /opt/stack/trove/.tox/venv/bin/pip -U -vvvv install oslo.concurrency==2.0.0 | 18:44 |
dhellmann | amrith: ^^ | 18:44 |
dstufft | do that | 18:44 |
dstufft | yea | 18:44 |
dstufft | what dhellmann said | 18:44 |
*** kushal has quit IRC | 18:44 | |
jeblair | EmilienM: okay, i'm reading your responses now. to make sure i understand, you want to keep monasca and tripleo using their own gerrit acl files, right? | 18:44 |
bexelbie | fungi, n/m workflow +1 - that is the blocker .. I missed that somehow in my read | 18:44 |
bexelbie | sorry | 18:44 |
AJaeger | jeblair: looks fine | 18:45 |
amrith | dstufft, dhellmann please see https://gist.github.com/amrith/dcbafbfdffdc6371af31. I changed the command around to pip install -U -vvvv | 18:45 |
fungi | bexelbie: yeah, by convention usually at least two core reviewers need to code-review +2 it and then one of them will also workflow +1 it to head into the testing gate for final merge verification | 18:45 |
anteaya | I'm now at the puppet change and standing by | 18:46 |
anteaya | as wading in now feels pointless to me | 18:46 |
bexelbie | fungi, makes sense once I see the word "workflow" in there .. somehow missed it in my reads (plural :( ) | 18:46 |
dhellmann | dstufft: could amrith's problem be a fastly cache issue? | 18:46 |
dhellmann | amrith: can you see this page? https://pypi.python.org/pypi/oslo.concurrency/2.0.0 | 18:46 |
jeblair | okay, i think i understand the changes that need to be made to the puppet change. starting on them now. | 18:47 |
openstackgerrit | Armando Migliaccio proposed openstack-infra/devstack-gate: Add configuration switches for features that make Neutron unstable https://review.openstack.org/191121 | 18:47 |
dhellmann | amrith: and can you wget https://pypi.python.org/packages/source/o/oslo.concurrency/oslo.concurrency-2.0.0.tar.gz | 18:47 |
* anteaya makes another cup of tea | 18:47 | |
amrith | dhellmann, yes. wget on that URL succeeds. | 18:47 |
dhellmann | amrith: you're not using some sort of proxy are you? corporate, personal, ssh tunnel, etc.? | 18:48 |
amrith | and I can see it in a browser. | 18:48 |
amrith | dhellmann, no. | 18:48 |
amrith | on the machine where this pip install fails, I can wget that URL | 18:48 |
amrith | same machine | 18:48 |
amrith | same command line | 18:48 |
dhellmann | amrith: do you see the 2.0.0 file listed on https://pypi.python.org/simple/oslo.concurrency/ ? | 18:49 |
amrith | I get a file called 2.0.0 | 18:49 |
*** claudiub|2 has quit IRC | 18:49 | |
dhellmann | k | 18:49 |
*** jaypipes is now known as leakypipes | 18:50 | |
amrith | On that URL, I see a link to oslo.concurrency-2.0.0.tar.gz | 18:50 |
amrith | which points to ../../packages/source/o/oslo.concurrency/oslo.concurrency-2.0.0.tar.gz#md5=7c8fbc47d9cf940a76aef92d2831ed\ | 18:50 |
amrith | 0f | 18:50 |
dhellmann | amrith: I'm out of ideas. The file is there, and you can see it. Maybe dstufft has something else to try | 18:50 |
*** annegentle has quit IRC | 18:50 | |
*** wenlock has quit IRC | 18:50 | |
*** ams__ has quit IRC | 18:50 | |
*** esmute has quit IRC | 18:50 | |
*** ZZelle_ has joined #openstack-infra | 18:51 | |
dimsum__ | amrith: on the same command line? "curl -ks https://pypi.python.org/simple/oslo.concurrency/ | grep 2.0.0" | 18:52 |
dstufft | sorry, was poking the Fastly control panel to see if something was cached differently | 18:52 |
*** kushal has joined #openstack-infra | 18:52 | |
amrith | amrith@amrith-work:/opt/stack/trove$ curl -ks https://pypi.python.org/simple/oslo.concurrency/ | grep 2.0.0 | 18:52 |
amrith | <a href="../../packages/py2.py3/o/oslo.concurrency/oslo.concurrency-2.0.0-py2.py3-none-any.whl#md5=96f018d27e4512426878c9ebac05433f" rel="internal">oslo.concurrency-2.0.0-py2.py3-none-any.whl</a><br/> | 18:52 |
amrith | <a href="../../packages/source/o/oslo.concurrency/oslo.concurrency-2.0.0.tar.gz#md5=7c8fbc47d9cf940a76aef92d2831ed0f" rel="internal">oslo.concurrency-2.0.0.tar.gz</a><br/> | 18:52 |
amrith | amrith@amrith-work:/opt/stack/trove$ | 18:52 |
amrith | sorry | 18:52 |
amrith | gist coming up | 18:52 |
amrith | https://gist.github.com/amrith/8b54f80d9ccd0ba2a697 | 18:53 |
*** wenlock has joined #openstack-infra | 18:53 | |
dstufft | amrith: what if you add --no-cache-dir | 18:54 |
dstufft | to the pip install command. | 18:54 |
*** wenlock has quit IRC | 18:54 | |
amrith | ok, coming up | 18:54 |
*** ociuhandu has quit IRC | 18:54 | |
*** annegentle has joined #openstack-infra | 18:54 | |
jeblair | EmilienM: i don't understand why you want to have access to deprecated modules that you are not moving over. | 18:55 |
jeblair | are they not actually deprecated yet? | 18:55 |
EmilienM | jeblair: what do you suggest? | 18:56 |
EmilienM | they are but I guess some people are still using them | 18:56 |
EmilienM | though we don't patch on it | 18:56 |
*** wenlock has joined #openstack-infra | 18:56 | |
jeblair | is anyone going to be making changes to them at all? | 18:56 |
amrith | that appears to be working a lot harder | 18:56 |
EmilienM | honestly, I prefer to keep these modules in stackforge | 18:56 |
amrith | dstufft, and it succeeded. | 18:57 |
dstufft | Ok | 18:57 |
jeblair | EmilienM: will any patches be landing to these modules? | 18:57 |
amrith | dstufft, one second | 18:57 |
dstufft | for some reason cache wasn't getting expired for /simple/oslo.concurrency/ | 18:57 |
EmilienM | jeblair: I don't think so or very rarely | 18:57 |
dstufft | did your wallclock go backwards in time by any chance | 18:57 |
jeblair | EmilienM: the difference between "no" and "very rarely" is huge. | 18:58 |
jeblair | EmilienM: let's assume "very rarely" | 18:58 |
amrith | it is a vm without time sync | 18:58 |
jeblair | EmilienM: who will be approving them? | 18:58 |
amrith | but the time appears to be correct | 18:58 |
EmilienM | jeblair: why can't we dupplicate the gerrit file? | 18:58 |
amrith | yes, june 12th | 18:58 |
EmilienM | jeblair: still us I guess | 18:58 |
jeblair | EmilienM: this is not a technical problem. | 18:58 |
dstufft | amrith: you can delete the cache, it's gonna be at like ~/.cache/pip/ | 18:58 |
jeblair | EmilienM: then it seems to me like they are part of the puppet openstack project. | 18:58 |
EmilienM | https://github.com/stackforge/puppet-openstack_dev_env and https://github.com/stackforge/puppet_openstack_builder are clearly dead. | 18:59 |
EmilienM | and we don't support them. | 18:59 |
dstufft | I think maybe we should just not cache the /simple/ pages | 18:59 |
jeblair | EmilienM: then you should change their READMEs to say they are dead and then we can mark the projects as read-only. | 18:59 |
amrith | dstufft, just did that and will retry | 18:59 |
EmilienM | https://github.com/stackforge/puppet-openstack has no activity and we won't patch it anymore | 18:59 |
EmilienM | jeblair: sounds like a great idea | 18:59 |
*** wenlock has quit IRC | 19:00 | |
EmilienM | jeblair: please don't move them though, until will kill them, I suggest we keep them on stackforge | 19:00 |
EmilienM | s/will/we/ | 19:00 |
*** ayoung is now known as ayoung-mtg | 19:00 | |
*** wenlock has joined #openstack-infra | 19:00 | |
jeblair | EmilienM: that's fine. i don't want to move anything we don't have to. | 19:00 |
amrith | dstufft, will irc you as soon as it completes, thanks much. | 19:00 |
jeblair | EmilienM: what about puppet-vswitch? | 19:00 |
openstackgerrit | Armando Migliaccio proposed openstack-infra/project-config: Add unstable Neutron job https://review.openstack.org/191141 | 19:02 |
EmilienM | jeblair: like puppet-ceph, we like it but it's not openstack. IMHO it should not be in openstack but rather stays on stackforge | 19:02 |
*** wenlock_ has joined #openstack-infra | 19:02 | |
EmilienM | jeblair: if it's a big deal though, I'm ok to move it | 19:02 |
*** hdd has quit IRC | 19:03 | |
jeblair | EmilienM: it's getting its own core group then and is otherwise going to be unrelated to your other work. it won't be able to group bugs with your other project bugs, etc. you can't have an openstack project on stackforge. | 19:03 |
*** hdd has joined #openstack-infra | 19:04 | |
amrith | dhellmann, dimsum__, dstufft, worked like a champ, thanks so much! | 19:04 |
*** wuhg has quit IRC | 19:04 | |
dhellmann | dstufft: nice work | 19:04 |
dhellmann | amrith: great! | 19:04 |
EmilienM | I suggest: 1/ it stays on stackforge 2/ we keep the current gerrit permissions (puppet-group, us) to manage it | 19:04 |
dstufft | amrith: I opened up https://github.com/pypa/pip/issues/2904 to track ditching the cache for those responses since their usefulness is somewhat limited anyways | 19:04 |
jeblair | EmilienM: i don't understand why. it seems like you want to pretend it's not part of your openstack project, yet, run it like it is. | 19:05 |
EmilienM | jeblair: well, who would have permissions then? we are doing reviews on this module now | 19:06 |
jeblair | EmilienM: why don't you think it's part of your project then? | 19:06 |
EmilienM | jeblair: I'm fine if we move it, seriously | 19:06 |
EmilienM | jeblair: let's go ahead, we move it too | 19:06 |
EmilienM | jeblair: because we did beaker tests, and we review/patch code quite often | 19:07 |
EmilienM | we can pretend to maintain it | 19:07 |
openstackgerrit | Doug Hellmann proposed openstack-infra/infra-specs: Centralize Release Tagging https://review.openstack.org/191193 | 19:07 |
jeblair | i don't understand | 19:07 |
jeblair | does anyone else want to try to figure this out? | 19:07 |
nibalizer | figure out which modules go to openstack/ ? | 19:08 |
jeblair | EmilienM: what do you mean "pretend to maintain it"? | 19:08 |
EmilienM | jeblair: we do reviews/code on this modules. We also care about its CI | 19:08 |
jeblair | it's one question: is puppet-vswitch a constituent repo of the puppet-openstack project? | 19:08 |
jeblair | everything i can see says "yes" | 19:08 |
EmilienM | so I guess we are the ones who take care of it | 19:08 |
EmilienM | jeblair: it's actually a dep of puppet-neutron when running OVS plugin | 19:09 |
openstackgerrit | David Shrewsbury proposed openstack-infra/shade: Add create method for secgroup rule https://review.openstack.org/190763 | 19:09 |
EmilienM | jeblair: let's move it | 19:09 |
jeblair | EmilienM: it's your call -- you're the ptl | 19:09 |
EmilienM | jeblair: it's my call and I say yes | 19:09 |
EmilienM | we move it | 19:09 |
jeblair | okay done | 19:09 |
EmilienM | thx | 19:09 |
*** ivar-lazzaro has quit IRC | 19:09 | |
*** dontalton has joined #openstack-infra | 19:09 | |
*** e0ne has joined #openstack-infra | 19:09 | |
*** pradk has quit IRC | 19:10 | |
jeblair | EmilienM: i'm going to leave the puppet-modules acl config in place for the other three projects with the understanding that we're just going to use that to merge the end-of-life changes for those, and then we will remove them | 19:10 |
EmilienM | jeblair: ack | 19:10 |
jeblair | fungi: please add stackforge/puppet-vswitch -> openstack/puppet-vswitch to the move | 19:11 |
openstackgerrit | Doug Hellmann proposed openstack-infra/infra-specs: Centralize Release Tagging https://review.openstack.org/191193 | 19:13 |
fungi | jeblair: oh, was it not in the original patch? | 19:14 |
openstackgerrit | Merged openstack-infra/git-review: Add “git-review -l” to man page synopsis and usage doc https://review.openstack.org/191117 | 19:14 |
jeblair | fungi: it was not. we just decided to change the color on that bikeshed. | 19:14 |
fungi | jeblair: i like the new color. adding | 19:14 |
*** yamamoto has joined #openstack-infra | 19:15 | |
*** amrith is now known as _amrith_ | 19:15 | |
*** tqtran has joined #openstack-infra | 19:16 | |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Puppet: move from Stackforge to OpenStack https://review.openstack.org/176326 | 19:16 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Move networking-l2gw project under openstack namespace https://review.openstack.org/185705 | 19:16 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Rename stackforge/mistral to openstack/mistral https://review.openstack.org/175328 | 19:16 |
jeblair | again, that's _only_ the puppet change; the rest are just rebases | 19:17 |
anteaya | very good | 19:17 |
jeblair | i need to get lunch now. if anyone wants to work on the l2gw change, feel free to pick it up | 19:17 |
anteaya | enjoy lunch | 19:17 |
*** sdake_ has joined #openstack-infra | 19:17 | |
armax | fungi: is there anything I could do to help with https://review.openstack.org/#/c/185705/? | 19:17 |
jeblair | or, any changes that need updating. i'm releasing the lock, as it were. | 19:17 |
*** e0ne is now known as e0ne_ | 19:18 | |
anteaya | armax: do you understand the comments on it? | 19:18 |
anteaya | armax: can you reply to the comments? | 19:18 |
*** pblaho has quit IRC | 19:18 | |
armax | anteaya: it looks like the patch went through a bad rebase | 19:18 |
anteaya | that seems to be the case | 19:19 |
anteaya | it is close to the tail end of the patch series | 19:19 |
*** esmute has joined #openstack-infra | 19:19 | |
anteaya | if you want to try to fix the rebase go ahead | 19:19 |
anteaya | but do pull it down with git review -d <patchnumber> | 19:19 |
anteaya | to preserve its place in the stack | 19:19 |
armax | if fungi gives me the go ahead, I’ll take care of it | 19:19 |
fungi | was midonet supposed to move in there, or no? | 19:20 |
anteaya | no, midonet is way earlier | 19:20 |
fungi | okay, just checking | 19:20 |
anteaya | yup | 19:20 |
fungi | because midonet is on my list, just making sure it's supposed to be | 19:20 |
anteaya | midonet patch: https://review.openstack.org/#/c/187671/ | 19:20 |
anteaya | it is | 19:20 |
fungi | ahh, yep. okay | 19:20 |
*** sdake has quit IRC | 19:21 | |
*** yamamoto has quit IRC | 19:21 | |
fungi | armax: yeah, jeblair's the one who's been handling the rebase of that stack, but i doubt he'd mind you correcting 185705 | 19:21 |
armax | fungi: ok :) | 19:21 |
fungi | or at least leaving explicit comments as to what should be fixed in it | 19:21 |
anteaya | armax: I think it is yours and one after that as the tail | 19:21 |
fungi | whichever works best for you | 19:21 |
armax | fungi: yes, midonet lines should not belong to 185705 | 19:22 |
armax | I’ll clean them up | 19:22 |
anteaya | armax: thank you | 19:22 |
armax | bear with me | 19:22 |
*** e0ne_ is now known as e0ne | 19:22 | |
armax | thank you guys for your effort! | 19:22 |
*** vponomaryov has quit IRC | 19:23 | |
fungi | armax: you should see the list. it's now up to 61 repos getting renamed today | 19:23 |
armax | fungi: that’s a lot of beers for you, right there! | 19:23 |
* anteaya with a fresh cup of tea heads into the puppet patch | 19:23 | |
*** mdenny has joined #openstack-infra | 19:24 | |
*** annegentle has quit IRC | 19:24 | |
armax | fungi: or your beverage of choice, when we meet at the next summit! | 19:24 |
*** puranamr has joined #openstack-infra | 19:24 | |
dhellmann | jeblair: I have a new spec for infra-specs, but it's not clear to me where to put it in the toctree. Do new things go under "Priority Efforts"? | 19:25 |
fungi | armax: also beer ;) | 19:26 |
*** sdake_ is now known as sdake | 19:26 | |
fungi | okay, puppet-vswitch has now been spliced into the appropriate places in https://etherpad.openstack.org/p/repo-renaming-2015-06-12 | 19:26 |
fungi | dhellmann: approved specs | 19:27 |
fungi | dhellmann: because once it gets approved... that's what it is! | 19:27 |
openstackgerrit | Armando Migliaccio proposed openstack-infra/project-config: Move networking-l2gw project under openstack namespace https://review.openstack.org/185705 | 19:27 |
dhellmann | fungi: ok, that felt premature :-) | 19:27 |
fungi | feels that way until you realize that it's never added to the repo until it gets approved | 19:27 |
*** bhunter71 has quit IRC | 19:27 | |
dhellmann | yeah | 19:27 |
fungi | so you're proposing a spec for approval, it goes in the approved specs section | 19:28 |
fungi | if you're proposing a spec that shouldn't be approved, then i'm not sure there's much point in proposing a spec ;) | 19:29 |
*** bhunter71 has joined #openstack-infra | 19:29 | |
fungi | tautological categorization | 19:29 |
openstackgerrit | Doug Hellmann proposed openstack-infra/infra-specs: Centralize Release Tagging https://review.openstack.org/191193 | 19:31 |
anteaya | EmilienM: I made a comment on two puppet repos that are in the rename patch that I don't see in the governance repo | 19:31 |
anteaya | EmilienM: can you create a patch to the governance repo adding them and add a comment on your patch with a link to the governance repo patch? | 19:32 |
*** puranamr has quit IRC | 19:32 | |
anteaya | sorry I made the comment on https://review.openstack.org/#/c/176326/21 | 19:34 |
anteaya | not sure if I was clear | 19:34 |
anteaya | the comment was about two puppet repos | 19:34 |
EmilienM | anteaya: I'll do the patch in governance *after* migration so we are sure I don't miss something :-) | 19:35 |
EmilienM | anteaya: does it work for you? I think I'll do it on 'early next week' | 19:35 |
*** puranamr has joined #openstack-infra | 19:35 | |
anteaya | EmilienM: well we like to have the governance patch as reference before we merge the project-config change | 19:36 |
anteaya | then the trail doesn't get lost | 19:36 |
anteaya | the governance change won't merge this afternoon | 19:36 |
openstackgerrit | Armando Migliaccio proposed openstack-infra/project-config: Move networking-l2gw project under openstack namespace https://review.openstack.org/185705 | 19:36 |
anteaya | and you can offer another patchset to it if we need to amend it | 19:36 |
EmilienM | anteaya: in the thread, jeblair said we can do the governance update after, since we have the basic structure already approved by TC | 19:36 |
anteaya | okay I won't interrupt | 19:36 |
EmilienM | anteaya: ok, I'll provide the patch ASAP | 19:37 |
openstackgerrit | Armando Migliaccio proposed openstack-infra/project-config: Rename stackforge/mistral to openstack/mistral https://review.openstack.org/175328 | 19:38 |
armax | anteaya, fungi: rebased the bottom of the pile | 19:38 |
anteaya | armax: thank you | 19:38 |
armax | anteaya, fungi: I release my lock | 19:38 |
anteaya | :) | 19:38 |
armax | anteaya, fungi: I think I got it right | 19:38 |
armax | anteaya, fungi: but one might never know when it comes to me, so watch out | 19:39 |
*** dboik has quit IRC | 19:39 | |
*** otter768 has joined #openstack-infra | 19:39 | |
anteaya | armax: I'll look in a bit, don't want to switch in mid-review | 19:39 |
anteaya | armax: I'll be aware, thanks | 19:39 |
armax | anteaya: tests passed locally, so I am confident | 19:39 |
anteaya | thanks | 19:39 |
armax | anteaya: but it’s friday of a long, long week….so... | 19:39 |
anteaya | yup | 19:40 |
*** sabeen2 has quit IRC | 19:40 | |
*** tonytan4ever has quit IRC | 19:40 | |
*** sabeen1 has joined #openstack-infra | 19:41 | |
fungi | if anyone wants a break from reviewing project rename changes, here are my proposed release notes for git-review 1.25.0 which i have tagged but not yet pushed (hence no checksums in the draft) https://etherpad.openstack.org/p/git-review-1.25.0 | 19:41 |
openstackgerrit | Armando Migliaccio proposed openstack-infra/devstack-gate: Add configuration switches for features that make Neutron unstable https://review.openstack.org/191121 | 19:42 |
*** otter768 has quit IRC | 19:43 | |
asselin_ | uberjay, fungi, jeblair I'm seeing this too again today. any easy way to disable cross-project dependencies in zuul? http://paste.openstack.org/show/285269/ | 19:47 |
asselin_ | this takes down the whole ci system | 19:47 |
anteaya | jeblair: I spotted one error in the puppet patch | 19:48 |
anteaya | jeblair: will post when I'm finished my pass | 19:49 |
uberjay | asselin_: ah, is that what's causing it? i don't know enough about zuul's codebase, just noticed it happened when i manually queued a job (with zuul enqueue). doesn't happen otherwise... at least, not so far. (I could be wrong, though...) | 19:50 |
asselin_ | uberjay, is yours working still? | 19:50 |
uberjay | asselin_: it does seem to be fine right now. when that happened earlier I had to restart the zuul-master process. (and had to kill -9 to get it to exit...) | 19:51 |
uberjay | no issues currently... | 19:52 |
*** dontalton has quit IRC | 19:52 | |
*** tonytan4ever has joined #openstack-infra | 19:52 | |
asselin_ | uberjay, which projects are you monitoring? | 19:52 |
uberjay | oh. heh. I guess I probably don't deal with any cross-project deps, since I'm only monitoring cinder :D | 19:52 |
asselin_ | I added manila and os-brick recently. /me digs into zuul code | 19:54 |
*** puranamr has quit IRC | 19:56 | |
*** dboik_ has joined #openstack-infra | 19:56 | |
*** puranamr has joined #openstack-infra | 19:57 | |
*** rossella_s has quit IRC | 19:58 | |
*** rossella_s has joined #openstack-infra | 19:59 | |
*** kgiusti has left #openstack-infra | 19:59 | |
jeblair | fixing puppet change | 20:00 |
jeblair | EmilienM: what's the status of puppet-ceph? | 20:02 |
jeblair | i just noticed it's part of the check-tripleo-{jobname} job | 20:02 |
EmilienM | jeblair: puppet openstack has no core power on it | 20:02 |
jeblair | along with all the other puppet modules | 20:03 |
EmilienM | jeblair: this module is not part of puppet openstack project | 20:03 |
jeblair | ok. why is it part of a tripleo integration test? | 20:04 |
EmilienM | jeblair: because tripleo is consuming this module | 20:04 |
EmilienM | so it pulls out the code when deploying in CI | 20:04 |
jeblair | okay. we should remove it from the integration test, but that can wait. | 20:04 |
*** amitgandhinz has quit IRC | 20:05 | |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Puppet: move from Stackforge to OpenStack https://review.openstack.org/176326 | 20:06 |
jeblair | anteaya, AJaeger: sorry for any eye-damage i may have caused ^ :) | 20:06 |
anteaya | jeblair: no complaints here, thank you for your continued willingness to fix all the things | 20:07 |
*** dboik_ has quit IRC | 20:07 | |
*** sslypushenko has quit IRC | 20:07 | |
*** linuxmaniac has quit IRC | 20:07 | |
*** pc_m has quit IRC | 20:07 | |
*** teran has quit IRC | 20:07 | |
*** frickler has quit IRC | 20:07 | |
*** jd__ has quit IRC | 20:07 | |
*** swat30 has quit IRC | 20:07 | |
*** SlickNik has quit IRC | 20:07 | |
*** chmouel has quit IRC | 20:07 | |
*** dmellado has quit IRC | 20:07 | |
*** ruhe has quit IRC | 20:07 | |
*** NikitaKonovalov has quit IRC | 20:07 | |
*** DinaBelova has quit IRC | 20:07 | |
*** reazem has quit IRC | 20:07 | |
*** jogo has quit IRC | 20:07 | |
*** zaneb has quit IRC | 20:07 | |
*** zxiiro has quit IRC | 20:07 | |
*** bookwar has quit IRC | 20:07 | |
*** redrobot has quit IRC | 20:07 | |
*** frickler_ has joined #openstack-infra | 20:07 | |
*** Guest19563 is now known as dan | 20:07 | |
*** sslypushenko has joined #openstack-infra | 20:07 | |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Move networking-l2gw project under openstack namespace https://review.openstack.org/185705 | 20:07 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Rename stackforge/mistral to openstack/mistral https://review.openstack.org/175328 | 20:07 |
jeblair | rebase | 20:07 |
*** dmellado has joined #openstack-infra | 20:07 | |
*** zaneb has joined #openstack-infra | 20:07 | |
anteaya | yup | 20:07 |
* anteaya heads in again | 20:07 | |
*** teran has joined #openstack-infra | 20:08 | |
*** pc_m has joined #openstack-infra | 20:08 | |
*** dboik has joined #openstack-infra | 20:08 | |
*** jogo has joined #openstack-infra | 20:08 | |
fungi | armax: thanks, 185705 is looking better now | 20:08 |
*** jd__ has joined #openstack-infra | 20:08 | |
*** redrobot has joined #openstack-infra | 20:08 | |
*** swat30 has joined #openstack-infra | 20:08 | |
armax | fungi: np | 20:08 |
*** SlickNik has joined #openstack-infra | 20:08 | |
*** redrobot is now known as Guest67074 | 20:08 | |
*** bookwar has joined #openstack-infra | 20:08 | |
fungi | okay, unless anybody has any objections/additions to https://etherpad.openstack.org/p/git-review-1.25.0 i'll push the tag after i get through a few of the rename reviews | 20:08 |
fungi | wow, these patches dogpiled +2s while i wasn't looking. awesome | 20:09 |
*** linuxmaniac has joined #openstack-infra | 20:09 | |
dhellmann | I have a patch that's approved but not merging. It has 2 depends-on listed, but both of them have already merged. Can anyone spot anything else about this that would be blocking it from merging? https://review.openstack.org/#/c/183825/ | 20:10 |
anteaya | fungi: your etherpad looks fine to me | 20:10 |
*** EmilienM is now known as EmilienM|afk | 20:10 | |
*** ruhe has joined #openstack-infra | 20:10 | |
fungi | dhellmann: did it get approved before one of its depends-on? | 20:11 |
fungi | if so it'll need to be reapproved now. rechecking won't help | 20:11 |
dhellmann | fungi: it did | 20:11 |
dhellmann | ah, ok, I thought rechecking would do it | 20:11 |
fungi | dhellmann: you can add a workflow +1 or get dims to remove and add his again | 20:11 |
*** DinaBelova has joined #openstack-infra | 20:11 | |
*** zxiiro has joined #openstack-infra | 20:11 | |
EmilienM|afk | jeblair, anteaya: I have to be afk now, I agreed with crinkle she can help if you have more questions. | 20:12 |
dhellmann | fungi: thanks, I went ahead and did W+1 | 20:12 |
crinkle | o/ | 20:12 |
*** NikitaKonovalov has joined #openstack-infra | 20:12 | |
*** reazem has joined #openstack-infra | 20:12 | |
*** chmouel has joined #openstack-infra | 20:12 | |
anteaya | EmilienM|afk: thank yoiu | 20:12 |
fungi | dhellmann: the problem with recheck is that if an account applies a vote which is identical to the existing vote then gerrit doesn't emit the vote with the accompanying comment in the event stream, so when the new verify +1 gets left by jenkins on top of an existing verify +1, zuul never sees that in the stream and doesn't know to trigger gating | 20:12 |
anteaya | crinkle: hello there | 20:12 |
crinkle | anteaya: hello | 20:13 |
anteaya | welcome to the fun | 20:13 |
anteaya | lots for everybody | 20:13 |
crinkle | yay \o/ | 20:13 |
dhellmann | fungi: that makes sense, I'll keep that in mind for next time | 20:13 |
anteaya | crinkle: we are over here if you want to play along: https://etherpad.openstack.org/p/repo-renaming-2015-06-12 | 20:13 |
crinkle | anteaya: ty | 20:14 |
anteaya | welcome | 20:14 |
anteaya | crinkle: do speak up if you see anything amiss on the etherpad | 20:14 |
crinkle | anteaya: will do | 20:14 |
anteaya | fungi generated quite a bit of it and I haven't had a chance to eyeball it yet | 20:14 |
jeblair | fungi, dhellmann: https://gerrit-review.googlesource.com/#/c/54490/ | 20:14 |
openstackgerrit | Julia Kreger proposed openstack-infra/shade: Correct get_machine_by_mac and add test https://review.openstack.org/191069 | 20:15 |
jeblair | some small progress on that | 20:15 |
*** puranamr has quit IRC | 20:15 | |
*** dangers is now known as dangers_away | 20:16 | |
dhellmann | jeblair: nice | 20:16 |
anteaya | okay the stack has enough reviews, just waiting on jenkins to return on the puppet patch and the two following patches | 20:19 |
*** Sukhdev has quit IRC | 20:19 | |
*** krtaylor has quit IRC | 20:19 | |
*** e0ne has quit IRC | 20:19 | |
*** dboik has quit IRC | 20:19 | |
* anteaya moves to the rename etherpad | 20:19 | |
asselin_ | uberjay, I have the issue reproduced in my dev environment | 20:19 |
uberjay | asselin_: excellent! | 20:20 |
anteaya | jeblair fungi any thoughts about using incident for the rename? | 20:22 |
fungi | since nodepool is mostly idle now (current demand is mostly met) i've restarted it with 190827 locally applied | 20:23 |
fungi | jeblair: ^ | 20:23 |
jeblair | anteaya: not strong ones | 20:23 |
anteaya | okay | 20:23 |
*** whitenoi1e has joined #openstack-infra | 20:25 | |
*** nfedotov has joined #openstack-infra | 20:25 | |
fungi | logs suggest it deleted 23 leaked instances | 20:25 |
fungi | no, wait, 50 | 20:25 |
fungi | though i suppose those could be retries | 20:25 |
fungi | nope, unique node ids | 20:26 |
fungi | so 50 | 20:26 |
jeblair | that was a lot in a short amount of time. | 20:26 |
fungi | it's about what i've been seeing | 20:27 |
*** greghaynes has quit IRC | 20:27 | |
fungi | i bet it was almost all rax again. analyzing deeper | 20:27 |
*** pradk has joined #openstack-infra | 20:27 | |
fungi | yep, all rax | 20:27 |
*** olaph has quit IRC | 20:28 | |
fungi | mostly dfw and ord which is where i've been seeing them pile up all week | 20:28 |
fungi | so i think this is working | 20:28 |
fungi | scarily well so far | 20:28 |
*** annegentle has joined #openstack-infra | 20:29 | |
*** puranamr has joined #openstack-infra | 20:29 | |
anteaya | a sharp knife apparently | 20:29 |
*** olaph has joined #openstack-infra | 20:30 | |
*** mrunge has quit IRC | 20:30 | |
jeblair | fungi: wow, these are instances that are leaking _after_ nodepool tries to delete them | 20:31 |
*** esmute has quit IRC | 20:31 | |
fungi | yeah, i think rax nova is reporting successful deletion and then not following through? | 20:31 |
*** esmute has joined #openstack-infra | 20:31 | |
jeblair | so openstack says "yep, i'll delete that for you." and then doesn't. | 20:31 |
jeblair | yeah, and we actually check too.... | 20:31 |
jeblair | so they must be changing state to 'deleted' but not going away | 20:32 |
jeblair | (since of course openstack has been lying about that for years) | 20:32 |
fungi | those 50 seem to have all accumulated in the ~5 hours since i last cleaned them up, but i haven't seen the count tick upward again yet since the nodepoold restart knocked out those | 20:33 |
jeblair | oh, hrm. we don't wait for deletion; i thought we did. | 20:33 |
openstackgerrit | Wayne Warren proposed openstack-infra/zuul: WIP: Support GitHub PR webhooks https://review.openstack.org/163117 | 20:33 |
openstackgerrit | Wayne Warren proposed openstack-infra/zuul: Add 'merge' github webhook event. https://review.openstack.org/191207 | 20:34 |
openstackgerrit | Wayne Warren proposed openstack-infra/zuul: Allow list values in template parameters. https://review.openstack.org/191208 | 20:34 |
*** radez is now known as radez_g0n3 | 20:34 | |
fungi | okay, i'm going ahead and releasing git-review 1.25.0 and will send the release announcement once i confirm everything looks okay and i collect final artifact checksums to include | 20:35 |
*** samuelBartel has joined #openstack-infra | 20:35 | |
*** alexpilotti has quit IRC | 20:35 | |
*** ayoung-mtg has quit IRC | 20:36 | |
Clint | \o/ | 20:36 |
*** alexpilotti has joined #openstack-infra | 20:36 | |
fungi | Clint: thanks for your help going through those remaining patches | 20:36 |
Clint | sure, no problem | 20:37 |
jeblair | i'm fixing the mistral patch | 20:37 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Rename stackforge/mistral to openstack/mistral https://review.openstack.org/175328 | 20:38 |
jeblair | puppet patch has a problem too. fixing that. | 20:38 |
*** abitha has joined #openstack-infra | 20:40 | |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Puppet: move from Stackforge to OpenStack https://review.openstack.org/176326 | 20:40 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Move networking-l2gw project under openstack namespace https://review.openstack.org/185705 | 20:40 |
electrical | fungi: jeblair when ever you guys have spare moment, https://review.openstack.org/#/c/174036/ could use a vote :-) | 20:40 |
openstackgerrit | James E. Blair proposed openstack-infra/project-config: Rename stackforge/mistral to openstack/mistral https://review.openstack.org/175328 | 20:40 |
*** nfedotov has quit IRC | 20:40 | |
*** nfedotov has joined #openstack-infra | 20:40 | |
anteaya | ah the missing 's' | 20:41 |
*** tonytan4ever has quit IRC | 20:41 | |
openstackgerrit | Spencer Krum proposed openstack-infra/system-config: Print the node definition before apply test https://review.openstack.org/167346 | 20:42 |
*** pc_m has quit IRC | 20:42 | |
openstackgerrit | Merged openstack-infra/devstack-gate: fix grenade phase check https://review.openstack.org/190703 | 20:46 |
anteaya | fungi: my pass of the rename etherpad turned up nothing worth comment | 20:46 |
openstackgerrit | Merged openstack/diskimage-builder: Revert "Remove unused map_nbd function" https://review.openstack.org/190385 | 20:47 |
fungi | anteaya: thanks! | 20:48 |
anteaya | welcome | 20:48 |
*** annegentle has quit IRC | 20:48 | |
anteaya | I'm standing by on the jenkins tests for puppet et al | 20:48 |
anteaya | if you think of anything else that needs doing prior to 2200 do say so | 20:48 |
*** dboik has joined #openstack-infra | 20:49 | |
jeblair | i'm going to try to squeeze in a break before then. | 20:49 |
anteaya | jeblair: sounds like a good idea | 20:50 |
anteaya | jeblair: I'll keep an eye on the jenkins jobs | 20:50 |
*** ayoung-mtg has joined #openstack-infra | 20:50 | |
*** sputnik13 has quit IRC | 20:54 | |
*** sputnik13 has joined #openstack-infra | 20:55 | |
*** peristeri has quit IRC | 21:00 | |
anteaya | fungi: do those centos jobs look like they are failing to you? | 21:01 |
fungi | anteaya: which ones? | 21:01 |
anteaya | https://jenkins06.openstack.org/job/gate-infra-puppet-apply-centos6/1846/console | 21:01 |
anteaya | https://jenkins04.openstack.org/job/gate-infra-puppet-apply-centos6/381/console | 21:02 |
*** tiswanso has quit IRC | 21:02 | |
anteaya | https://jenkins04.openstack.org/job/gate-infra-puppet-apply-centos6/382/console | 21:02 |
*** puranamr has quit IRC | 21:02 | |
fungi | they're just crazy slow. until they get up around 20-25 minutes i don't assume they're going to time out | 21:02 |
anteaya | okay | 21:02 |
anteaya | they are at the 18 minute mark | 21:03 |
fungi | i've seen them pause for 5-10 minutes and then resume pretty often | 21:03 |
anteaya | ah let's hope | 21:03 |
*** puranamr has joined #openstack-infra | 21:03 | |
*** mriedem has quit IRC | 21:05 | |
anteaya | well the last one in the stack finished successfully | 21:07 |
openstackgerrit | John L. Villalovos proposed openstack-infra/irc-meetings: Add meeting for the OpenStack Diversity Workgroup https://review.openstack.org/191172 | 21:07 |
*** davideagnello has quit IRC | 21:08 | |
*** derekh_afk has quit IRC | 21:08 | |
*** krtaylor has joined #openstack-infra | 21:08 | |
*** davideagnello has joined #openstack-infra | 21:08 | |
*** eharney has quit IRC | 21:09 | |
openstackgerrit | Ramy Asselin proposed openstack-infra/zuul: Fail fast on invalid cross-project dependencies https://review.openstack.org/191216 | 21:09 |
*** esmute has quit IRC | 21:09 | |
asselin_ | uberjay, stop the bleeding fix ^^ | 21:09 |
openstackgerrit | John L. Villalovos proposed openstack-infra/irc-meetings: Add meeting for the OpenStack Diversity Workgroup https://review.openstack.org/191172 | 21:10 |
asselin_ | fungi, jeblair thoughts? ^^ | 21:10 |
*** dpaterson has quit IRC | 21:10 | |
anteaya | yay, jenkins is all happy through the rename stack | 21:11 |
*** esmute has joined #openstack-infra | 21:12 | |
fungi | asselin_: that seems better than nothing, though i wouldn't be surprised to find out there's a better place to trap that | 21:12 |
asselin_ | fungi, yeah...looking some more... | 21:13 |
*** HeOS has joined #openstack-infra | 21:13 | |
*** EricGonc_ has quit IRC | 21:14 | |
asselin_ | fungi, stack trace with that change: http://paste.openstack.org/show/285298/ | 21:14 |
*** esmute has quit IRC | 21:14 | |
*** esmute has joined #openstack-infra | 21:15 | |
*** asahlin has quit IRC | 21:15 | |
asselin_ | fungi, apparently none is valid: change = Change(None) | 21:15 |
*** ldnunes has quit IRC | 21:15 | |
*** amitgandhinz has joined #openstack-infra | 21:16 | |
*** asahlin has joined #openstack-infra | 21:16 | |
openstackgerrit | Doug Hellmann proposed openstack-infra/release-tools: Report all unreleased library changes https://review.openstack.org/191220 | 21:16 |
openstackgerrit | Davide Guerri proposed openstack-infra/shade: Improve documentation for create_port() https://review.openstack.org/191221 | 21:16 |
openstackgerrit | Davide Guerri proposed openstack-infra/shade: Add more parameters to update_port() https://review.openstack.org/191222 | 21:16 |
*** esmute has quit IRC | 21:16 | |
*** dguerri` is now known as dguerri | 21:17 | |
asselin_ | fungi, https://git.openstack.org/cgit/openstack-infra/zuul/tree/zuul/trigger/gerrit.py#n329 | 21:18 |
asselin_ | so not so simple | 21:18 |
*** esmute has joined #openstack-infra | 21:18 | |
*** annegentle has joined #openstack-infra | 21:19 | |
*** ayoung-mtg has quit IRC | 21:20 | |
openstackgerrit | Davide Guerri proposed openstack-infra/shade: Add more parameters to update_port() https://review.openstack.org/191222 | 21:20 |
*** amitgandhinz has quit IRC | 21:20 | |
fungi | asselin_: oh, ugh | 21:20 |
*** ivar-lazzaro has joined #openstack-infra | 21:23 | |
*** Sukhdev has joined #openstack-infra | 21:25 | |
*** doug-fish has left #openstack-infra | 21:26 | |
*** hrubi has joined #openstack-infra | 21:27 | |
*** esmute has quit IRC | 21:27 | |
openstackgerrit | Wayne Warren proposed openstack-infra/zuul: Add 'push' and 'tag' github webhook events. https://review.openstack.org/191207 | 21:28 |
openstackgerrit | Wayne Warren proposed openstack-infra/zuul: WIP: Support GitHub PR webhooks https://review.openstack.org/163117 | 21:28 |
openstackgerrit | Wayne Warren proposed openstack-infra/zuul: Allow list values in template parameters. https://review.openstack.org/191208 | 21:28 |
*** pradk has quit IRC | 21:28 | |
*** esmute has joined #openstack-infra | 21:30 | |
*** ayoung-mtg has joined #openstack-infra | 21:32 | |
asselin_ | fungi, I bet this is the line causing the issue: https://git.openstack.org/cgit/openstack-infra/zuul/tree/zuul/trigger/gerrit.py#n407 | 21:33 |
*** gyee_ has quit IRC | 21:33 | |
*** zz_jgrimm is now known as jgrimm | 21:33 | |
*** esmute has quit IRC | 21:33 | |
*** sdake_ has joined #openstack-infra | 21:36 | |
*** HeOS has quit IRC | 21:36 | |
openstackgerrit | Doug Hellmann proposed openstack-infra/release-tools: Add list_repos_by_tag.py https://review.openstack.org/191227 | 21:37 |
openstackgerrit | Doug Hellmann proposed openstack-infra/release-tools: Add show_legacy_releases.sh https://review.openstack.org/191228 | 21:37 |
*** esmute has joined #openstack-infra | 21:37 | |
fungi | looks like zuul might actually be pretty idle by the time we start our maintenance | 21:37 |
*** dboik has quit IRC | 21:38 | |
*** rlandy has quit IRC | 21:39 | |
openstackgerrit | Doug Hellmann proposed openstack-infra/release-tools: Add show_legacy_releases.sh https://review.openstack.org/191228 | 21:39 |
openstackgerrit | Doug Hellmann proposed openstack-infra/release-tools: Add list_repos_by_tag.py https://review.openstack.org/191227 | 21:39 |
fungi | jeblair: now we've caught 23 aliens in hpcloud and 65 in rackspace according to nodepool logs | 21:40 |
*** sdake has quit IRC | 21:40 | |
*** otter768 has joined #openstack-infra | 21:40 | |
anteaya | the power at my house is flickering | 21:40 |
*** rlandy has joined #openstack-infra | 21:40 | |
anteaya | it might go out | 21:40 |
fungi | i know how it feels | 21:40 |
jeblair | status alert Gerrit will be offline for project renames between 22:00 and 22:30 UTC | 21:40 |
jeblair | how's that look ? | 21:40 |
*** kfox1111 has joined #openstack-infra | 21:40 | |
fungi | lgtm | 21:40 |
anteaya | fungi: :) | 21:40 |
kfox1111 | Any known breakage on the websites? | 21:40 |
anteaya | jeblair: looks good | 21:40 |
*** soren has quit IRC | 21:40 | |
jeblair | #status alert Gerrit will be offline for project renames between 22:00 and 22:30 UTC | 21:40 |
openstackstatus | jeblair: sending alert | 21:40 |
anteaya | kfox1111: which website? | 21:41 |
kfox1111 | the summit video's are not all showing up anymore. | 21:41 |
anteaya | kfox1111: link? | 21:41 |
fungi | though getting all the github changes completed may take a little longer than usual because it's so clicky | 21:41 |
kfox1111 | https://www.openstack.org/summit/vancouver-2015/summit-videos/ | 21:41 |
fungi | kfox1111: contact info for reaching the people who control the www site is listed at https://wiki.openstack.org/wiki/Website | 21:41 |
openstackgerrit | Davide Guerri proposed openstack-infra/shade: Add get_server_external_ipv6() to meta https://review.openstack.org/190224 | 21:41 |
armax | anteaya: ping | 21:42 |
anteaya | armax: hi | 21:42 |
armax | anteaya: how’s everything going? | 21:42 |
armax | anteaya: you said you may need me around this time today | 21:42 |
-openstackstatus- NOTICE: Gerrit will be offline for project renames between 22:00 and 22:30 UTC | 21:43 | |
anteaya | yup | 21:43 |
*** ChanServ changes topic to "Gerrit will be offline for project renames between 22:00 and 22:30 UTC" | 21:43 | |
fungi | ianw: i think your centos7 check job on 179689,34 is looping indefinitely | 21:43 |
armax | anteaya: am I still on the hook? | 21:43 |
armax | :) | 21:43 |
anteaya | armax: for the rename things, hopefully the patches are all set | 21:43 |
armax | anteaya: ok | 21:43 |
anteaya | armax: always :) | 21:43 |
armax | darn | 21:43 |
fungi | ianw: looks like it probably tanks the worker in such a way that zuul thinks there was a bug and helpfully restarts the job for you | 21:43 |
anteaya | we should be good, don't be suprised by a last minute question though | 21:43 |
armax | anteaya: the l2gw looks good to me now | 21:43 |
anteaya | me too | 21:43 |
anteaya | thanks | 21:43 |
armax | anteaya: tucked nicely within the many layers of blankets | 21:44 |
anteaya | yup | 21:44 |
*** sdake_ has quit IRC | 21:44 | |
*** HeOS has joined #openstack-infra | 21:44 | |
*** otter768 has quit IRC | 21:45 | |
openstackstatus | jeblair: finished sending alert | 21:45 |
armax | anteaya: can there be any last minute additions to the lsit? | 21:46 |
armax | anteaya: just idle curiosity, when is there going to be another window like this? | 21:47 |
anteaya | armax: no | 21:47 |
anteaya | armax: we collect them on our meeting agenda wikipage: https://wiki.openstack.org/wiki/Meetings/InfraTeamMeeting#Upcoming_Project_Renames | 21:47 |
armax | anteaya: I am wondering there will be other likes these coming up? | 21:47 |
armax | anteaya: gotcha | 21:47 |
anteaya | and when we have another bunch we schedule another windo | 21:47 |
anteaya | w | 21:48 |
*** esmute has quit IRC | 21:48 | |
armax | ok, so the process is: file a patch, add yourself to the list | 21:48 |
armax | sit tight and wait | 21:48 |
armax | ? | 21:48 |
anteaya | yes | 21:48 |
armax | ok | 21:48 |
armax | sounds good | 21:48 |
anteaya | thanks | 21:48 |
armax | thank you | 21:48 |
anteaya | thank you | 21:48 |
j^2 | thank me? | 21:49 |
j^2 | :P | 21:49 |
*** sarob has quit IRC | 21:49 | |
anteaya | j^2: thank you | 21:49 |
*** esmute has joined #openstack-infra | 21:49 | |
* j^2 isn’t very good at IRC jokes | 21:49 | |
j^2 | anteaya: :D | 21:49 |
anteaya | :) | 21:49 |
anteaya | I have a good one once every 5 yeaers | 21:49 |
anteaya | I hit one last year so this is the 4 year desert | 21:50 |
j^2 | ha! | 21:50 |
*** alivigni has quit IRC | 21:51 | |
jeblair | anteaya: mind if i take over the -2 on the first change? | 21:51 |
anteaya | it is yours | 21:52 |
jeblair | anteaya: it's there; feel free to change your vote | 21:52 |
openstackgerrit | John L. Villalovos proposed openstack-infra/yaml2ical: Add 'outfile' var that can be used in templates https://review.openstack.org/191232 | 21:52 |
anteaya | changed | 21:52 |
jeblair | i'm going to mass review them when it's time. :) | 21:53 |
* anteaya stands by | 21:53 | |
jeblair | puppetmaster cron is stopped | 21:56 |
*** esmute has quit IRC | 21:56 | |
*** samuelBartel has quit IRC | 21:58 | |
*** esmute has joined #openstack-infra | 21:59 | |
fungi | looks like it's just that one group to be renamed at step 12 | 22:00 |
openstackgerrit | John L. Villalovos proposed openstack-infra/irc-meetings: Create individual ICS files and add to webpage https://review.openstack.org/191234 | 22:00 |
fungi | i'll take care of running the scripts i put in the etherpad | 22:01 |
jeblair | ready to start? | 22:01 |
fungi | yep | 22:01 |
anteaya | fungi: that is the only group I saw that needed renaming | 22:01 |
* anteaya is ready | 22:01 | |
* jlvillal thinks he just proposed some awesome stuff ;) | 22:01 | |
anteaya | fungi: I put a note about 2 groups that I think will be redundant | 22:01 |
jeblair | zuul is stopped | 22:01 |
jeblair | #status alert Gerrit is offline for project renames. ETA 20:30 | 22:01 |
openstackstatus | jeblair: sending alert | 22:01 |
*** esmute has quit IRC | 22:01 | |
fungi | anteaya: saw, thanks | 22:01 |
anteaya | okay welcome | 22:02 |
jeblair | #status alert Gerrit is offline for project renames. ETA 22:40 | 22:02 |
*** patrickeast has quit IRC | 22:02 | |
fungi | lgtm | 22:03 |
*** patrickeast has joined #openstack-infra | 22:03 | |
jeblair | fungi: let me know when gerrit is stopped and i'll start clicking | 22:03 |
fungi | ready for me to stop gerrit, or are we waiting for the alert to complete? | 22:03 |
fungi | oh, doing | 22:03 |
-openstackstatus- NOTICE: Gerrit is offline for project renames. ETA 20:30 | 22:03 | |
*** ChanServ changes topic to "Gerrit is offline for project renames. ETA 20:30" | 22:03 | |
*** hdd has quit IRC | 22:04 | |
fungi | okay, gerrit is now completely down. starting to run lots of scripts everywhere | 22:04 |
*** spzala has quit IRC | 22:05 | |
*** MarkAtwood has quit IRC | 22:05 | |
*** esmute has joined #openstack-infra | 22:06 | |
*** dimtruck is now known as zz_dimtruck | 22:06 | |
openstackstatus | jeblair: finished sending alert | 22:06 |
openstackstatus | jeblair: sending alert | 22:06 |
*** tvanderwiel has quit IRC | 22:07 | |
fungi | lucene reindex is underway | 22:07 |
superdan | woot, early friday! | 22:07 |
* superdan goes poof | 22:07 | |
-openstackstatus- NOTICE: Gerrit is offline for project renames. ETA 22:40 | 22:08 | |
*** ChanServ changes topic to "Gerrit is offline for project renames. ETA 22:40" | 22:08 | |
*** johnsom has joined #openstack-infra | 22:08 | |
openstackstatus | jeblair: finished sending alert | 22:10 |
fungi | i've got the jenkins workspace cleanups going now while i wait for the lucene reindex to complete | 22:11 |
fungi | git servers are already knocked out | 22:11 |
anteaya | workspace cleanups is step 16, yeah? | 22:12 |
fungi | yeah but it can really happen whenever | 22:12 |
anteaya | k, thanks | 22:12 |
fungi | as long as there aren't jobs running for those repos | 22:12 |
anteaya | ah cool, just trying to follow along | 22:12 |
fungi | we're a little past the halfway point on the reindex now | 22:12 |
anteaya | yay | 22:12 |
fungi | i've also got the .gitreview updates scripted and can blast those out once we're back up and running again | 22:13 |
anteaya | cool | 22:13 |
fungi | trying not to delay the onset of our weekend any longer than necessary ;) | 22:13 |
anteaya | heh | 22:13 |
anteaya | today has been a full day of rain | 22:14 |
*** esmute has quit IRC | 22:15 | |
anteaya | the github changes must be fun to do | 22:16 |
*** ayoung-mtg is now known as ayoung | 22:16 | |
jeblair | THEY ARE TERRIBLE | 22:16 |
anteaya | or tedious, tedious is another word | 22:16 |
anteaya | thought so | 22:16 |
anteaya | you disappeared with no sound | 22:17 |
anteaya | figured you were having a lot of no fun | 22:17 |
*** sc` has joined #openstack-infra | 22:17 | |
*** esmute_ has joined #openstack-infra | 22:17 | |
fungi | okay, 7 and 16 have completed | 22:18 |
fungi | jeblair: need help with the github tedium? | 22:18 |
jeblair | fungi: sure, why don't you start with the puppet ones | 22:19 |
jeblair | fungi: i just updated the etherpad with strikethrough, i will continue to keep it updated | 22:19 |
*** nfedotov1 has joined #openstack-infra | 22:19 | |
fungi | starting with the puppet ones. we'll see how fast you reach me | 22:19 |
*** armax has quit IRC | 22:20 | |
*** esmute_ has quit IRC | 22:20 | |
fungi | i'm crossing them out as i start to work on them (lock acquired!) | 22:20 |
*** esmute has joined #openstack-infra | 22:20 | |
jeblair | k, switching to that mode too :) | 22:21 |
*** nfedotov has quit IRC | 22:21 | |
*** nfedotov1 has quit IRC | 22:21 | |
fungi | i'll skip down a ways | 22:22 |
jeblair | ok | 22:23 |
*** esmute has quit IRC | 22:24 | |
*** sabeen1 has quit IRC | 22:25 | |
*** esmute has joined #openstack-infra | 22:26 | |
*** leakypipes has quit IRC | 22:26 | |
*** esmute has quit IRC | 22:27 | |
*** puranamr has quit IRC | 22:28 | |
*** esmute has joined #openstack-infra | 22:29 | |
*** greghaynes has joined #openstack-infra | 22:30 | |
*** xgerman has joined #openstack-infra | 22:30 | |
*** puranamr has joined #openstack-infra | 22:31 | |
* jeblair is out | 22:31 | |
* jeblair gives his mouse back to li | 22:31 | |
fungi | finished as well | 22:31 |
anteaya | ha ha ha | 22:32 |
fungi | i use a very large arcade-style trackball instead | 22:32 |
fungi | because at least it feels like i'm playing centipede that way | 22:32 |
fungi | okay, ready for me to start gerrit? | 22:32 |
anteaya | I loved centipede | 22:32 |
marcusvrn | patrickeast: hey...I have not finished yet, but what do you think about this: http://pasteboard.co/1b24EdTt.png | 22:32 |
jeblair | fungi: i think so | 22:33 |
jeblair | yes | 22:33 |
fungi | it's on its way back up | 22:33 |
jeblair | starting zuul | 22:33 |
fungi | i can confirm it looks to be working | 22:33 |
*** annegentle has quit IRC | 22:34 | |
btully | i can confirm as well | 22:34 |
btully | nice job! | 22:34 |
fungi | there's still more to do ;) | 22:34 |
jeblair | restoring queues | 22:34 |
*** annegentle has joined #openstack-infra | 22:34 | |
jeblair | ready for merge-bomb? | 22:34 |
* anteaya braces | 22:34 | |
anteaya | fungi: step 12 before or after merge bomb? | 22:35 |
jeblair | same time is fine | 22:35 |
openstackgerrit | Davide Guerri proposed openstack-infra/shade: Add more parameters to update_port() https://review.openstack.org/191222 | 22:35 |
anteaya | k | 22:35 |
fungi | yeah, as long as nothing else triggers manage-projects in the meantime | 22:35 |
jeblair | puppetmaster is stopped so that's safe | 22:35 |
fungi | yep, renaming the lone group now | 22:36 |
*** esmute has quit IRC | 22:36 | |
jeblair | gertty is doing its thing | 22:36 |
jeblair | and now it's nodepool's turn | 22:38 |
*** sarob has joined #openstack-infra | 22:38 | |
anteaya | go nodepool | 22:39 |
fungi | go magic nodepool, go! | 22:39 |
patrickeast | marcusvrn: nice! it might be better to put it at the top of the table if possible, i feel like more often then not the query i pick goes off the screen so having them up at the top by the names would be easier to see | 22:39 |
patrickeast | marcusvrn: but i like having those stats | 22:39 |
anteaya | light on precise and centos off the start | 22:40 |
jeblair | status ok Gerrit is back online. Zuul reconfiguration for renamed projects is still in progress, ETA 23:30. | 22:40 |
jeblair | how's that ? | 22:40 |
fungi | lgtm | 22:40 |
jeblair | #status ok Gerrit is back online. Zuul reconfiguration for renamed projects is still in progress, ETA 23:30. | 22:40 |
openstackstatus | jeblair: sending ok | 22:40 |
*** ChanServ changes topic to "Gerrit is offline for project renames. ETA 20:30" | 22:42 | |
-openstackstatus- NOTICE: Gerrit is back online. Zuul reconfiguration for renamed projects is still in progress, ETA 23:30. | 22:42 | |
jeblair | oh, that seems buggy. | 22:42 |
jeblair | i guess that only works if you issue the update _after_ the first one is complete. | 22:43 |
fungi | ugh | 22:43 |
jeblair | i'll work on fixing | 22:43 |
crinkle | submitting a change to openstack/puppet-keystone works \o/ | 22:43 |
jeblair | crinkle: you'll need to recheck it after zuul config updates | 22:43 |
*** nikeshm has quit IRC | 22:43 | |
crinkle | jeblair: ah ok | 22:44 |
fungi | crinkle: totally not done here | 22:44 |
crinkle | my hopes are dashed | 22:44 |
*** miqui has quit IRC | 22:44 | |
ianw | fungi: ok, i don't have time to look into it ATM ... my checker shows that all centos7 hosts built correctly but as you noted yesterday it's hard to see what image things are running on juts from the console log | 22:44 |
*** whitenoi1e has quit IRC | 22:44 | |
anteaya | no just put them on hold for about 45 more minutes | 22:44 |
*** whitenoise has quit IRC | 22:44 | |
*** sdake has joined #openstack-infra | 22:44 | |
fungi | crinkle: also i have .gitreview updates for all your projects prepped to push up as soon as we get near the end | 22:44 |
openstackstatus | jeblair: finished sending ok | 22:45 |
fungi | crinkle: so you'll have lots of very easy one-line patches to review | 22:45 |
crinkle | fungi: cool ty | 22:45 |
*** annegentle has quit IRC | 22:45 | |
anteaya | yay nodes for all jobs | 22:45 |
marcusvrn | patrickeast: hmm nice! I will check how I can do it | 22:46 |
tonyb | frickler_: Thank. I've looked at those reviews but my puppet skills are (pretty much) non-existent so I doubt my +/-1 would mean anything. | 22:47 |
*** marcusvrn_ has joined #openstack-infra | 22:47 | |
tonyb | frickler_: I will learn enough to do a reasonable review on Monday | 22:47 |
marcusvrn | patrickeast: but now I have to go :) have a nice weekend | 22:47 |
tonyb | frickler_: because yes I'd very much like vivid (well really rolling ubuntu-dev) in nodepool. | 22:47 |
openstackgerrit | Merged openstack-infra/project-config: networking-ovn: move from stackforge/ to openstack/ https://review.openstack.org/184159 | 22:48 |
fungi | and so it begins! | 22:49 |
*** ChanServ changes topic to "Active incident: venom related reboots | Related work in #openstack-infra-incident" | 22:50 | |
anteaya | they all seem in good shape | 22:50 |
patrickeast | marcusvrn: thanks, you too | 22:50 |
fungi | make it rain rename patches | 22:50 |
anteaya | just waiting on the centos ones | 22:50 |
*** whitenoise has joined #openstack-infra | 22:50 | |
*** whitenoise has joined #openstack-infra | 22:50 | |
*** ChanServ changes topic to "Discussion of OpenStack Developer and Community Infrastructure | docs http://docs.openstack.org/infra/manual/ http://ci.openstack.org/ | bugs https://storyboard.openstack.org/ | source https://git.openstack.org/cgit/openstack-infra/" | 22:50 | |
jeblair | those are a little stale :/ | 22:51 |
fungi | wow | 22:51 |
*** whitenoi1e has joined #openstack-infra | 22:51 | |
anteaya | ha ha ha | 22:51 |
anteaya | is chanserv playing topic roulette? | 22:51 |
*** puranamr has quit IRC | 22:51 | |
*** ChanServ changes topic to "Discussion of OpenStack Developer and Community Infrastructure | docs http://docs.openstack.org/infra/ | bugs https://storyboard.openstack.org/ | source https://git.openstack.org/cgit/openstack-infra/" | 22:51 | |
ianw | fungi: https://review.openstack.org/#/c/188664/ might help with this one ... if it is again back to the oom situation | 22:51 |
j^2 | anteaya: looks like it | 22:51 |
*** puranamr has joined #openstack-infra | 22:52 | |
*** puranamr has quit IRC | 22:52 | |
*** marcusvrn has quit IRC | 22:52 | |
*** marcusvrn_ is now known as marcusvrn | 22:52 | |
*** puranamr has joined #openstack-infra | 22:52 | |
jeblair | all changes have nodes now | 22:52 |
jeblair | we're 16 minutes out depending on how happy centos6 is | 22:53 |
anteaya | last centos jobs started about 9 minutes ago | 22:53 |
openstackgerrit | Ian Wienand proposed openstack-infra/devstack-gate: [WIP] run centos7 with neutron https://review.openstack.org/179689 | 22:53 |
*** dguerri is now known as dguerri` | 22:54 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 22:54 | |
*** wenlock_ has quit IRC | 22:55 | |
openstackgerrit | Merged openstack-infra/project-config: Move networking-odl into the openstack namespace https://review.openstack.org/186813 | 22:56 |
openstackgerrit | Ian Wienand proposed openstack-infra/project-config: Add uname -a to net-info macro https://review.openstack.org/191243 | 22:58 |
ianw | fungi: ^ this would also help in figuring out what is running | 22:58 |
ianw | without having to find someone to log in | 22:59 |
*** esmute has joined #openstack-infra | 23:03 | |
*** esmute has quit IRC | 23:04 | |
anteaya | the centos job at the top of the gate has been running 22 minutes | 23:04 |
anteaya | how long is the timeout period? | 23:05 |
openstackgerrit | Merged openstack-infra/project-config: vmware-nsx: move from stackforge/ to openstack/ https://review.openstack.org/184558 | 23:05 |
anteaya | oh done | 23:05 |
openstackgerrit | Merged openstack-infra/project-config: networking-midonet: move from stackforge/ to openstack/ https://review.openstack.org/187671 | 23:05 |
fungi | anteaya: 30. so cutting it close, yes | 23:05 |
anteaya | new top of gate has been going 23 minutes | 23:06 |
*** rfolco has quit IRC | 23:06 | |
anteaya | 187768 | 23:06 |
anteaya | just one more centos still running behind it | 23:07 |
anteaya | rest are all green | 23:07 |
openstackgerrit | Merged openstack-infra/project-config: networking-cisco: move from stackforge/ to openstack/ https://review.openstack.org/187768 | 23:08 |
anteaya | yay | 23:08 |
fungi | fingers and eyes crossed | 23:08 |
openstackgerrit | Merged openstack-infra/project-config: networking-ofagent: move from stackforge/ to openstack/ https://review.openstack.org/187859 | 23:08 |
openstackgerrit | Merged openstack-infra/project-config: networking-bgpvpn: move from stackforge/ to openstack/ https://review.openstack.org/188822 | 23:08 |
*** salv-orlando has quit IRC | 23:08 | |
openstackgerrit | Spencer Krum proposed openstack-infra/system-config: Alpha-sort modules.env https://review.openstack.org/191245 | 23:08 |
openstackgerrit | Merged openstack-infra/project-config: Rename stackforge/cookbook* to openstack/cookbook* https://review.openstack.org/186532 | 23:08 |
openstackgerrit | Merged openstack-infra/project-config: dragonflow : move from stackforge/ to openstack/ https://review.openstack.org/187471 | 23:08 |
openstackgerrit | Merged openstack-infra/project-config: Project rename stackforge/ironic-discoverd -> openstack/ironic-inspector https://review.openstack.org/188030 | 23:08 |
openstackgerrit | Merged openstack-infra/project-config: Rename stackforge/octavia -> openstack/octavia https://review.openstack.org/182748 | 23:08 |
openstackgerrit | Merged openstack-infra/project-config: Move zvm-driver to stackforge-attic https://review.openstack.org/179738 | 23:09 |
openstackgerrit | Merged openstack-infra/project-config: Remove old Fuel plugins https://review.openstack.org/179714 | 23:09 |
anteaya | all the rest are done | 23:09 |
openstackgerrit | Merged openstack-infra/project-config: Puppet: move from Stackforge to OpenStack https://review.openstack.org/176326 | 23:09 |
j^2 | yay! | 23:09 |
openstackgerrit | Merged openstack-infra/project-config: Move networking-l2gw project under openstack namespace https://review.openstack.org/185705 | 23:09 |
openstackgerrit | Merged openstack-infra/project-config: Rename stackforge/mistral to openstack/mistral https://review.openstack.org/175328 | 23:09 |
jeblair | that's the set | 23:09 |
j^2 | Thanks everyone! | 23:09 |
anteaya | yay | 23:09 |
anteaya | now .gitreview files for everybody | 23:10 |
jeblair | not yet | 23:10 |
fungi | no, now puppet goes back on | 23:10 |
HenryG | Nice work folks! I just switched my remote urls and all looks great! Thanks! | 23:10 |
anteaya | ah | 23:10 |
fungi | and then once manage-projects applies all those changes, we push .gitreview updates | 23:10 |
anteaya | I got excited | 23:10 |
*** abitha has quit IRC | 23:11 | |
jeblair | fungi: i'll run run_all.sh by hand now | 23:11 |
fungi | sounds good | 23:11 |
jeblair | fatal: destination path '/etc/puppet/modules/apps_site' already exists and is not an empty directory. | 23:12 |
jeblair | for later | 23:12 |
*** fallenpegasus has quit IRC | 23:12 | |
fungi | er, huh | 23:13 |
fungi | yeah, guess i missed something reviewing that | 23:13 |
fungi | i was going to try to launch the server for it today | 23:13 |
*** EricGonczer_ has joined #openstack-infra | 23:13 | |
fungi | but we're waiting confirmation of the resource consumption at its current hosting location so i can size the flavor appropriately | 23:14 |
jeblair | fungi: i think that was the puppet module git checkout on the puppetmaster | 23:14 |
jeblair | probably just need to rm that dir and let it recreate it | 23:14 |
openstackgerrit | John L. Villalovos proposed openstack-infra/yaml2ical: Add docs on biweekly-odd vs biweekly-even https://review.openstack.org/191246 | 23:15 |
fungi | oh, got it | 23:16 |
fungi | anyway, will do | 23:16 |
*** EricGonczer_ has quit IRC | 23:18 | |
*** abitha has joined #openstack-infra | 23:22 | |
*** openstackgerrit has quit IRC | 23:22 | |
*** openstackgerrit has joined #openstack-infra | 23:22 | |
fungi | once the manage-projects run completes, i've got the .gitreview changes ready to cram up into the gerrit | 23:23 |
*** ashleighfarnham has quit IRC | 23:23 | |
*** wenlock has quit IRC | 23:23 | |
*** davideag_ has joined #openstack-infra | 23:23 | |
jeblair | git* is done; review is running now | 23:23 |
fungi | coolies | 23:23 |
HenryG | Can we do our own .gitreview update patch? | 23:24 |
fungi | HenryG: you could, but i have them scripted up already for all 61 renamed repos | 23:24 |
HenryG | fungi: cool | 23:24 |
* HenryG waits | 23:24 | |
fungi | so it will take me, literally, seconds | 23:24 |
fungi | just waiting until the renaming is actually complete before i push them | 23:25 |
*** Sukhdev has quit IRC | 23:25 | |
fungi | we're basically in a holding pattern until all the acl updates are applied by puppet | 23:25 |
*** davideag_ has quit IRC | 23:25 | |
*** rlandy has quit IRC | 23:25 | |
* anteaya imagines planes circling overhead | 23:26 | |
fungi | and also i'm taking advantage of the brief quiet to eat dinner | 23:26 |
* johnsom passes out pretzels | 23:26 | |
anteaya | food! | 23:26 |
anteaya | pretzels are good | 23:26 |
openstackgerrit | Spencer Krum proposed openstack-infra/project-config: Test that the mdoules.env file in infra is sorted https://review.openstack.org/191247 | 23:27 |
*** davideagnello has quit IRC | 23:27 | |
*** rlandy has joined #openstack-infra | 23:27 | |
openstackgerrit | Spencer Krum proposed openstack-infra/system-config: Alpha-sort modules.env https://review.openstack.org/191245 | 23:27 |
*** abregman has quit IRC | 23:27 | |
openstackgerrit | Spencer Krum proposed openstack-infra/system-config: Bring in module to manage update-alternatives https://review.openstack.org/171556 | 23:29 |
openstackgerrit | John L. Villalovos proposed openstack-infra/irc-meetings: Update text on Ironic bare metal meeting https://review.openstack.org/191248 | 23:30 |
jlvillal | NobodyCam: I added you as a reviewer to: https://review.openstack.org/#/c/191248/ Updating the text a little for the Ironic meeting. | 23:31 |
* jlvillal smacks forehead for wrong channel | 23:31 | |
*** bexelbie has quit IRC | 23:32 | |
anteaya | jlvillal: not to worry | 23:32 |
jlvillal | anteaya: Thanks :) | 23:32 |
anteaya | :) | 23:32 |
*** sputnik13 has quit IRC | 23:33 | |
fungi | jeblair: looks like manage-projects just completed? | 23:33 |
jeblair | review.o.o done | 23:33 |
fungi | excellent | 23:33 |
jeblair | yep... | 23:33 |
jeblair | fungi: you may want to wait for zuul to be updated though | 23:34 |
fungi | yep | 23:34 |
fungi | otherwise we're sure to have some odd test results | 23:34 |
fungi | jenkins job updates too i expect | 23:34 |
jeblair | The authenticity of host 'hound.openstack.org (2001:4800:7818:104:be76:4eff:fe04:b7cc)' can't be established. | 23:34 |
jeblair | i think i'm going to say 'no' to that one. | 23:34 |
fungi | just as well, we'll delete it soon | 23:35 |
fungi | i would skip that | 23:35 |
fungi | yeah | 23:35 |
*** EricGonczer_ has joined #openstack-infra | 23:35 | |
jeblair | etherpad* are disabled | 23:35 |
openstackgerrit | Spencer Krum proposed openstack-infra/system-config: Add puppet-community/archive module https://review.openstack.org/164569 | 23:35 |
*** alexsyip has quit IRC | 23:36 | |
fungi | huh. i wonder if that's because of clarkb's local patches fixing the summit bugs | 23:36 |
jeblair | The authenticity of host 'phabricator.openstack.org (2001:4800:7815:104:be76:4eff:fe03:64a7)' can't be established. | 23:36 |
fungi | another mordred demo | 23:36 |
jeblair | The authenticity of host 'pypi.region-a.geo-1.openstack.org (15.125.68.108)' can't be established. | 23:36 |
jeblair | i guess i'll say 'yes' to that one | 23:36 |
fungi | that ones not online yet, but should be agreed | 23:36 |
openstackgerrit | Spencer Krum proposed openstack-infra/system-config: Load in nanliu/git module https://review.openstack.org/164355 | 23:36 |
*** EricGonczer_ has quit IRC | 23:37 | |
jeblair | changed: [zuul.openstack.org] | 23:38 |
*** Sukhdev has joined #openstack-infra | 23:38 | |
*** EricGonczer_ has joined #openstack-infra | 23:38 | |
jeblair | i think it's reloading now | 23:38 |
jeblair | though it's also possible it's stuck in a loop | 23:39 |
fungi | uh... | 23:39 |
jeblair | i'll restart it | 23:40 |
*** Swami has quit IRC | 23:40 | |
fungi | that's remarkably unfortunate | 23:40 |
*** otter768 has joined #openstack-infra | 23:40 | |
*** EricGonczer_ has quit IRC | 23:41 | |
waynr | can anyone explain the difference between a zuul Ref and a zuul Change? | 23:41 |
waynr | the zuul merger seems to treat the two differently | 23:41 |
openstackgerrit | Flavio Percoco proposed openstack/requirements: Use pyngus>=1.3.1 https://review.openstack.org/191107 | 23:41 |
jeblair | waynr: one is a commit in a repository, one is a proposed commit that hasn't landed yet | 23:42 |
jeblair | fungi: restarted | 23:42 |
jeblair | looks like all the jenkinses are done now as well | 23:42 |
waynr | oh...i've been using Ref all along, I guess I should have been using Change | 23:43 |
waynr | finding some bugs in my github connection when attempting to implement a reporter | 23:43 |
fungi | i should probably hold off pushing these until i confirm we have common node types registered in gearman again | 23:43 |
*** sarob has quit IRC | 23:44 | |
asselin_ | does zuul promote make a change run sooner? | 23:44 |
asselin_ | in an independent pipeline? | 23:44 |
fungi | asselin_: it reorders a shared change queue in a dependent pipeline | 23:44 |
asselin_ | I see...seems like it went to the back of the list now | 23:44 |
*** otter768 has quit IRC | 23:45 | |
jeblair | fungi: puppet is complete | 23:45 |
fungi | asselin_: for an independent pipeline it's not much help, no | 23:45 |
jeblair | nodepool.openstack.org : ok=0 changed=0 unreachable=0 failed=1 | 23:45 |
jeblair | oh, disabled there too | 23:45 |
fungi | yeah, because we have your alien cleanup patch applied | 23:46 |
asselin_ | fungi, that ok...I guess i have to promote everything else to get the one I want to run first..... | 23:46 |
openstackgerrit | Zhenguo Niu proposed openstack-infra/project-config: Add ironic-dashboard to openstack https://review.openstack.org/191131 | 23:47 |
jeblair | asselin_: it re-enqueues the change, so the job requests go to the back of the gearman queue | 23:47 |
jeblair | (zuul is not actually responsible for ordering) | 23:47 |
*** ajmiller has quit IRC | 23:48 | |
*** puranamr has quit IRC | 23:48 | |
fungi | jeblair: i don't see any job definitions in gearman with no registered workers, and all the node types i think we care about seem to be present, so pushing the .gitreview updates now | 23:48 |
jeblair | ++ | 23:49 |
jeblair | and there they go :) | 23:49 |
*** dan is now known as Guest74409 | 23:49 | |
*** dan_ has joined #openstack-infra | 23:50 | |
*** dan_ is now known as Guest68549 | 23:50 | |
jeblair | just as a really rough estimate, i'm guessing that took about 0.5 person-hours per repo. | 23:53 |
jeblair | which makes this nearly a week's work. certainly in france. | 23:55 |
fungi | yeah, especially if you count all the time the maintenance plan fairy spent last night to leave that etherpad under my pillow, the time you spent trying to hammer the stack of commits into shape, the multiple people reviewing them all multiple times | 23:55 |
jeblair | (and it's only so _low_ because we batched them) | 23:55 |
anteaya | yeah I would say I worked for about 8 hours total on this | 23:55 |
anteaya | ha ha ha | 23:55 |
anteaya | man in france is hard to get anything done | 23:55 |
anteaya | the holidays are interrupted by holidays | 23:55 |
anteaya | may in france | 23:55 |
openstackgerrit | Michal Rostecki proposed openstack-infra/project-config: Determining Rally-Devstack integration on pre_test_hook https://review.openstack.org/189853 | 23:55 |
sc68cal | don't forget the 6 week vacation | 23:55 |
fungi | we interrupt this regularly scheduled holiday to bring you an emergency holiday | 23:56 |
anteaya | sc68cal: that is july I think | 23:56 |
anteaya | fungi: that's about it | 23:56 |
*** puranamr has joined #openstack-infra | 23:56 | |
*** ZZelle_ has quit IRC | 23:57 | |
*** bkero has quit IRC | 23:57 | |
jeblair | fungi: i'm imagining the maintenance plan fairy is not a disney fairy. | 23:58 |
jeblair | fungi: more like a treacherous fairy of old. | 23:58 |
*** rlandy has quit IRC | 23:58 | |
openstackgerrit | Wayne Warren proposed openstack-infra/zuul: Add basic Github Zuul Reporter. https://review.openstack.org/191312 | 23:58 |
*** sarob has joined #openstack-infra | 23:58 | |
fungi | jeblair: let's just say you don't want to gaze upon its likeness unless your sanity points are still mostly intact | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!