Friday, 2015-08-07

*** sharikapongubala has quit IRC00:02
*** sergmelikyan has quit IRC00:03
*** achanda_ has quit IRC00:03
*** salv-orlando has quit IRC00:03
clarkbmtreinish: commented really think we should make the db uri configurable00:04
*** funzo has quit IRC00:04
*** achanda has quit IRC00:05
*** fedexo has joined #openstack-infra00:05
*** ybathia has quit IRC00:05
mtreinishclarkb: ok, sure. I was on the fence about that, but when I saw that es was hardcoded I erred on the side of laziness00:06
clarkboh is es hardcoded too?00:06
clarkbmaybe I should revoke my -1 then00:06
clarkbmtreinish: thoughts on the other comment? thats mostly me trying to be too smart00:07
mtreinishclarkb: http://git.openstack.org/cgit/openstack-infra/elastic-recheck/tree/elastic_recheck/elasticRecheck.py#n2800:07
clarkbwell then00:07
*** EricGonc_ has quit IRC00:07
clarkbmtreinish: maybe make it a global too jus so its clear and findable?00:07
clarkbeg here is a constant looking like a constant00:07
mtreinishclarkb: nah, I thought about that too, I mean I could make the whole thing one giant query00:07
cody-somervilleWe'd prefer it to be configurable.00:08
clarkbcody-somerville: sure but that should be a follow up change00:08
clarkb(that you can write :) ) as its unrelated to the curent change00:08
mtreinishthe only thing is I'll have to add a db api method to do whatever00:08
mtreinishbut I'm fine with that00:08
cody-somerville:)00:08
*** EricGonczer_ has joined #openstack-infra00:09
mtreinishclarkb: sure I'll move it to a global, that's easy enough00:09
mtreinishclarkb: also on the sql v python thing, it also assumes we have things properly indexed :)00:10
clarkbmtreinish: good point00:11
mtreinishclarkb: the release today actually included a migration which added a bunch of indexes00:11
*** skylerberg has quit IRC00:11
* mtreinish wonders if it crashed or if it's still running00:11
*** armax has joined #openstack-infra00:11
*** rlandy has joined #openstack-infra00:12
mtreinishclarkb: if you get a sec can you check /var/log/subunit2sql_migration.log on logstash.o.o00:12
clarkbmtreinish: sqlalchemy.exc.OperationalError: (_mysql_exceptions.OperationalError) (1071, 'Specified key was too long; max key length is 767 bytes') [SQL: u'CREATE INDEX ix_test_id_status ON test_runs (test_id, status)']00:13
*** EricGonczer_ has quit IRC00:13
mtreinishhmm, ok well that's something to figure out how to get around00:14
*** sigmavirus24 is now known as sigmavirus24_awa00:14
clarkbis status more than 767 bytes?00:14
openstackgerritMerged openstack-infra/nodepool: Fix erroneously deleting non-leaked instances  https://review.openstack.org/21014900:14
mtreinishit's 256 bytes (well a string 256)00:15
openstackgerritMerged openstack-infra/nodepool: Remove terminated image/instance delete threads  https://review.openstack.org/21015000:15
*** mriedem1 has joined #openstack-infra00:15
clarkbmtreinish: whihc is utf8 so 3 bytes pre00:16
clarkbI think00:16
mtreinishoh, that would do it then00:17
*** mriedem has quit IRC00:17
clarkbmtreinish: mysql doesn't do variable length utf8 it allocated either 3 or 4 bytes per char dpeending on the utf8 encoding you selected00:17
clarkbthis is appraently an optimization to trade disk space for cpu time00:18
*** esmute_ has quit IRC00:18
*** skylerberg has joined #openstack-infra00:20
mtreinishclarkb: well I can look into adding a prefix on the index to limit its size, but that would require changing the migration in a non-backwards compat manner00:20
mtreinishor can we change that limit?00:20
*** moravec has quit IRC00:20
clarkbthats a question for mordred SpamapS devananda Clint00:21
* Clint squints.00:21
* mtreinish wishes he was better at doing these things00:21
*** tsekiyam_ has joined #openstack-infra00:21
SpamapSso...00:21
*** moravec has joined #openstack-infra00:21
SpamapSutf8 has 3 or 4 bytes per char()...00:22
SpamapSmysql's b-trees are _fixed_ width00:22
SpamapSso, you have 2 choices really00:22
SpamapS1) if you are only ever going to do ranged queries, you can add a length to the field name, and only index on the prefix.00:22
*** puranamr has quit IRC00:23
*** geoffarnold has quit IRC00:23
SpamapSso if the field is varchar(255)  you can 'create index foo_ix on table1 textfield(64) and only index the first 64 characters.00:23
*** SumitNaiksatam has quit IRC00:24
SpamapSOR, you can ask yourself if you care about sorting and multibyte characters. If you don't, care about either of those, then you can make the field varbinary(255) and it will justwork(tm)00:24
SpamapSmtreinish: ^00:24
*** mtanino has quit IRC00:24
*** sergmelikyan has joined #openstack-infra00:25
*** otter768 has joined #openstack-infra00:25
mtreinishSpamapS: yeah I was thinking about #1 but it would require breaking backwards compat on a released migration00:25
*** tsekiyama has quit IRC00:25
clarkbI am kinda amaed status needs to be that big00:25
clarkbcan we make it an enum instead?00:25
*** stevemar has joined #openstack-infra00:25
mtreinishgranted I don't really know how many users we have out there besides infra, if any00:25
mtreinishbut if we don't have a choice I guess that's what we have to do00:26
SpamapSmtreinish: the length being shortened wouldn't break backward compat. It would just go sllllooowwww for things that were fast?00:26
SpamapSbecause you'd just be making the index smaller and less useful.00:26
*** tsekiyam_ has quit IRC00:26
SpamapSbut it would still "work"00:26
mtreinishoh, that's a good point00:26
SpamapSjust that you end up doing index scans sometimes instead of single index key reads.00:27
SpamapSbut you're also scanning a much smaller index.00:27
SpamapSmtreinish: whats the field content?00:27
mtreinishSpamapS: well tbh I really need to shrink that column because it's never that big00:27
mtreinishbut that's a headache because the table is really big00:27
*** markvoelker has quit IRC00:27
*** chlong has joined #openstack-infra00:27
SpamapSmtreinish: "status" ?00:27
SpamapSmtreinish: binary that.00:27
SpamapSmtreinish: you never have a status of '☃' right?00:28
SpamapSalso wow http://unicodesnowmanforyou.com/00:28
*** markvoelker has joined #openstack-infra00:28
*** MarkAtwood_ has quit IRC00:28
clarkbmtreinish: is status not skip, pass, fail?00:28
clarkbthat can be enumed00:29
mtreinishstatus show only ever be: exists, xfail, unxsuccess, success, fail, or skip00:29
*** stevemar has quit IRC00:29
SpamapSif that's the case then yeah, enum00:29
*** otter768 has quit IRC00:29
*** MarkAtwood has quit IRC00:29
SpamapSand mysql 5.5+ has online enum alters so you don't have to worry about "oh now more statuses we have to rebuild the whole table" anymore.00:30
*** laughterwym has joined #openstack-infra00:30
*** tiswanso has joined #openstack-infra00:30
mtreinishSpamapS, clarkb: ok sure, that makes sense to switch it to enum. But I'm pretty sure I'll have to do that after the failing migration00:31
SpamapSmtreinish: yeah, for the failing one, just shorten the index.00:32
SpamapSmtreinish: that will be backward compatible and quite safe00:32
mtreinishSpamapS: do you know how to do that in sqlalchemy off the top of your head?00:32
SpamapSmtreinish: no00:33
mtreinishok, to the docs I go00:33
SpamapSmtreinish: but probably an arg to the index object00:33
lifelessmtreinish: or pass :)00:36
mtreinishugh, and I'm going to need to add checks before each index add now, because the migration is 75% applied00:37
*** alexsyip has joined #openstack-infra00:37
*** yushiro has quit IRC00:39
openstackgerritColleen Murphy proposed openstack-infra/system-config: Add controller class for Infra Cloud  https://review.openstack.org/20969800:41
*** tiswanso has quit IRC00:41
*** asselin_ has left #openstack-infra00:41
openstackgerritJoshua Hesketh proposed openstack-infra/puppet-openstackci: Set up file conditions for os-loganalyze  https://review.openstack.org/20876700:41
jheskethclarkb: ^00:41
jheskethClint: ping00:41
Clintjhesketh: hi00:41
jheskethClint: you wanted to discuss how swift log stuff was going at some point today?00:42
Clintjhesketh: i do!00:42
clarkbjhesketh: +2 thanks00:42
mtreinishSpamapS: it's mysql_length=whatever_length00:43
SpamapSmtreinish: ah right the length thing is mysql specific.00:43
mtreinishclarkb: do you have any idea why we wouldn't have caught this on the migration tests? a different mysql version?00:49
clarkbmtreinish: different encoding type probably00:49
clarkbmtreinish: mysql defaults to latin1 iirc00:49
mtreinishah, ok that makes sense00:50
*** jasondotstar has quit IRC00:50
*** HeOS has quit IRC00:50
*** jasondotstar has joined #openstack-infra00:52
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Fix issues in migration 1ff737bef438  https://review.openstack.org/21016600:52
mtreinishclarkb, SpamapS: ^^^00:52
Clintjhesketh: so i see 5 open topical changes00:52
*** dims_ has quit IRC00:53
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Fix issues in migration 1ff737bef438  https://review.openstack.org/21016600:53
*** rlandy has quit IRC00:55
openstackgerritArkadiy Kraminsky proposed openstack-infra/devstack-gate: Add libvirt cpu_map.xml to logs.  https://review.openstack.org/21016800:55
*** jasondotstar has quit IRC00:56
*** sharikapongubala has joined #openstack-infra00:59
*** funzo has joined #openstack-infra01:00
jheskethClint: so as far as I know, https://review.openstack.org/#/c/208767/ is the only one on the critical path. After that we can start moving more jobs across01:00
*** tiswanso has joined #openstack-infra01:01
Clintjhesketh: anything about https://etherpad.openstack.org/p/swift-logs-status-yaml look inaccurate?01:03
*** tiswanso has quit IRC01:03
*** sharikapongubala has quit IRC01:04
*** tiswanso has joined #openstack-infra01:04
jheskethClint: looks good to me01:04
*** funzo has quit IRC01:05
*** atuvenie has quit IRC01:05
*** pvaneck has quit IRC01:05
Clintjhesketh: okay, thanks.  let me know if any blockers should arise01:05
*** sharikapongubala has joined #openstack-infra01:05
jheskethwill do, thanks!01:06
clarkbjhesketh: we need to do index generation of higher level dirs01:07
clarkbwill have to query swift for listings and generate o nthe fly I think01:07
clarkbor maybe we can ask swift for an autogenerated index? unsure01:07
jheskethoh yeah, I forgot about that...01:07
jheskethis that a hard requirement before moving jobs across?01:07
clarkbjhesketh: I think jeblair wanted it ya01:07
clarkbas its a ui navigation thing01:08
jheskethyeah I gave it some thought earlier in the week... I haven't checked if swift had some magic index generator, but I wouldn't have thought it did01:08
*** xyang has quit IRC01:08
jheskethclarkb: the hard part is that due to a psuedo filesystem the top most directory will need to get the list for every object ever in our container01:08
jheskeththat's not somethign we want to do01:08
*** sharikapongubala has quit IRC01:09
jheskethbecause it'll be depth-first bailing early will just give us a partial list01:09
clarkbgood point01:09
clarkbsince swift doesn't do dirs hrm01:09
jheskethso we could only do it once you're a couple of dirs down01:09
*** dims_ has joined #openstack-infra01:09
jheskethI'm not entirely sure how useful it is to browse at the very root of the logs anyway01:09
jheskethplus we also need to consider how to join it with filesystem results01:09
jheskethor just fetch 1000-5000 objects at a time and if that doesn't get us the full breadth just add a note in the footer that it's truncated (so it'll probably truncate the root folder but start working once you go down a few levels)01:10
clarkbjhesketh: that seems very reasonable01:11
jheskethor do a fancy ajax keep fetching as you scroll thingy01:12
jheskethdoesn't help with ctrl+F though01:12
clarkbya I think ETOOMANYRECORDS is fine01:12
clarkbespecially at that level01:12
jheskethclarkb: hmm, swift might be able to do it for us anyway... there appears to be a delimiter option when querying the container list01:14
jheskethso I'll have a play and see if there are other ways01:14
*** Yanyanhu has joined #openstack-infra01:15
jheskethnot sure what swift does internally though so it might still be resource heavy01:15
*** dims__ has joined #openstack-infra01:15
*** dims__ has quit IRC01:16
*** thorst has joined #openstack-infra01:16
*** sharikapongubala has joined #openstack-infra01:17
*** thorst has quit IRC01:17
*** chen12 has joined #openstack-infra01:17
*** dims_ has quit IRC01:17
*** dims_ has joined #openstack-infra01:18
*** tongli has joined #openstack-infra01:18
*** sharikapongubala has quit IRC01:18
*** bpokorny has quit IRC01:19
*** bnemec has quit IRC01:19
*** alexsyip has quit IRC01:21
*** jyuso1 has quit IRC01:21
notmynameclarkb: jhesketh: what are you looking for?01:22
jheskethnotmyname: we have a psuedo filesystem for the logs we are storing in swift01:23
*** angdraug has quit IRC01:23
jheskethif we wanted to list the root "directory" contents can we do that without having to do a depth first list?01:23
notmynamejhesketh: if I understand correctly, yes that's possible.01:24
notmynamelet me type up an example01:24
jheskethnotmyname: shiny thanks!01:24
*** stevemar has joined #openstack-infra01:26
notmynamejhesketh: https://gist.github.com/notmyname/bcd35426f15e69a367fd01:26
notmynamejhesketh: that's using normal authenticated requests01:27
*** jasondotstar has joined #openstack-infra01:27
notmynamejhesketh: did I also see something about wanting to get auto-generated index listings?01:27
*** yushiro has joined #openstack-infra01:27
*** bnemec has joined #openstack-infra01:27
jheskethnotmyname: thanks for that, looks good.. Will that handle containers will huge amounts of objects? (ie I assume swift isn't doing a depth first search internally)01:28
jheskethnotmyname: yes, we want to list to contents of the container so that it is browsable01:29
notmynamedefine huge ;-)01:29
jheskethmillions?01:29
*** stevemar has quit IRC01:30
notmynameok, let me demo that01:30
jheskethheh, I believe you01:30
notmynamethere's a trick. hang on ;-)01:30
*** pal has joined #openstack-infra01:30
jheskethokay :-)01:30
*** sharikapongubala has joined #openstack-infra01:31
*** laughterwym_ has joined #openstack-infra01:32
*** laughterwym has quit IRC01:32
notmynamejhesketh: ok, this one has a couple of things going on01:34
*** jerryz has quit IRC01:34
notmynamejhesketh: first, I set the listing limit down to 5 (so I dont' have to add millions of objects)01:34
notmynamejhesketh: note in the headers that there are 12 objects in the container01:35
notmynamebut each page is only 5 items long01:35
notmynameso I use the "marker" query to get the next page01:35
notmynamenote also that the dir4 prefix does not exist in the first page of info01:35
notmynamebut, it does show up with the delimiter=/ query01:35
notmynamethus implying a depth-first search internally01:36
notmynamehowever, the good news is that the object name is indexed, so it's not a full table scan01:36
*** sharikapongubala has quit IRC01:36
jheskethnotmyname: did you have a link to it?01:37
notmynameto what?01:37
jheskethto what you were demoing01:37
notmynamelol, sorry01:38
notmynamehttps://gist.githubusercontent.com/notmyname/a37a853d61cfdcaa0b1c/raw/9fca5515b3c8d907af054bc2600494e20c0383a6/gistfile1.txt01:38
jheskethcheers01:38
notmynameI completely skipped over that step01:38
*** BrandonL08 has joined #openstack-infra01:39
notmynamein this one I created an additional dir5/o1 and dir6/o1 so that the pseudo-folder page would be full https://gist.github.com/notmyname/a611d115c56b81f2a18a01:39
*** sharikapongubala has joined #openstack-infra01:39
*** asselin has joined #openstack-infra01:39
jheskethnotmyname: doesn't that show that it isn't depth first?01:39
notmynameyes it does01:40
jheskethcool01:40
jheskeththanks for that :-)01:40
jheskethso the listing limit is set on teh server, is there a way to query for the limit to know if we need to do a second page?01:40
notmynameyup. https://gist.github.com/notmyname/f81af820156d271ffe9301:41
notmyname /info01:41
notmynameit's the max_container_listing_limit01:41
jheskethawesome, thanks heaps :-)01:41
notmynamejhesketh: but the "rule" is that you (a) look at the limit and (b) request the next page until you get one that is less than the limit (including empty)01:42
*** laughterwym_ has quit IRC01:42
notmynamejhesketh: ok, one last thing. the auto-listings01:42
*** dims__ has joined #openstack-infra01:42
*** sharikapongubala has quit IRC01:43
notmynamejhesketh: https://gist.github.com/notmyname/c891659c75251220375f01:44
*** dims_ has quit IRC01:44
*** mriedem1 has quit IRC01:44
notmynameso in that one, I first set the ACl to mark the container as public and also set the x-container-meta-web-listings header01:45
*** btully has quit IRC01:45
*** chen12 has quit IRC01:45
notmynamethen I requested with no auth creds (ie like a browser) the container, and I get back an html page that has the listings, including links to subdirs01:45
jheskethinteresting, that looks cool01:45
*** sharikapongubala has joined #openstack-infra01:46
jheskeththat's pretty much what we need... only downside is to figure out how to hook it into our on-disk listings01:46
jheskethclarkb: we could use the swift index if the directory doesn't exist on disk... but that means we'll never list swift folders from the root dir01:46
notmynamejhesketh: you can also set a css file for the listings and a default index page so that a request to foo/bar/ will give you eg foo/bar/index.html01:46
notmynamejhesketh: docs, such as they are, are at http://docs.openstack.org/developer/swift/middleware.html#staticweb01:46
notmynamejhesketh: and that functionality being enabled is detected in the /info request by looking for the staticweb key (see https://gist.github.com/notmyname/f81af820156d271ffe93)01:47
notmynamejhesketh: so in summary, seems that swift can do what you want out of the box, I think it's a pretty cool feature, and swift is awesome ;-)01:48
jheskethright, that's quite useful01:48
jheskethheh01:48
jheskethnotmyname: do you know if rackspace are using that middleware?01:48
notmynamejhesketh: yes, and exposed through the cdn too (I helped implement that a long time ago). I'm not sure about HP's cluster. I haven't played with that feature there yet01:49
jheskethokay01:49
*** gildub has joined #openstack-infra01:49
jheskeththe tricky part is that we don't want to statically serve up the logs, we want to use os-loganalyze to mark them up01:49
notmynamejhesketh: actually, at swiftstack we use this feature, from RAX, as part of our 3rd party CI that runs01:49
clarkbits only exposed via cdb iirc01:49
clarkbwhich is the issue01:49
clarkbit cant do it out of the box01:50
notmynamejhesketh: https://8b86aea46fb38e6450f2-0e5f4c086da474abc1df58826577db2f.ssl.cf1.rackcdn.com/134347/2029/01:50
clarkbbecause of the severity stuff and the cdn noise01:50
notmynameclarkb: what is cdb? are you referring to hp?01:50
clarkb*cdn01:50
clarkbtypo01:51
*** sharikapongubala has quit IRC01:51
notmynameclarkb: ah. the issue is that rackspace doesn't allow public access *except* via the cdn01:51
clarkbyes01:51
notmynamenothing to do with this feature, though. their own auth choice01:51
clarkbsure01:51
clarkbjust makes for bad user experience01:51
notmynamewhen porting across different swifts, yes. when that decision was made, there's weren't differnet swifts (or even swift, actually)01:52
clarkbwe dont need cdn everything goes through dfw hosted node anyways01:52
*** sharikapongubala has joined #openstack-infra01:52
clarkband cdn adds dns and container management overhead01:53
*** Sukhdev has quit IRC01:53
jheskethnevertheless we have enough to query swift and make index lists01:53
jheskeththanks notmyname :-)01:53
notmynamejhesketh: happy to help :-)01:53
jheskethclarkb: what is your opinion on joining the list with anything that might still be on disk?01:53
clarkbjhesketh that seems reasonable01:53
*** sharikapongubala has quit IRC01:54
clarkbwe are capped at 64k per dir on disk by ext401:54
jheskethclarkb: might make the apache rules more complicated...01:54
jheskethactually, it might make them simpler01:54
notmynameif you end up wanting to use auto-listings but on auth'd requests and run into trouble, let me know and I'll tell you how to get around it01:54
jhesketheverything just goes to os-loganalyze who knows how to serve off disk, create indexes or passthrough etc01:54
*** dims_ has joined #openstack-infra01:54
jheskethnotmyname: I think auto-listing won't quite work for us, but will do thanks01:55
* notmyname gets dinner01:55
clarkbthe other issue with auto listing is we were told half million object per container01:55
*** unicell has quit IRC01:56
clarkbthats like 4 months.01:56
*** dims__ has quit IRC01:56
*** sharikapongubala has joined #openstack-infra01:56
*** stevemar has joined #openstack-infra01:57
clarkbwhether or not that is actualy an issue I dunno havent tested it :)01:57
*** sharikapongubala has quit IRC01:58
clarkboh ya and if you cdn its new name per container iirc01:59
clarkbthat was why that was trouble01:59
clarkbso even if we use many containers we need smart proxy thing02:00
*** funzo has joined #openstack-infra02:01
*** sharikapongubala has joined #openstack-infra02:03
*** sharikapongubala has quit IRC02:04
*** funzo has quit IRC02:05
clarkbnotmyname if we wanted to do auto indexing without public access how does that work?02:08
EmilienMclarkb: hey, good evening - have you already seen something like this ? http://logs.openstack.org/70/189870/4/check/gate-puppet-ironic-puppet-beaker-rspec-upgrade-dsvm-trusty/b5c7b08/console.html#_2015-08-06_20_10_16_20902:08
clarkbmight be a good way to test performance after a few months of data population02:08
*** swat30 has quit IRC02:08
clarkbyou might needmkdir -p02:09
tongliguys, I have created new project repository,  how and who can add members to the core team of the project?02:09
tongliso that patch set can be reviewed +1, +2 etc.02:09
*** sharikapongubala has joined #openstack-infra02:09
EmilienMclarkb: neverming, I found it I guess02:09
EmilienMnevermind*02:09
openstackgerritEmilien Macchi proposed openstack-infra/project-config: jenkins/copy_puppet_logs script: use mkdir -p  https://review.openstack.org/21017602:11
EmilienMmaybe can I have a review on ^02:11
*** zul has joined #openstack-infra02:11
*** sharikapongubala has quit IRC02:12
*** swat30 has joined #openstack-infra02:12
*** tongli has quit IRC02:16
*** baoli has joined #openstack-infra02:22
*** baoli has quit IRC02:22
*** ivar-lazzaro has quit IRC02:22
*** achanda has joined #openstack-infra02:24
*** baoli has joined #openstack-infra02:24
*** tsg has quit IRC02:25
*** otter768 has joined #openstack-infra02:25
*** sharikapongubala has joined #openstack-infra02:28
*** yushiro has quit IRC02:28
*** baoli has quit IRC02:29
*** sharikapongubala has quit IRC02:29
*** markvoelker has quit IRC02:30
notmynameclarkb: yes. you can do that02:30
notmynameclarkb: basically, you set it all up the same, but you have to send an additional header to get it to trigger. x-web-mode: true02:30
*** otter768 has quit IRC02:30
*** pal_ has joined #openstack-infra02:30
notmynameclarkb: normally, it skips over the functionality if there's an auth header02:30
*** pal has quit IRC02:31
*** yushiro has joined #openstack-infra02:32
*** sharikapongubala has joined #openstack-infra02:39
*** pal_ has quit IRC02:41
*** sharikapongubala has quit IRC02:42
EmilienMclarkb: if you can approve https://review.openstack.org/#/c/210097 - thanks a lot02:43
*** crc32 has joined #openstack-infra02:44
*** crc32 has quit IRC02:49
*** crc32 has joined #openstack-infra02:53
*** spzala has quit IRC02:55
*** MarkAtwood has joined #openstack-infra03:00
*** yamamoto has joined #openstack-infra03:00
*** rlandy has joined #openstack-infra03:01
*** funzo has joined #openstack-infra03:01
*** funzo has quit IRC03:06
*** baoli has joined #openstack-infra03:12
*** baoli has quit IRC03:12
anteayaEmilienM: sorry I tried to look at the patch but I see ianw already self approved03:17
openstackgerritMerged openstack-infra/project-config: scripts/copy_puppet_logs: Create LOG_DIR  https://review.openstack.org/21009703:18
*** tvanderwiel has joined #openstack-infra03:21
*** larainema has quit IRC03:23
*** larainema has joined #openstack-infra03:23
*** sharikapongubala has joined #openstack-infra03:24
*** salv-orlando has joined #openstack-infra03:24
*** rlandy has quit IRC03:29
*** rlandy has joined #openstack-infra03:29
*** markvoelker has joined #openstack-infra03:30
*** ajmiller_ has joined #openstack-infra03:31
*** salv-orlando has quit IRC03:33
*** SumitNaiksatam has joined #openstack-infra03:33
*** Guest57802 is now known as jgriffith03:34
*** markvoelker has quit IRC03:35
*** tiswanso has quit IRC03:40
*** sharikapongubala has quit IRC03:40
*** pal has joined #openstack-infra03:50
*** boris-42 has quit IRC03:50
*** skylerberg has quit IRC03:50
*** achanda has quit IRC03:56
*** BrandonL08 has quit IRC03:56
*** rlandy has quit IRC03:57
*** tlian has quit IRC04:00
*** MarkAtwood has quit IRC04:01
*** sharikapongubala has joined #openstack-infra04:01
*** dims_ has quit IRC04:04
openstackgerritYAMAMOTO Takashi proposed openstack-infra/project-config: midonet: Add an experimental job for ML2 mech driver  https://review.openstack.org/21019204:05
*** sharikapongubala has quit IRC04:05
*** jasondotstar has quit IRC04:09
*** gyee has quit IRC04:13
*** baoli has joined #openstack-infra04:13
*** funzo has joined #openstack-infra04:17
*** baoli has quit IRC04:18
*** sharikapongubala has joined #openstack-infra04:21
openstackgerritMerged openstack-infra/project-config: Ensure 'libffi-devel' is installed so that python-cffi can build  https://review.openstack.org/21005804:21
openstackgerritMerged openstack-infra/project-config: Fix coverage report links on logs.o.o  https://review.openstack.org/21011404:21
openstackgerritMerged openstack-infra/project-config: Enable pushMerge commits for askbot-theme repo  https://review.openstack.org/21006704:21
*** funzo has quit IRC04:22
*** asselin has quit IRC04:24
*** sharikapongubala has quit IRC04:24
*** ajmiller_ has quit IRC04:25
*** otter768 has joined #openstack-infra04:26
*** ildikov has quit IRC04:29
*** otter768 has quit IRC04:31
*** Sukhdev_ has joined #openstack-infra04:34
*** salv-orlando has joined #openstack-infra04:34
*** kiran-r has joined #openstack-infra04:34
*** darrenc is now known as darrenc_afk04:35
*** sharikapongubala has joined #openstack-infra04:36
*** jswarren has quit IRC04:38
Nakatolifeless: Re tox.  Nah, I think I've got everything in reviews for now.04:38
*** vlaza has joined #openstack-infra04:38
*** salv-orlando has quit IRC04:39
*** sharikapongubala has quit IRC04:40
*** sharikapongubala has joined #openstack-infra04:40
*** deepakcs has joined #openstack-infra04:41
*** harlowja_at_home has joined #openstack-infra04:42
*** megm has quit IRC04:45
*** unicell has joined #openstack-infra04:49
*** harlowja_at_home has quit IRC04:49
*** tvanderwiel has quit IRC04:49
*** sharikapongubala has quit IRC04:50
openstackgerritMerged openstack/diskimage-builder: Set and export DIB_RELEASE for centos7  https://review.openstack.org/20525204:54
openstackgerritMerged openstack/diskimage-builder: Handle modern sfdisk and correctly align image partition  https://review.openstack.org/20832004:55
*** mrmartin has joined #openstack-infra04:55
*** harlowja_at_home has joined #openstack-infra04:57
*** darrenc_afk is now known as darrenc05:01
*** _kiran_ has joined #openstack-infra05:06
*** kiran-r has quit IRC05:07
openstackgerritmin wang proposed openstack-infra/project-config: Set octavia gate for  neutron-lbaasv2 tempest test  https://review.openstack.org/21014105:12
*** ildikov has joined #openstack-infra05:12
*** sergmelikyan has quit IRC05:15
*** unicell has quit IRC05:15
*** _kiran_ has quit IRC05:16
*** jasondotstar has joined #openstack-infra05:16
*** sharikapongubala has joined #openstack-infra05:16
*** serg_melikyan has joined #openstack-infra05:18
*** stevemar has quit IRC05:18
*** stevemar has joined #openstack-infra05:18
*** unicell has joined #openstack-infra05:19
*** fedexo has quit IRC05:19
*** sharikapongubala has quit IRC05:20
*** jasondotstar has quit IRC05:21
*** crc32 has quit IRC05:21
*** serg_melikyan has quit IRC05:22
*** baoli has joined #openstack-infra05:22
*** megm has joined #openstack-infra05:24
*** achanda has joined #openstack-infra05:25
*** baoli has quit IRC05:27
*** sdake has joined #openstack-infra05:28
*** jamespage_ has joined #openstack-infra05:29
*** markvoelker has joined #openstack-infra05:31
*** camunoz has quit IRC05:33
*** markvoelker has quit IRC05:36
*** salv-orlando has joined #openstack-infra05:40
*** yfried is now known as yfried|afk05:41
*** crc32 has joined #openstack-infra05:42
*** harlowja_at_home has quit IRC05:44
*** salv-orlando has quit IRC05:46
*** stevemar has quit IRC05:47
*** stevemar has joined #openstack-infra05:49
*** ihrachyshka has joined #openstack-infra05:51
*** yfried|afk is now known as yfried06:01
*** melwitt has quit IRC06:04
*** flepied has quit IRC06:04
*** crc32 has quit IRC06:04
openstackgerritOpenStack Proposal Bot proposed openstack/requirements: Updated from generate-constraints  https://review.openstack.org/20882006:05
*** zul has quit IRC06:06
*** k4n0 has joined #openstack-infra06:11
*** liam__ has joined #openstack-infra06:13
*** liam__ has quit IRC06:13
*** yamamoto has quit IRC06:18
*** sergmelikyan has joined #openstack-infra06:18
*** yamamoto has joined #openstack-infra06:19
*** sergmelikyan has quit IRC06:23
*** stevemar has quit IRC06:25
*** nadya has joined #openstack-infra06:27
*** otter768 has joined #openstack-infra06:27
*** flepied has joined #openstack-infra06:31
*** otter768 has quit IRC06:32
*** Sukhdev_ has quit IRC06:34
*** yfried is now known as yfried|afk06:35
*** akshai has quit IRC06:36
*** abregman has joined #openstack-infra06:39
*** HeOS has joined #openstack-infra06:40
*** jyuso1 has joined #openstack-infra06:46
*** salv-orlando has joined #openstack-infra06:51
*** yfried|afk is now known as yfried06:55
*** salv-orlando has quit IRC06:56
*** dtantsur|afk is now known as dtantsur06:58
*** sdake has quit IRC06:58
*** mrunge has joined #openstack-infra06:58
*** jamespage_ has quit IRC06:58
*** jasondotstar has joined #openstack-infra07:05
*** yfried is now known as yfried|afk07:05
*** sabeen1 has quit IRC07:07
*** yfried|afk is now known as yfried07:08
*** jasondotstar has quit IRC07:09
*** yushiro has quit IRC07:10
*** salv-orlando has joined #openstack-infra07:13
*** zeih has joined #openstack-infra07:14
*** achanda has quit IRC07:15
*** kiran-r has joined #openstack-infra07:17
*** yamahata has quit IRC07:17
*** sergmelikyan has joined #openstack-infra07:19
Ngmordred: https://what.thedailywtf.com/t/code-review-malediction/4809007:19
*** yfried is now known as yfried|afk07:20
*** devvesa has joined #openstack-infra07:23
*** yushiro has joined #openstack-infra07:23
*** sergmelikyan has quit IRC07:24
*** ParsectiX has joined #openstack-infra07:25
*** yfried|afk is now known as yfried07:25
*** yamamoto has quit IRC07:27
*** dingyichen has quit IRC07:28
*** abregman is now known as abregman|afk07:29
*** zeih has quit IRC07:29
*** markvoelker has joined #openstack-infra07:32
*** dingyichen has joined #openstack-infra07:33
*** ifarkas has joined #openstack-infra07:34
*** baoli has joined #openstack-infra07:34
*** yfried is now known as yfried|afk07:36
*** markvoelker has quit IRC07:37
*** btully has joined #openstack-infra07:38
*** baoli has quit IRC07:39
*** witek has joined #openstack-infra07:41
*** btully has quit IRC07:42
openstackgerrityolanda.robla proposed openstack-infra/project-config: Add openstack-infra/puppet-infra-cookiecutter project  https://review.openstack.org/20710907:45
*** pal_ has joined #openstack-infra07:46
*** HeOS has quit IRC07:46
*** pal has quit IRC07:47
*** jlanoux has joined #openstack-infra07:51
*** zeih has joined #openstack-infra07:51
*** jcoufal has joined #openstack-infra07:52
*** macjack has left #openstack-infra07:54
*** yamamoto has joined #openstack-infra07:55
*** e0ne has joined #openstack-infra07:55
*** stevemar has joined #openstack-infra07:56
*** yfried|afk is now known as yfried07:56
*** stevemar has quit IRC07:58
openstackgerrityolanda.robla proposed openstack-infra/project-config: Add openstack-infra/puppet-infra-cookiecutter project  https://review.openstack.org/20710908:00
*** chlong has quit IRC08:04
*** dingyichen has quit IRC08:05
*** jistr has joined #openstack-infra08:06
*** arxcruz has joined #openstack-infra08:06
*** e0ne has quit IRC08:06
openstackgerrityolanda.robla proposed openstack-infra/puppet-gerrit: Move local replication directory and repack to module  https://review.openstack.org/20995408:06
*** kushal has joined #openstack-infra08:06
*** yfried is now known as yfried|afk08:06
*** kushal has quit IRC08:07
*** kushal has joined #openstack-infra08:07
*** alexpilotti has joined #openstack-infra08:07
*** gildub has quit IRC08:08
*** afazekas_ has joined #openstack-infra08:17
*** kushal has quit IRC08:19
*** scheuran has joined #openstack-infra08:22
*** atuvenie has joined #openstack-infra08:25
*** kushal has joined #openstack-infra08:26
*** otter768 has joined #openstack-infra08:28
*** atuvenie has quit IRC08:29
*** teran has quit IRC08:29
openstackgerritMateusz Matuszkowiak proposed openstack-infra/project-config: Added new SF repository for Fuel Trove plugin integration  https://review.openstack.org/21000708:29
openstackgerritMateusz Matuszkowiak proposed openstack-infra/project-config: Added new SF repository for Fuel NSXV plugin integration  https://review.openstack.org/20953508:30
*** Somay has joined #openstack-infra08:30
openstackgerrityolanda.robla proposed openstack-infra/puppet-gerrit: Move local replication directory and repack to module  https://review.openstack.org/20995408:31
openstackgerritMateusz Matuszkowiak proposed openstack-infra/project-config: Added new SF repository for Fuel Ironic plugin integration  https://review.openstack.org/20911208:31
openstackgerritMateusz Matuszkowiak proposed openstack-infra/project-config: Added new SF repository for Fuel NSXV plugin integration  https://review.openstack.org/20953508:31
openstackgerritMateusz Matuszkowiak proposed openstack-infra/project-config: Added new SF repository for Fuel Ironic plugin integration  https://review.openstack.org/20911208:31
*** otter768 has quit IRC08:33
*** pelix has joined #openstack-infra08:35
*** HeOS has joined #openstack-infra08:36
*** flepied has quit IRC08:37
*** teran has joined #openstack-infra08:42
*** yamamoto has quit IRC08:44
*** markus_z has joined #openstack-infra08:44
openstackgerrityolanda.robla proposed openstack-infra/project-config: Add openstack-infra/puppet-infra-cookiecutter project  https://review.openstack.org/20710908:44
openstackgerrityolanda.robla proposed openstack-infra/project-config: Add openstack-infra/puppet-infra-cookiecutter project  https://review.openstack.org/20710908:45
odyssey4memorning everyone - we have a rather odd situation where some of our reviews appear to be ignored by zuul entirely, we can rebase, change something, change the workflow, etc and it never shows up in the check queue and never merges08:52
odyssey4meI suspect that one of our rules are to blame as this is only happening to our doc changes. An example is https://review.openstack.org/20770008:52
odyssey4meif anyone's around, perhaps I could get some help tracking the issue down?08:53
*** ihrachyshka has quit IRC08:54
*** flepied has joined #openstack-infra08:54
odyssey4menvm, I think I found it08:57
*** monester has joined #openstack-infra08:58
*** jasondotstar has joined #openstack-infra09:00
openstackgerritMarton Kiss proposed openstack-infra/askbot-theme: css changes for language nav and dropdown menu  https://review.openstack.org/21025809:01
*** yushiro has quit IRC09:03
*** Somay has quit IRC09:04
mescanefhi! regarding gerrit ACLS, to be able to delete a "remote" branch what would be required. i guess its about access "refs/heads/*"09:06
ekarlsoWhat's the appropriate way to alter tempest.conf if we need to in the gate ?09:06
ekarlsos/gate/devstack09:06
*** zeih has quit IRC09:11
*** zeih has joined #openstack-infra09:12
*** e0ne has joined #openstack-infra09:12
*** dtantsur is now known as dtantsur|brb09:13
openstackgerritJesse Pretorius proposed openstack-infra/project-config: Rename -check to conform to new style  https://review.openstack.org/21026509:16
openstackgerritJesse Pretorius proposed openstack-infra/project-config: Rename os-ansible-deployment -check to conform to new style  https://review.openstack.org/21026509:16
*** sergmelikyan has joined #openstack-infra09:20
*** yfried|afk is now known as yfried09:24
*** sergmelikyan has quit IRC09:24
*** btully has joined #openstack-infra09:25
*** jasondotstar has quit IRC09:29
*** btully has quit IRC09:30
*** pal_ has quit IRC09:30
*** teran has quit IRC09:33
*** markvoelker has joined #openstack-infra09:33
*** markvoelker has quit IRC09:37
*** monester has quit IRC09:40
*** jasondotstar has joined #openstack-infra09:42
*** Yanyanhu has quit IRC09:45
*** Yanyanhu has joined #openstack-infra09:45
*** Yanyanhu has quit IRC09:50
*** monester has joined #openstack-infra09:51
openstackgerritMarian Horban proposed openstack-infra/devstack-gate: Fixed experimental job for Nova API services under Apache2  https://review.openstack.org/21028209:51
openstackgerritJesse Pretorius proposed openstack-infra/project-config: Rename os-ansible-deployment gate checks to conform to new style  https://review.openstack.org/21026509:54
*** dims_ has joined #openstack-infra09:54
*** stevemar has joined #openstack-infra09:57
*** stevemar has quit IRC09:58
*** marzif has joined #openstack-infra09:59
tsufievhello guys! Could anyone advice me what's wrong here https://review.openstack.org/#/c/209108/ with grenade job/Tempest failure?10:02
tsufievseems totally unrelated to the patch contents to me10:02
tsufievor just recheck until it agrees that the patch is fine :)?10:03
*** abregman|afk has quit IRC10:03
*** pc_m has joined #openstack-infra10:08
*** mpaolino has joined #openstack-infra10:10
*** yfried is now known as yfried|afk10:11
*** mestery_ has joined #openstack-infra10:11
*** jasondotstar has quit IRC10:13
*** mestery has quit IRC10:15
*** masayukig has quit IRC10:15
*** dansmith has quit IRC10:15
*** Shrews has quit IRC10:15
*** timrc has quit IRC10:16
*** e0ne has quit IRC10:16
*** loquacities has quit IRC10:16
*** teran has joined #openstack-infra10:17
*** e0ne has joined #openstack-infra10:17
*** dansmith has joined #openstack-infra10:17
*** dansmith is now known as Guest4554110:17
openstackgerritMerged openstack-infra/jenkins-job-builder: Adds onlyIfSuccessful to ArtifactArchiver publisher  https://review.openstack.org/20373010:18
openstackgerritMerged openstack-infra/jenkins-job-builder: Support for externaljob project-type for monitoring external jobs  https://review.openstack.org/20404710:18
*** masayukig has joined #openstack-infra10:18
*** nikhil_k has quit IRC10:18
*** dosaboy has quit IRC10:18
*** nikhil_k has joined #openstack-infra10:18
*** timrc has joined #openstack-infra10:19
*** dosaboy has joined #openstack-infra10:19
*** jistr has quit IRC10:20
*** kozhukalov_ has quit IRC10:20
*** ruagair has quit IRC10:20
*** bradjones has quit IRC10:20
*** kozhukalov has joined #openstack-infra10:20
*** ruagair has joined #openstack-infra10:20
*** jistr has joined #openstack-infra10:20
*** jeblair has quit IRC10:21
*** teran has quit IRC10:21
*** teran has joined #openstack-infra10:22
*** jeblair has joined #openstack-infra10:22
*** Shrews has joined #openstack-infra10:22
*** loquacities has joined #openstack-infra10:23
*** leifmadsen has quit IRC10:24
*** zeih has quit IRC10:25
*** yushiro has joined #openstack-infra10:27
*** yushiro has quit IRC10:28
*** Shrews has quit IRC10:28
*** nigelb has quit IRC10:28
*** nigelb has joined #openstack-infra10:28
*** bdemers_ has joined #openstack-infra10:28
*** sdake has joined #openstack-infra10:28
*** otter768 has joined #openstack-infra10:29
*** yfried|afk is now known as yfried10:29
*** bradjones_ has joined #openstack-infra10:30
*** mjturek1 has quit IRC10:30
*** dtantsur|brb is now known as dtantsur10:30
*** bradjones_ is now known as bradjones10:30
*** leifmadsen has joined #openstack-infra10:30
*** mpaolino has quit IRC10:31
*** bdemers has quit IRC10:31
*** bdemers_ is now known as bdemers10:31
*** mpaolino has joined #openstack-infra10:31
*** angerson has quit IRC10:32
*** tsbot_ has quit IRC10:33
*** angerson has joined #openstack-infra10:34
*** otter768 has quit IRC10:34
*** baoli has joined #openstack-infra10:35
*** Shrews has joined #openstack-infra10:35
*** baoli has quit IRC10:39
*** dingyichen has joined #openstack-infra10:41
*** dingyichen has quit IRC10:42
*** Shrews has quit IRC10:42
*** k4n0 has quit IRC10:43
*** k4n0 has joined #openstack-infra10:43
*** cdent has joined #openstack-infra10:44
*** leifmadsen has quit IRC10:45
*** bradjones has quit IRC10:45
*** flepied has quit IRC10:45
*** pelix has quit IRC10:45
*** kiran-r has quit IRC10:45
*** larainema has quit IRC10:45
*** harlowja has quit IRC10:45
*** mtreinish has quit IRC10:45
*** krtaylor has quit IRC10:45
*** bcourt has quit IRC10:45
*** dtantsur has quit IRC10:45
*** openstackgerrit has quit IRC10:45
*** amotoki has quit IRC10:45
*** pahuang has quit IRC10:45
*** jamespage has quit IRC10:45
*** HenryG has quit IRC10:45
*** dteselkin has quit IRC10:45
*** irdkehn has quit IRC10:45
*** odyssey4me has quit IRC10:45
*** Apsu has quit IRC10:45
*** filler has quit IRC10:45
*** antonym has quit IRC10:45
*** sdague has quit IRC10:45
*** jkt has quit IRC10:45
*** Gareth has quit IRC10:45
*** niedbalski_ has quit IRC10:45
*** cschwede has quit IRC10:45
*** raginbajin has quit IRC10:45
*** dhellmann has quit IRC10:45
*** taron1 has quit IRC10:45
*** abramley has quit IRC10:45
*** vmbrasseur has quit IRC10:45
*** trey has quit IRC10:45
*** cebruns has quit IRC10:45
*** d0ugal has quit IRC10:45
*** Sam-I-Am has quit IRC10:45
*** sc` has quit IRC10:45
*** pothole has quit IRC10:45
*** therve has quit IRC10:45
*** alivigni has joined #openstack-infra10:46
*** cpallares has quit IRC10:46
*** tsbot_ has joined #openstack-infra10:46
*** cpallares has joined #openstack-infra10:49
*** mjturek1 has joined #openstack-infra10:49
*** leifmadsen has joined #openstack-infra10:49
*** bradjones has joined #openstack-infra10:49
*** flepied has joined #openstack-infra10:49
*** pelix has joined #openstack-infra10:49
*** kiran-r has joined #openstack-infra10:49
*** larainema has joined #openstack-infra10:49
*** vmbrasseur has joined #openstack-infra10:49
*** harlowja has joined #openstack-infra10:49
*** mtreinish has joined #openstack-infra10:49
*** krtaylor has joined #openstack-infra10:49
*** bcourt has joined #openstack-infra10:49
*** dtantsur has joined #openstack-infra10:49
*** openstackgerrit has joined #openstack-infra10:49
*** amotoki has joined #openstack-infra10:49
*** pahuang has joined #openstack-infra10:49
*** jamespage has joined #openstack-infra10:49
*** HenryG has joined #openstack-infra10:49
*** dteselkin has joined #openstack-infra10:49
*** irdkehn has joined #openstack-infra10:49
*** odyssey4me has joined #openstack-infra10:49
*** Apsu has joined #openstack-infra10:49
*** filler has joined #openstack-infra10:49
*** antonym has joined #openstack-infra10:49
*** sdague has joined #openstack-infra10:49
*** jkt has joined #openstack-infra10:49
*** Gareth has joined #openstack-infra10:49
*** niedbalski_ has joined #openstack-infra10:49
*** cschwede has joined #openstack-infra10:49
*** raginbajin has joined #openstack-infra10:49
*** dhellmann has joined #openstack-infra10:49
*** taron1 has joined #openstack-infra10:49
*** Sam-I-Am has joined #openstack-infra10:49
*** abramley has joined #openstack-infra10:49
*** trey has joined #openstack-infra10:49
*** cebruns has joined #openstack-infra10:49
*** d0ugal has joined #openstack-infra10:49
*** sc` has joined #openstack-infra10:49
*** pothole has joined #openstack-infra10:49
*** therve has joined #openstack-infra10:49
*** bradjones has quit IRC10:49
*** leifmadsen has quit IRC10:49
*** leifmadsen has joined #openstack-infra10:49
*** mjturek1 has quit IRC10:49
*** mjturek1 has joined #openstack-infra10:49
*** bradjones has joined #openstack-infra10:49
*** bradjones has quit IRC10:49
*** bradjones has joined #openstack-infra10:49
*** sergmelikyan has joined #openstack-infra10:51
*** Shrews has joined #openstack-infra10:51
*** ihrachyshka has joined #openstack-infra10:51
*** zeih has joined #openstack-infra10:53
*** armax has quit IRC10:54
*** armax has joined #openstack-infra10:55
*** sergmelikyan has quit IRC10:55
*** irdkehn has quit IRC10:57
*** vmbrasseur has quit IRC10:58
*** mpaolino has quit IRC10:58
openstackgerritMarton Kiss proposed openstack-infra/askbot-theme: Merge changes from feature/development to master branch  https://review.openstack.org/21032710:59
*** dan has quit IRC11:00
*** dan has joined #openstack-infra11:03
*** vmbrasseur has joined #openstack-infra11:03
*** irdkehn has joined #openstack-infra11:04
*** yfried is now known as yfried|afk11:09
*** jaypipes is now known as leakypipes11:11
*** yolanda has quit IRC11:19
openstackgerritKamil Choroba proposed openstack-infra/project-config: add gerrit groups for monasca-log  https://review.openstack.org/20843011:20
*** yolanda has joined #openstack-infra11:20
*** k4n0 has quit IRC11:23
*** baoli has joined #openstack-infra11:24
*** baoli has quit IRC11:24
*** baoli has joined #openstack-infra11:26
*** baoli has quit IRC11:26
*** baoli has joined #openstack-infra11:27
*** yfried|afk is now known as yfried11:29
*** sergmelikyan has joined #openstack-infra11:31
*** vlaza has quit IRC11:33
*** markvoelker has joined #openstack-infra11:34
*** gordc has joined #openstack-infra11:35
*** sergmelikyan has quit IRC11:35
*** e0ne has quit IRC11:36
*** e0ne has joined #openstack-infra11:37
*** markvoelker has quit IRC11:39
*** thorst has joined #openstack-infra11:40
*** jcoufal has quit IRC11:40
openstackgerritMarton Kiss proposed openstack-infra/askbot-theme: Merge remote-tracking branch 'origin/feature/development' into merge-branch  https://review.openstack.org/21034411:41
openstackgerritMarton Kiss proposed openstack-infra/askbot-theme: Merge remote-tracking branch 'origin/feature/development' into merge-branch  https://review.openstack.org/21035111:46
*** kgiusti has joined #openstack-infra11:49
*** dprince has joined #openstack-infra11:49
*** yfried is now known as yfried|afk11:49
*** yfried|afk is now known as yfried11:50
*** kushal has quit IRC11:53
*** stevemar has joined #openstack-infra11:57
openstackgerritIvan Kolodyazhny proposed openstack-infra/project-config: Add job to test Add Cinder API with Apache  https://review.openstack.org/20849812:00
*** stevemar has quit IRC12:01
*** yfried is now known as yfried|afk12:02
*** mquin has quit IRC12:02
*** yfried|afk is now known as yfried12:03
*** mquin has joined #openstack-infra12:05
*** moravec has quit IRC12:07
openstackgerritMarton Kiss proposed openstack-infra/askbot-theme: Merge remote-tracking branch 'origin/feature/development'  https://review.openstack.org/21036012:08
openstackgerritMerged openstack-infra/project-config: add gerrit groups for monasca-log  https://review.openstack.org/20843012:09
*** moravec has joined #openstack-infra12:09
*** yfried is now known as yfried|afk12:13
openstackgerritJiri Stransky proposed openstack-infra/tripleo-ci: Pin puppet-cinder to avoid lock_path patch  https://review.openstack.org/21036212:13
*** deepakcs has quit IRC12:15
*** cburroughs has joined #openstack-infra12:15
*** sdake_ has joined #openstack-infra12:16
*** sdake_ has quit IRC12:16
*** sdake_ has joined #openstack-infra12:16
*** chlong has joined #openstack-infra12:17
*** AJaeger has joined #openstack-infra12:17
*** sdake__ has joined #openstack-infra12:17
*** jcoufal has joined #openstack-infra12:18
*** sdake has quit IRC12:18
*** funzo has joined #openstack-infra12:18
*** abregman has joined #openstack-infra12:19
*** ldnunes has joined #openstack-infra12:21
*** sdake_ has quit IRC12:21
*** lxsli is now known as lexloofah12:22
*** spzala has joined #openstack-infra12:22
*** abregman is now known as abregman|afk12:23
*** funzo has quit IRC12:23
*** radez is now known as radez_g0n312:23
AJaegerfungi, once you've had your coffee, could you check why https://review.openstack.org/207700 is beiing ignored? Other changes for that repo seem to run fine, but even a recheck did not help at all. See above for odyssey4me's request as well.12:25
EmilienMgood morning infra12:26
odyssey4methanks AJaeger it is weird that it (and any other document changes) are being ignored12:26
AJaegerodyssey4me: any docu changes? Let me check something...12:27
odyssey4meAJaeger do you think it may have something to do with the regex for the skip? or perhaps something to do with a change in the way skip is implemented?12:27
*** yfried|afk is now known as yfried12:28
AJaegerodyssey4me: see http://git.openstack.org/cgit/openstack-infra/project-config/tree/zuul/layout.yaml#n159312:28
AJaegersomething strange is happening here for sure...12:28
AJaegerAh, might be that this skips *all* your tests - and then there's not a job to run.12:28
odyssey4meAJaeger yeah, we have a regex for skipping the build checks when it's a document related review so that docs don't have to go through the lint or build checks12:29
*** laughterwym has joined #openstack-infra12:29
*** scheuran has quit IRC12:29
AJaegerodyssey4me: I think - but need clarkb, jeblair, or fungi to confirm - that this leads to a situation where the change has *no* job to run for it.12:29
*** markvoelker has joined #openstack-infra12:29
AJaegerThe fix might be to just add a noop test for it, so that you have a single test that zuul can give a +1 on.12:29
*** otter768 has joined #openstack-infra12:30
AJaegerso, adding " - name: noop-jobs" to the templates - together with a comment why this is needed - is my best guess on fixing it.12:30
AJaegerbut I'd like to hear what others think that know zuul better than me.12:31
*** sergmelikyan has joined #openstack-infra12:31
odyssey4meAJaeger that makes sense - this used to work, but I think the underlying changes in -infra have closed a loophole which we were obviously using12:32
*** dims_ has quit IRC12:33
*** dims_ has joined #openstack-infra12:34
*** otter768 has quit IRC12:35
odyssey4meAJaeger so you mean add ' - name: noop-jobs' to http://git.openstack.org/cgit/openstack-infra/project-config/tree/zuul/layout.yaml#n7544 ?12:35
*** amotoki has quit IRC12:35
AJaegerodyssey4me: yes - together with a comment stating that the other jobs are skipped...12:36
*** sergmelikyan has quit IRC12:36
*** afazekas_ has quit IRC12:36
odyssey4meok, let me put in a review for that - or should I add it to the existing review?12:36
AJaegerodyssey4me: might also be some kind of bug - that's why I want jeblair, clarkb, or fungi to look at this.12:36
odyssey4meok, I'll wait for them to come online before doing anything12:37
AJaegerodyssey4me: feel free to send the change so that we can review it already...12:37
odyssey4meAJaeger part of the same review ok?12:38
*** tongli has joined #openstack-infra12:38
*** bapalm has joined #openstack-infra12:39
tongli@AJaeger, good morning,12:39
tongliafter the new project created, what do I need to do to add +2 viewers?12:40
tongliwell +1 and +2 viewers actually.12:40
AJaegerodyssey4me: make a new one12:40
AJaegerodyssey4me: the rename is just cosmetics AFAIU12:41
StevenKAJaeger: Thanks for the review!12:41
AJaegertongli: You need to have one person added to the ACL group  and that person than can add further folks.12:41
AJaegerThose are the core reviewers12:41
AJaegerFor +1: No need to add anyone, reviewing is open for everybody12:41
AJaegerStevenK: You're welcome, I liked the presentation...12:42
tongli@Ajaeger, right, so who should I ask to add myself to the ACL group, I created the new project.12:42
AJaegertongli: ask here for an infra root - best wait another hour12:42
* AJaeger is not an infra root12:42
StevenKAJaeger: Makes me feel better about giving it now that someone who knows the material doesn't start with "So, um ..." :-)12:42
tonglior, this patch set does it? https://review.openstack.org/#/c/210175/12:43
AJaegertongli: or leave a comment with all details (project and your name/email) - some infra roots normally read the backscroll and will answer12:43
AJaegerStevenK: ;)12:43
tongli@AJaeger, cool. thanks. I thought I had to do that patch set.12:43
AJaegertongli: The ACLs are created empty once the project-config change is in12:44
openstackgerritMarton Kiss proposed openstack-infra/askbot-theme: Merge remote-tracking branch 'origin/feature/development' into merge-branch  https://review.openstack.org/21037312:44
tongli@AJaeger, excellent, you are very helpful as always, thanks so much.12:44
markus_zdprince: Are you around?12:45
AJaegerStevenK: The only "So, um..." was that the goal of translation was somehow missing - that's why I mentioned the "deliverables" like Manuals, dashboard, etc12:45
AJaegertongli: you're welcome12:45
*** sdake__ is now known as sdake12:45
*** aysyd has joined #openstack-infra12:46
dprincemarkus_z: yes, whats up?12:47
markus_zdprince: Are you still somewhat familiar with the "reviewday" tool? I'd like to enhance it, so we could sort by type. That would be useful for Nova's bug review day next week.12:48
dprincemarkus_z: somewhat, most of the sorting is all javascript I think12:48
*** maishsk has joined #openstack-infra12:48
markus_zI somehow fail to test this locally and I thought you could give me a hint.12:49
openstackgerritJesse Pretorius proposed openstack-infra/project-config: Fix os-ansible-deployment doc merging  https://review.openstack.org/21037912:49
odyssey4meAJaeger ^ there you go :)12:49
*** dkranz has joined #openstack-infra12:50
dprincemarkus_z: sounds like a useful feature so ++12:50
*** funzo has joined #openstack-infra12:50
dprincemarkus_z: if you pre-install the required dependencies in a venv you should be able to run review day like this: http://git.openstack.org/cgit/openstack-infra/reviewday/tree/README.md#n3212:50
AJaegerodyssey4me: thanks, will review later....12:51
dprincemarkus_z: I think we also have a puppet module to configure it for infra (puppet-reviewday)12:51
*** dkranz has quit IRC12:51
tsufievhey, guys! have you heard about some problems with grenade job (for Horizon stable/kilo commits)?12:51
*** dkranz has joined #openstack-infra12:51
*** e0ne has quit IRC12:52
markus_zdprince: I have the "out_report" folder. The "index.html" should then be able to show all items, right? Or do I have to set up a http server?12:52
markus_zdprince: I tried "python -m SimpleHTTPServer" but all tables were empty.12:53
dprincemarkus_z: when testing locally I usually edit the project list (in the python) to make report generation faster12:53
*** monester has quit IRC12:53
dprincemarkus_z: but once it generates the HTML report you shouldn't need a server to view it12:53
dprincemarkus_z: file:// would work fine too12:53
*** claudiub has joined #openstack-infra12:53
openstackgerritJesse Pretorius proposed openstack-infra/project-config: Rename os-ansible-deployment gate checks to conform to new style  https://review.openstack.org/21026512:54
markus_zdprince: OK, then I'm still doing something wrong, odd.12:54
markus_zdprince: OK, I just wanted to double-check if I'm missing something. I'll push a change in the next view hours, would be great if you could have a look at it.12:55
markus_z"view"="few" ...12:55
*** yfried is now known as yfried|afk12:55
dprincemarkus_z: cool, will try to have a look, thanks12:55
markus_zdprince: thanks!12:56
*** rfolco has joined #openstack-infra12:58
*** e0ne has joined #openstack-infra12:59
*** tlian has joined #openstack-infra13:01
*** claudiub has quit IRC13:01
*** arxcruz has quit IRC13:03
*** zeih has quit IRC13:04
*** zeih has joined #openstack-infra13:04
*** kiran-r has quit IRC13:04
*** dingyichen has joined #openstack-infra13:05
*** yfried|afk is now known as yfried13:06
*** tiswanso has joined #openstack-infra13:10
*** amitgandhinz has joined #openstack-infra13:10
*** funzo has quit IRC13:12
*** ayoung has joined #openstack-infra13:13
*** rlandy has joined #openstack-infra13:13
*** skolekonov has joined #openstack-infra13:16
*** moravec1 has joined #openstack-infra13:17
*** moravec has quit IRC13:17
*** radez_g0n3 is now known as radez13:18
*** jswarren has joined #openstack-infra13:19
*** mriedem has joined #openstack-infra13:21
*** maishsk has quit IRC13:21
*** tjones has joined #openstack-infra13:22
*** arxcruz has joined #openstack-infra13:23
*** maishsk has joined #openstack-infra13:24
*** bswartz has joined #openstack-infra13:24
*** che-arne has joined #openstack-infra13:25
*** tvanderwiel has joined #openstack-infra13:26
*** tvanderwiel has left #openstack-infra13:26
*** monester has joined #openstack-infra13:30
witekhello13:30
*** maishsk has quit IRC13:31
witekcould you please add me (witek, witold.bedyk@est.fujitsu.com) to the new groups monasca-log-core and monasca-log-release?13:32
*** leakypipes has quit IRC13:32
*** spzala has quit IRC13:33
*** claudiub has joined #openstack-infra13:37
*** jaypipes has joined #openstack-infra13:39
openstackgerritLucas Alvares Gomes proposed openstack/diskimage-builder: ironic-agent element to output a .kernel file  https://review.openstack.org/21043613:40
*** mestery_ is now known as mestery13:40
*** jaypipes is now known as leakypipes13:41
openstackgerritLucas Alvares Gomes proposed openstack/diskimage-builder: ironic-agent element to output a .kernel file  https://review.openstack.org/21043613:43
*** tongli has quit IRC13:45
*** ryanpetrello has quit IRC13:47
*** mwagner_lap has joined #openstack-infra13:47
*** ryanpetrello has joined #openstack-infra13:50
mriedemquestion about reqs changes - g-r min version doesn't need to match what's in upper-constraints right?13:51
mriedemi.e. we need at least oslo.versionedobjects>=0.6.0, but the latest is 0.7.013:51
mriedemand that's what's been tested with i think13:51
mriedemwell, i guess upper-constraints has ovo==0.6.0 right now13:51
*** ryanpetrello has quit IRC13:54
openstackgerritMatt Riedemann proposed openstack/requirements: Raise minimum required oslo.versionedobjects>=0.6.0  https://review.openstack.org/21044513:54
mriedemdims_: sdague: ^13:54
*** rvba has joined #openstack-infra13:57
*** rvba has quit IRC13:57
*** rvba has joined #openstack-infra13:57
*** tongli has joined #openstack-infra13:57
*** garyk has quit IRC13:57
mriedem"upper-constraints.txt is machine generated and nothing more or less than an exact list of versions."13:57
mriedemis that still true? seems it was originally machine generated but now it's changed by humans13:58
mriedempossibly cyborgs13:58
sdaguedims_: is there a pbr version bump in the works for requirements?13:58
*** tjones has quit IRC13:58
*** monester has quit IRC13:58
*** stevemar has joined #openstack-infra13:58
*** ParsectiX has quit IRC13:59
*** spzala has joined #openstack-infra13:59
openstackgerritMatt Riedemann proposed openstack/requirements: Raise minimum required oslo.versionedobjects>=0.6.0  https://review.openstack.org/21044514:00
*** sergmelikyan has joined #openstack-infra14:02
*** stevemar has quit IRC14:02
dims_sdague: lifeless was working that14:02
*** bswartz has quit IRC14:02
dims_let me check14:02
*** tjones has joined #openstack-infra14:03
openstackgerritDarragh Bailey proposed openstack-infra/jenkins-job-builder: added support for jdepend plugin  https://review.openstack.org/20153314:05
*** yfried is now known as yfried|afk14:05
*** coreycb has quit IRC14:07
AJaegermordred: are you fine with documenting shade for end-users? See https://review.openstack.org/#/c/203796/14:07
*** coreycb has joined #openstack-infra14:07
*** AJaeger has quit IRC14:08
pabelangerjeblair: clarkb: could really use your help / thoughts about getting a module sync process in place for openstack/puppet-* modules.  Here is what the team wants to do today: https://review.openstack.org/#/c/189216/14:11
*** AJaeger has joined #openstack-infra14:11
pabelangerhowever, -infra has expressed concerns already about automating this process.14:11
*** yfried|afk is now known as yfried14:13
*** funzo has joined #openstack-infra14:13
*** zeih has quit IRC14:16
*** abregman|afk has quit IRC14:16
fungiodyssey4me: AJaeger: it looks like your skip clause in layout.yaml skips all your check/gate jobs for changes to your documentation, which means they'll never be enqueued14:17
fungiodyssey4me: you need at least one job which will run. perhaps a docs job?14:18
AJaegerfungi: so, adding noops is the right fix as done in https://review.openstack.org/#/c/210379/ ?14:18
AJaegerfungi: yeah, adding a doc jobs that builds it would be better...14:18
AJaegergood morning, fungi!14:18
*** funzo has quit IRC14:19
fungiAJaeger: i think projects are only supposed to have noop as a check/gate job if they have no other jobs for those pipelines, otherwise they end up potentially influencing a shared queue for all projects with the noop job14:19
fungijeblair: ^ do you recall?14:19
*** baoli has quit IRC14:20
*** btully has joined #openstack-infra14:20
fungii know that was a concern back when the noop job was a real job, but not sure if it's still an issue now that it's only a pseudojob14:20
*** baoli has joined #openstack-infra14:20
jeblairyep, it's an issue14:20
*** alaski is now known as lascii14:21
fungiso anyway, the short term fix is to drop some/all of the skip, better fix is to get a documentation check/gate job14:21
*** sdake_ has joined #openstack-infra14:21
jeblairfungi: ++14:22
*** tiswanso has quit IRC14:22
AJaegerthanks for the explanation... odyssey4me, are you still around?14:22
*** tiswanso has joined #openstack-infra14:23
odyssey4meAJaeger yes14:23
odyssey4mefungi AJaeger right, so is it possible to select a job based on some sort of regex criteria - ie instead of skipping, rather choose a docs job?14:24
*** geoffarnold has joined #openstack-infra14:25
*** sdake has quit IRC14:25
AJaegerodyssey4me: add a docs job (either to build the documentation or to run "doc8") and run it always14:25
tonglican anyone help adding me to the ACL of a new project I created?14:25
openstackgerritLucas Alvares Gomes proposed openstack/diskimage-builder: Deprecate the deploy-ironic element  https://review.openstack.org/20907914:26
*** geoffarnold has quit IRC14:26
StevenKAJaeger: Do you in fact have a screenshot or something of Horizon in another language? From what I can see, it's a config option, not something a user can just set LANG for :-/14:26
AJaegerStevenK: you can set it yourself14:26
*** geoffarnold has joined #openstack-infra14:27
*** zz_dimtruck is now known as dimtruck14:27
StevenKThat's unfortunate, HP Cloud only has 3 kinds of English14:27
AJaegerGot to http://DASHBOARD/settings/14:27
odyssey4meAJaeger ah ok, so to confirm - is it possible to set specific jobs to get skipped based on specific criteria?14:27
AJaegerodyssey4me: the same way you do already today14:29
AJaegerbut I would not optimize to much - like you already did ;)14:29
*** otter768 has joined #openstack-infra14:31
AJaegerStevenK: right now I can only send you a SUSE branded screenshot, do you want to have it?14:32
StevenKAJaeger: Sounds perfectly fine14:32
*** garyk has joined #openstack-infra14:33
StevenKAJaeger: I'll attribute the source and so on14:33
AJaegerLet me send you what I have and you can decide - otherwise you know where to change it...14:33
openstackgerritEmilien Macchi proposed openstack-infra/project-config: jenkins/copy-puppet-logs: run the publisher all the time  https://review.openstack.org/21047214:33
*** radez is now known as radez_g0n314:33
openstackgerritTimur Sufiev proposed openstack/requirements: Bump the minimum version of XStatic-JQuery.TableSorter  https://review.openstack.org/21047414:34
fungiStevenK: alternative is that you should be able to set it in a devstack, point your browser at it and take whatever screen captures you want14:34
tongliHi, guys, I have created a new project named openstack/kiloeyes which is a cloud monitoring project.14:35
EmilienManyone from infra-core can have a look at a small change for puppet jobs ? https://review.openstack.org/210472 (it's about running copy logs publisher whatever job status)14:35
tonglinow I need someone to help me adding +2 users so that we can start accepting patch set.14:35
tonglican anyone help point me to the right direction what I have to do to add myself (since I created the project) to the +2 user group?14:35
*** otter768 has quit IRC14:35
StevenKfungi: I don't have a running devstack, but I'm probably going to have to do so for at least server translations14:36
*** garyk1 has joined #openstack-infra14:37
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Fix issues in migration 1ff737bef438  https://review.openstack.org/21016614:37
*** garyk has quit IRC14:37
*** Guest55 has joined #openstack-infra14:39
*** jgriffith is now known as Guest8148614:39
*** Guest55 is now known as jgriffith14:40
StevenKAJaeger: Those screenshots look marvellous, thanks14:41
*** nelsnelson has joined #openstack-infra14:41
*** yfried is now known as yfried|afk14:42
*** stevemar has joined #openstack-infra14:42
*** tiswanso has quit IRC14:43
*** larainema has quit IRC14:43
openstackgerritMarkus Zoeller (markus_z) proposed openstack-infra/reviewday: Make the review list sortable by review type  https://review.openstack.org/21048114:43
*** larainema has joined #openstack-infra14:44
*** tiswanso has joined #openstack-infra14:44
markus_zdprince: ^14:45
mrmartinfungi: morning, this is the askbot-theme merge patch: https://review.openstack.org/#/c/210373/ please review if you have a few minutes14:45
*** dingyichen has quit IRC14:47
*** Guest45541 is now known as superdan14:47
*** superdan is now known as Guest2022214:48
*** xyang has joined #openstack-infra14:48
odyssey4meAJaeger so I see that os-ansible-deployment is in the section 'OpenStack infrastructure projects' which isn't right, I don't think - should it be in 'Other OpenStack Projects' perhaps, along with chef, puppet, etc?14:48
AJaegerodyssey4me: yeah, would be nicer...14:50
odyssey4meok AJaeger I'll do another cosmetic review to move the stuff around after adding the docs job14:50
*** patrickeast has joined #openstack-infra14:51
*** yfried|afk is now known as yfried14:51
*** MarkAtwood has joined #openstack-infra14:51
AJaegerEmilienM: +2a14:52
EmilienMAJaeger: thanks14:52
AJaegerodyssey4me: thanks14:52
*** dims_ is now known as dimsum__14:53
timrcI'm building an app that uses the upstream Gerrit event stream? Is there a formalized process for getting permission to do that or am I simply able to open the ssh connection and go?14:55
*** bcourt has quit IRC14:55
timrcHm that first question mark should be a period... though sometimes I wonder :)14:55
timrcAssuming eventually I'd need a third-party account (for the ssh key) if this service launches, but until then...14:56
nibalizerpossible to use your personal key?14:58
*** nagyz_ is now known as nagyz14:58
*** tonytan4ever has joined #openstack-infra14:59
*** ildikov has quit IRC14:59
openstackgerritMerged openstack-infra/askbot-theme: Merge remote-tracking branch 'origin/feature/development' into merge-branch  https://review.openstack.org/21037314:59
fungimrmartin: lgtm, approved14:59
timrcnibalizer, For now yeah, I'd use my personal key.  I just want to make sure it's okay for me to consume those events.15:00
*** BrandonL08 has joined #openstack-infra15:00
fungimrmartin: diff between that change and the feature branch was just the defaultbranch parameter in .gitreview, so perfect!15:00
*** yamahata has joined #openstack-infra15:00
*** ryanpetrello has joined #openstack-infra15:01
nibalizertimrc: ya it is15:02
mrmartinfungi: yeah, it was a bit strange for me this single file showed up there, but then I realized, that the parent refs describes the merge.15:02
*** bswartz has joined #openstack-infra15:02
*** kevinbenton has quit IRC15:02
*** kevinbenton has joined #openstack-infra15:03
fungimrmartin: right, gerrit's webui does odd things with merge commits15:03
*** witek has quit IRC15:04
fungithey start to look really strange when there are merge conflicts resolved in the commit15:04
*** dkranz has quit IRC15:05
*** e0ne has quit IRC15:05
*** yfried is now known as yfried|afk15:06
*** dkranz has joined #openstack-infra15:06
*** dangers_away is now known as dangers15:06
*** tiswanso has quit IRC15:08
openstackgerrityolanda.robla proposed openstack-infra/system-config: Ensure creation of jeepyb cache dir  https://review.openstack.org/21049115:08
*** yfried|afk is now known as yfried15:08
*** bcourt has joined #openstack-infra15:09
*** mtanino has joined #openstack-infra15:09
*** tiswanso has joined #openstack-infra15:10
openstackgerritMerged openstack-infra/project-config: jenkins/copy-puppet-logs: run the publisher all the time  https://review.openstack.org/21047215:10
*** nelsnelson has quit IRC15:10
*** liam__ has joined #openstack-infra15:11
*** Guest20222 is now known as dansmith15:11
openstackgerritSpencer Krum proposed openstack-infra/zuul: Log which repo zuul references are created on  https://review.openstack.org/21011915:11
*** liam__ has quit IRC15:13
*** austin81 has joined #openstack-infra15:13
*** bpokorny has joined #openstack-infra15:13
*** unicell1 has joined #openstack-infra15:14
zaromorning15:14
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Fix issues in migration 1ff737bef438  https://review.openstack.org/21016615:14
*** funzo has joined #openstack-infra15:14
*** tsekiyama has joined #openstack-infra15:14
fungitongli: i've added you as the initial member of https://review.openstack.org/#/admin/groups/1027,members so you should now be able to add any other users you need to that group15:16
*** unicell has quit IRC15:16
*** flepied has quit IRC15:16
tongli@fungi, thanks so much Jeremy for the blessing.15:17
fungitongli: you're welcome!15:17
*** laughterwym has quit IRC15:19
*** funzo has quit IRC15:19
*** kurtmartin has joined #openstack-infra15:20
*** sdake_ is now known as sdake15:20
*** flepied has joined #openstack-infra15:22
*** r-daneel has joined #openstack-infra15:22
greghaynesclarkb: hrm http://logs.openstack.org/80/208780/1/check/gate-dsvm-nodepool-nv/23f42d5/logs/devstacklog.txt.gz#_2015-08-04_04_04_21_11415:23
*** tjones has quit IRC15:24
*** raimo is now known as rainya15:24
greghaynesclarkb: thats for adding gearman to the nodepool devstack job15:24
*** patrickeast has quit IRC15:25
*** flepied has quit IRC15:26
*** patrickeast has joined #openstack-infra15:27
*** ryanpetrello has quit IRC15:27
*** ryanpetrello has joined #openstack-infra15:28
*** sergmelikyan has quit IRC15:28
*** jcoufal has quit IRC15:29
openstackgerritMerged openstack-infra/project-config: Remove icehouse building for training-guides  https://review.openstack.org/20977615:30
openstackgerritJesse Pretorius proposed openstack-infra/project-config: Add docs check to os-ansible-deployment  https://review.openstack.org/21049815:30
AJaegerfungi: thansk for approving the training-guides icehouse cleanup. Could you also close the branch, please? I send an email to the list already...15:31
fungiAJaeger: i already did. just mailed out the reply15:31
AJaegerfungi: Ah! Thanks!15:32
openstackgerritJesse Pretorius proposed openstack-infra/project-config: Add docs check to os-ansible-deployment  https://review.openstack.org/21049815:32
odyssey4meAJaeger ^ that's the addition of the docs check to os-ansible-deployment15:33
openstackgerritAustin Clark proposed openstack-infra/subunit2sql: Update API docs to include alternative db layer initialization  https://review.openstack.org/20996015:34
*** yfried is now known as yfried|afk15:34
fungirax has finally deleted the 72 instances we had stuck pending deletion in iad, so now we're down to just four in dfw i'm trying to get them to clean up15:35
*** yfried|afk is now known as yfried15:35
greghaynes\O/15:35
AJaegerodyssey4me: see my comments...15:36
greghaynes\O/15:36
greghayneser, oops15:37
greghaynestheres an echo in here15:37
openstackgerritMerged openstack-infra/project-config: Don't run any tests on puppet-dashboard  https://review.openstack.org/20974015:37
AJaegergreghaynes: how do you trigger the echo? ;)15:38
greghaynesby restricting coffee intake15:39
openstackgerritMerged openstack-infra/askbot-theme: Standalone maintenance page for ask.o.o migration  https://review.openstack.org/21007315:39
openstackgerrityolanda.robla proposed openstack-infra/system-config: Define local gerrit replication and cronjob only once  https://review.openstack.org/21050215:39
openstackgerritMerged stackforge/gertty: Supply a default query on search  https://review.openstack.org/19817515:39
fungipabelanger: can you reply to nibalizer and yolanda on 205696 when you have a moment? i assume we're safe to approve that one as well now?15:39
openstackgerritMerged stackforge/gertty: Redisplay after spawning browser  https://review.openstack.org/20304115:40
openstackgerritMerged stackforge/gertty: Support '-' as negation operator in query  https://review.openstack.org/20724015:40
*** e0ne has joined #openstack-infra15:40
* AJaeger wishes everybody a great weekend...15:40
Clintwoot15:40
*** AJaeger has quit IRC15:40
*** e0ne has quit IRC15:42
greghaynesTheJulia: Just hit http://paste.ubuntu.com/12021804/ on node I booted with bifrost15:42
mtreinishfungi, clarkb, jeblair: if you get a sec could you take a look at: https://review.openstack.org/210166 the subunit2sql db is part way through a migration which blew up and that should unstick it15:42
*** gyee has joined #openstack-infra15:42
openstackgerritJesse Pretorius proposed openstack-infra/project-config: Add docs check to os-ansible-deployment  https://review.openstack.org/21049815:43
TheJuliagreghaynes: ouch...15:44
greghaynesTheJulia: Ah, its because my ssh keys file has newlines in it beacause there are multiple keys15:44
*** rfolco has quit IRC15:44
TheJuliagreghaynes: ahhhh15:44
greghaynesnot sure how we want to deal with that... is there a sane way?15:45
pabelangerfungi: commented. It should be save to land, we've removed all references to the puppet-apache15:45
greghaynesI wonder if we should be urlencode/decoding that data...15:45
jeblairmtreinish: +215:46
greghaynesTheJulia: yea, looks like we should. Ill whip up a patch15:47
TheJuliaHmm...  ok15:48
TheJuliagreghaynes: sorry, brain occupied on a call at the moment15:48
*** harlowja_at_home has joined #openstack-infra15:48
greghaynesheh, np :)15:48
mtreinishjeblair: cool, thanks. I'll +A it and then push a release15:49
mtreinishthat should hopefully automagically fix things and finish applying the migration15:49
*** ifarkas has quit IRC15:49
*** che-arne has quit IRC15:50
*** flepied has joined #openstack-infra15:50
*** MarkAtwood has quit IRC15:52
*** notnownikki has joined #openstack-infra15:53
*** yfried has quit IRC15:53
*** dansmith is now known as superdan15:54
*** yamamoto has joined #openstack-infra15:54
*** tjones has joined #openstack-infra15:54
*** yolanda has quit IRC15:55
openstackgerritMerged openstack-infra/subunit2sql: Fix issues in migration 1ff737bef438  https://review.openstack.org/21016615:55
*** yamamoto_ has joined #openstack-infra15:55
*** yolanda has joined #openstack-infra15:55
openstackgerritJoshua Harlow proposed openstack-infra/project-config: Ensure anvil-job has newest six library upgraded  https://review.openstack.org/21050715:56
harlowja_at_homeianw, if u get a chance ^15:56
harlowja_at_homeseems needed, borks python-cryptograph rpmbuilding if not done :-/15:56
harlowja_at_home* see https://bugs.launchpad.net/anvil/+bug/148269615:57
openstackLaunchpad bug 1482696 in anvil "Gate 2.7 six is really way to old" [Undecided,New]15:57
*** yamamoto has quit IRC15:59
*** arxcruz has quit IRC16:00
*** puranamr has joined #openstack-infra16:01
*** kgiusti has left #openstack-infra16:02
*** bswartz has quit IRC16:05
*** bswartz has joined #openstack-infra16:05
*** salv-orl_ has joined #openstack-infra16:06
*** ajmiller has quit IRC16:06
*** jlanoux has quit IRC16:07
*** harlowja_at_home has quit IRC16:08
*** salv-orlando has quit IRC16:08
*** esmute_ has joined #openstack-infra16:09
mrmartinfungi: may I ask you to check on the new ask.o.o site whether the /srv/askbot-site/themes is matching the latest HEAD of openstack-infra/askbot-theme master branch? the commit hash is: 23cce7d1c49d76a0fe47e790eafea699b5e0093216:09
mrmartinthe site skin is still broken, I didn't get why16:10
*** tjones has quit IRC16:10
*** ajmiller has joined #openstack-infra16:11
jeblairmtreinish: /srv/askbot-sites/slot0/themes is at f9f4bfa085b8c4b9fbf6c71766f7042793de12b916:11
*** patrickeast has quit IRC16:11
jeblairmrmartin: ^16:11
jeblairmtreinish: sorry16:11
mrmartinjeblair: it is the old site16:12
fungimrmartin: it won't get automatic puppet updates until we do the switch. until then i have to pull manually16:12
fungidoing that now16:12
mrmartinfungi: oh ok, thnx.16:12
*** patrickeast has joined #openstack-infra16:12
mrmartinjeblair: we have a production ask.o.o site, and new one under construction, based on trusty16:12
jeblairwhat switch?16:12
fungijeblair: yeah, puppet agent is disabled on ask.o.o pending migration to the replacement16:12
fungijeblair: https://etherpad.openstack.org/p/askbot-trusty-migration16:12
*** alexsyip has joined #openstack-infra16:13
mtreinishjeblair: nothing to apologize for, I learned something new. Not sure what I'll do with that info though :)16:13
fungias of a couple days ago so that we could merge the updates without breaking the old production server16:13
jeblairfungi: ah, somehow i missed this was happening.16:13
mrmartinfungi: anyway if this skin update works, I suggest to do the switch on next Monday or Tuesday16:13
fungijeblair: yeah, new askbot version requires a lockstep upgrade to trusty16:14
*** bswartz has quit IRC16:14
fungimrmartin: sounds good. i'll write up the announcement as soon as we're sure16:14
fungimrmartin: pulled the update now16:14
mrmartinok, it looks better now16:14
*** bswartz has joined #openstack-infra16:15
mrmartinfungi: would you like a test backup / recovery before a final switch?16:15
mrmartinlike / like to do16:15
*** dtantsur is now known as dtantsur|afk16:16
*** unicell1 has quit IRC16:17
fungimrmartin: can do, but won't be able to get to it for about an hour, then i'll give it a shot16:18
mrmartinok, we are not in hurry16:18
*** patrickeast has quit IRC16:19
mrmartinthe etherpad.o.o is a bit bugy, sometimes previously added content simply disappears...16:20
*** armax has quit IRC16:20
*** puranamr has quit IRC16:22
*** sdake_ has joined #openstack-infra16:22
*** patrickeast has joined #openstack-infra16:23
openstackgerritPaul Belanger proposed openstack-infra/project-config: [WIP] Add puppet-modulesync-configs hook  https://review.openstack.org/21051716:24
*** bpokorny has quit IRC16:25
*** bdemers_ has joined #openstack-infra16:26
*** flepied1 has joined #openstack-infra16:26
*** sdake has quit IRC16:26
*** flepied has quit IRC16:26
*** xyang1 has joined #openstack-infra16:26
*** bdemers has quit IRC16:27
*** bdemers_ is now known as bdemers16:27
*** luqas__ has quit IRC16:27
pc_mHi! can I get a second infra core to look at https://review.openstack.org/#/c/209887/ ? This adds gate-hook.sh to neutronclient, so that VPN devstack plugin can be enabled in the python-neutronclient (via https://review.openstack.org/#/c/210021/)16:28
*** patrickeast has quit IRC16:28
*** jistr has quit IRC16:28
*** ericksonfgds is now known as ericksonsantos16:28
*** funzo has joined #openstack-infra16:30
*** xyang1 has quit IRC16:30
*** sputnik13 has joined #openstack-infra16:31
*** bapalm has quit IRC16:31
*** otter768 has joined #openstack-infra16:32
*** esmute_ has quit IRC16:33
*** esmute_ has joined #openstack-infra16:33
*** funzo has quit IRC16:34
*** ashleighfarnham has joined #openstack-infra16:35
*** otter768 has quit IRC16:36
*** patrickeast has joined #openstack-infra16:39
*** stevemar has quit IRC16:39
*** unicell has joined #openstack-infra16:40
*** stevemar has joined #openstack-infra16:41
*** ildikov has joined #openstack-infra16:42
*** swat30 has quit IRC16:43
greghaynesSpamapS: ok, hit https://review.openstack.org/210505 when deploying to nodes, rebuilding an image without all my debug stuff in it, if it works going to redeploy the world again16:43
greghaynesSpamapS: You should also have keys on the nodes too since we can now do more than one key16:44
*** jgriffith has quit IRC16:44
*** marzif has quit IRC16:45
*** swat30 has joined #openstack-infra16:47
openstackgerritKhai Do proposed stackforge/python-jenkins: Support ability to install plugins  https://review.openstack.org/21052916:48
mtreinishfungi: can I bug you again to see if subunit2sql-db-manage is running again on logstash.o.o?16:49
*** claudiub has quit IRC16:50
*** kgiusti has joined #openstack-infra16:51
*** kiran-r has joined #openstack-infra16:51
fungimtreinish: root      1222  0.0  1.7 185168 35268 ?        S    16:19   0:00 /usr/bin/python /usr/local/bin/subunit2sql-db-manage --config-file /etc/subunit2sql.conf upgrade head16:51
*** esmute_ has quit IRC16:51
fungimorganfainberg_: this keystone commit has three authors https://review.openstack.org/198924 and the two in those co-authored-by lines are seeking discount codes for the tokyo summit. i'm going to have them ask you to add them to http://git.openstack.org/cgit/openstack/governance/tree/reference/extra-atcs but, um, it's entirely up to you as to whether you want to do that ;)16:51
mtreinishok, that's a good sign, it didn't crash immediately :)16:51
*** tonytan4ever has quit IRC16:52
mtreinishhopefully that means its doing its thing with bug fixed migration now16:52
*** dkranz has quit IRC16:52
sdaguemtreinish: so what's up with the neutron multinode full being so freaking long to run - https://jenkins07.openstack.org/job/gate-tempest-dsvm-neutron-multinode-full/73/consoleFull ?16:53
*** esmute_ has joined #openstack-infra16:53
sdaguethere are a lot of > 60 second tests in there16:53
*** rfolco has joined #openstack-infra16:53
*** monester has joined #openstack-infra16:54
mtreinishsdague: hmm, dunno yeah it's been running for an ~ 1 hr so far16:54
mtreinishit looks like neutron api is being sluggish16:55
mtreinishlike list tests are taking seconds, I think that's pretty slow16:55
* mtreinish checks16:55
*** claudiub has joined #openstack-infra16:55
*** dkranz has joined #openstack-infra16:55
sdagueok, so I feel like this can't be in the check queue non voting with it's current run time16:56
sdaguethis is basically adding 30 minutes turn around to all nova patches16:56
*** skolekonov has quit IRC16:56
*** yamamoto_ has quit IRC16:56
*** dangers has quit IRC16:57
mtreinishyeah, checking the db a lot of neutron tests are quite a bit slower then the avg. Are the multinode runs consistently this slow?16:57
*** dangers_away has joined #openstack-infra16:57
*** esmute_ has quit IRC16:58
clarkbnova net is same time16:58
*** esmute_ has joined #openstack-infra16:58
*** puranamr has joined #openstack-infra16:58
clarkband I thought neutron was in same range too16:59
clarkbwe should look at sample >116:59
openstackgerritSean Dague proposed openstack-infra/project-config: move neutron-multinode-full to experimental for nova  https://review.openstack.org/21053016:59
mtreinishclarkb: yeah I agree, 1 run in isolation isn't really indicative of anything17:00
clarkbya its same range as single node ~1hour17:00
SpamapSmtreinish: in theory the shift to PyMySQL may have a severe impact on test run resource usage... more CPU use, less waiting in line doing nothing.. could cause "sluggishness" that wasn't present before.17:00
*** dangers_away is now known as dangers17:00
SpamapSIIRC Neutron finally switched its default right?17:01
clarkbso not a multinode issue imo17:01
sdaguehttps://review.openstack.org/#/c/194454 and everything below it, it's about 10 minutes slower than average17:01
clarkbSpamapS we switched a while back and checked times on that too17:01
*** dprince has quit IRC17:01
clarkbit was equivalent17:01
sdagueyeh, mysql was never getting hit very hard17:02
sdagueit's all noise at these load levels17:02
*** dimtruck is now known as zz_dimtruck17:02
SpamapShm is it? What's holding the test back with such tiny datasets if not CPU?17:02
*** salv-orlando has joined #openstack-infra17:02
*** puranamr has quit IRC17:03
sdaguewe boot real machines17:03
clarkbcpu in nova/qemu/nrutron17:03
clarkbnot mysql17:03
SpamapSThough IIRC, the nodes we have come with CPU to spare right?17:03
clarkbno cpu to spare17:03
sdagueSpamapS: you can look at the dstat17:03
SpamapSoh I thought we got too many CPU's because we needed moar RAM17:03
mtreinishSpamapS: http://logs.openstack.org/80/210480/1/check/gate-tempest-dsvm-neutron-multinode-full/a4d2a7d//logs/screen-dstat.txt.gz17:03
sdagueSpamapS: no, the opposite17:03
clarkbno too much ram because hpcloud cpus are almost useless17:04
SpamapSahh right that problem again :(17:04
clarkbsdague anyways single node is slow too so not multinodes fault17:04
sdagueclarkb: multinode adds another 15 minutes on it17:05
clarkbno it doesnt17:05
sdagueI feel like we need to diet these things before we just pile them on17:05
openstackgerritJesse Pretorius proposed openstack-infra/project-config: Move os-ansible-deployment to the right section  https://review.openstack.org/21053717:05
clarkbI am looking at jenkins reported times its 1hour to 1 hour 10 minutes for single and multinode17:05
greghaynesSpamapS: networking question for these baremetal nodes. should we be giving them 15.x addresses?17:05
clarkbhttps://jenkins07.openstack.org/job/gate-tempest-dsvm-neutron-full/10247/17:05
clarkb1 hour 9 minutes17:06
*** salv-orl_ has quit IRC17:06
SpamapSah I see, idle only drops below 30% when the qemu is running17:06
SpamapSgreghaynes: yes17:06
sdagueok, well they both need to go on a diet then for the nova case17:06
greghaynesSpamapS: Do we have it documented how we want to partition that up?17:06
SpamapSgreghaynes: I believe we'll have to do the trick where we pop up vlan25, bridge it, put the 15.x on that bridge, and then attach neutron l2 to that bridge as well.17:07
clarkbhttps://jenkins07.openstack.org/job/gate-tempest-dsvm-neutron-multinode-full/62/ 58 minutes17:07
greghaynesI think now is a good time to Do It Right(TM) from this bm host17:07
*** bpokorny has joined #openstack-infra17:07
clarkbits all in the same cloud variance17:07
*** kiran-r has quit IRC17:07
greghaynesSpamapS: gotcha17:07
sdagueok, well I'd like there not to be 2 that are in that variance, because it does make it worse17:08
greghaynesSpamapS: Yea, that makes sense, I can go over 10net and try and set that up17:08
sdagueand these jobs need to be slimmer and more targetted17:08
*** ivar-lazzaro has joined #openstack-infra17:08
SpamapSgreghaynes: so I think what we'll have to do is make the first /25 the cloud/controllers, and then all of the rest are for vms.17:08
*** dannywilson has joined #openstack-infra17:09
SpamapSgreghaynes: the fact that we may have to interrupt 15.x traffic makes me think we may want to try and bake the config into the image.17:09
greghaynesclarkb: hrm http://logs.openstack.org/80/208780/1/check/gate-dsvm-nodepool-nv/23f42d5/logs/devstacklog.txt.gz#_2015-08-04_04_04_21_11417:10
greghaynesclarkb: (re nodepool patches passing)17:10
SpamapSgreghaynes: otherwise in bootstrapping it we'll break ansible or launch node or whatever.17:10
*** monester has quit IRC17:10
greghaynesSpamapS: hrm, I do like the 10net over untagged, were going to stop using that?17:11
clarkbgreghaynes I can look into that17:11
*** SumitNaiksatam has quit IRC17:11
SpamapSgreghaynes: we can keep using it, but people may not like that you have to launch nodes from a box on that network.17:11
greghaynesSpamapS: What about doing the vlan info in config drive17:12
SpamapSgreghaynes: and this really is quite simple I think.. we can probably get a bridge + vlan25 setup in /etc/network/interfaces.17:12
greghaynesIs that a lot of work?17:12
SpamapSgreghaynes: yes that is a lot of work. :-/17:12
greghaynesaye, ok17:12
SpamapSthere was a lot of rage about even suggesting it's a good idea to have it available there.17:12
*** ddieterly has joined #openstack-infra17:12
greghaynesoh right, that17:12
clarkbsdague can we direct this at neutron. they are the only group that can actually fix. we can tweak jobs but thats just a bandaid if neutron adds 10-20 minutes per cycle17:12
greghaynesSpamapS: ok, so what about just using dhcp17:13
SpamapSgreghaynes: but we might want to write down our thoughts on it, because I have this crazy idea that one day we can use 802.1QinQ to do tenant isolation... and then having vlan info in config drive would be sweet.17:13
greghaynesSpamapS: we cant dhcp because we need vlan to get configed, ugh17:13
openstackgerritJames E. Blair proposed openstack-infra/infra-manual: Change many uses of repository to project  https://review.openstack.org/21054017:14
jeblairfungi: fyi ^17:14
SpamapSgreghaynes: we can dhcp if we reach in through 10net to do it.17:14
sdagueclarkb: sure, but I'd like to get things rolled back so we're not holding things up, and just make that part of adding these things back in. Because, if we leave them on, they'll never get improved.17:14
SpamapSgreghaynes: also we could write a 'dhcp-all-vlantags' ...17:14
SpamapSnoooooooooooooooooooooooo17:14
*** radez_g0n3 is now known as radez17:15
greghaynesSpamapS: Hrm, is your bake in e/n/i config that we bake in a vlan25 interface that dhcps?17:15
clarkbsdague my point is this is not a regression brought on by these jobs17:15
*** sharikapongubala has joined #openstack-infra17:15
sdagueclarkb: right, I get that17:15
SpamapSgreghaynes: yeah we could bake that in for sure.17:15
clarkbwe can roll them back or not but that doesnt change anything17:15
*** bharath has joined #openstack-infra17:15
clarkbbecause the existing single node tests are just as bad17:15
greghaynesSpamapS: I kind of like that idea...17:16
sdaguehowever, I think we need to set some boundaries on adding jobs in terms of their trade offs of time run vs. real coverage17:16
fungijeblair: general thumbs-up, but reviewing17:16
SpamapSgreghaynes: and when we do bake in vlans, we tag it with a comment to the spec for vlan info in config drive so we know where to put our rage.17:16
greghaynesSpamapS: haha, yes17:16
*** Hal has joined #openstack-infra17:16
clarkbsdague we get massive real coverage fron these fwiw17:16
clarkbparticularly for networking17:16
sdagueI disagree for nova changes17:17
*** Hal is now known as Guest7438217:17
clarkbdid you knoe nova net dhcp is broekn?17:17
jeblairfungi: i'm writing a readme change to try to document my thinking and get a nexus on what we think these words mean in the manual :)17:17
SpamapSgreghaynes: interesting.. VoIP phones have commandered option 129 of DHCP to set VLAN17:17
greghaynesSpamapS: Yea, I saw some stuff when googling, seems like its also a common thing for windows17:17
SpamapS129 PXE - undefined (vendor specific) <-- RFC does not define it17:17
fungijeblair: awesome! that was going to be my first note on the change in fact... asking to have the manual clarify that we do have specific definitions for these terms and aren't just being lazily inconsistent17:18
sdagueclarkb: which is irrelevant to the multinode neutron job17:18
*** Guest74382 has quit IRC17:18
clarkbsdague yes its a specific example17:19
SpamapSgreghaynes: because honestly.. having the untagged net say "hey whats my vlan?" and a server that knows and answers that... I kind of like it. But the spec seems loose.17:19
clarkbwe find real bugs in nova and neutron doig this17:19
clarkband there is no additional overhead in time17:19
*** geoffarnold has quit IRC17:19
clarkbits not a regression of the tests themselves17:19
SpamapSgreghaynes: so yeah, build it in, and add our weight to the config drive spec.17:19
sdagueclarkb: ok, so you are telling me I have no voice in what runs on the Nova project17:19
SpamapSgreghaynes: let me see if I can work up a patch to the docs about this.17:20
greghaynesSpamapS: Yep, I dont want to spin on this too much, I mostly just want to get the network layed out somewhat saneish since changing that later will mean changing everything. We can iterate on how we specify that info later without a huge disruption though17:20
clarkbno I am trying to explqin pulling that job out doesnt fix neutron and doesnt make your jobs report faster17:20
*** ybathia has joined #openstack-infra17:20
clarkbif you want to stop running the test thats fine I just dont see it as prodyctive17:20
sdagueit does, because it's the longest job, and it has a variance17:20
clarkbthe normal neutron job is the same...17:20
clarkbwhich we arent removing right?17:21
*** sputnik13 has quit IRC17:21
sdaguesure, but if you have 1 thing with a variance bell curve of 1hr 10 minutes +/- 15 minutes17:21
sdaguethen your average return time is different17:21
*** sputnik13 has joined #openstack-infra17:21
sdaguethen if you have 2 of them17:21
sdaguethat's how statistics works17:22
sdagueso it is a real impact17:22
clarkb(and this job only affects check not gate)17:22
sdagueyes17:22
clarkbso productive work imo would be taking this to neutron and getting them to fix17:22
*** tjones has joined #openstack-infra17:23
sdagueand that's fine, but I want this off the check queue first17:23
*** HeOS has quit IRC17:23
sdaguebecause 0 people are looking at these failures if they happen anyway17:24
SpamapSgreghaynes: I think it would be appropriate to keep the TripleO CD spreadsheet up to date, but we will definitely want to add our IP allocation stuff to system-config somewhere.17:24
SpamapSgreghaynes: and make that the source of truth.17:24
sdaguetests that fail with no one debugging them, are completely pointless17:24
clarkbI am trying to look at them and file bugs17:24
greghaynesSpamapS: SGTM17:24
clarkbwhich is how we know nova net has broken dhcp17:24
sdaguewe have 1000 open bugs17:24
sdagueso unless they are also generating patches, they aren't really helping right now17:25
clarkbok17:25
sdaguewhich isn't the place I want to be in, but it's where we are17:25
*** geoffarnold has joined #openstack-infra17:25
openstackgerritJames E. Blair proposed openstack-infra/infra-manual: Add terminology notes to README  https://review.openstack.org/21054517:25
*** liam__ has joined #openstack-infra17:26
SpamapSsdague: _OW_. Curious.. is nova graphing the bug counts anywhere at the moment? It sometimes helps people feel good about small bug fixes to change the picture visibly, even if only slightly.17:26
sdagueand, because of timing variance and delays in the check queue, we've used 20 - 40% of a bunch of nova cores this week to land dead simple refactoring changes17:26
sdagueso right now, anything that slows that down, means less time to address bugs17:27
jesusaurusi have a jjb question: can the jobs section of a job-group refer to another job-group? or can it only refer to either a job or job-template?17:27
*** ivar-lazzaro has quit IRC17:27
sdagueSpamapS: http://status.openstack.org//bugday/17:27
clarkbjesusaurus I think its not recursive expansion17:27
*** markus_z has quit IRC17:27
*** skylerberg has joined #openstack-infra17:27
clarkbthe template "engine" is very simple17:27
*** ivar-lazzaro has joined #openstack-infra17:28
jeblairSpamapS: sdague: we should throw that into graphite and make a grafana dashboard for it17:28
jesusaurusclarkb: hm, alright17:28
*** geoffarnold has quit IRC17:28
sdaguejeblair: yep, that would be a thing. I'd be happy if someone did that work :)17:28
SpamapSsdague: so flat.. :(17:28
krotscheckOk, so, I have a trusty question about what an "LTS" release actually means. If I find a package that is no longer supported by the company that publishes it, can I file a ticket against, say, Trusty, and ask them to upgrade it?17:28
*** thorst has quit IRC17:28
SpamapSsdague: OH! thats 24hours?17:29
*** ashleighfarnham has quit IRC17:29
jeblairSpamapS: yeah, that's why graphite would be useful.  actually change the time scale.  ;)17:29
SpamapSjeblair: the LP api is pretty strong there.. I assume thats what bugday is querying.17:29
sdagueSpamapS: so, there are so many ways things to address. And if every attempt at a 1% improvement is "oh, you should do this other thing instead" we mostly go in circles17:29
jeblairSpamapS: yeah, so we should cron it so we run that LP query every <timeperiod> and emit the values as guages to graphite.17:30
*** devvesa has quit IRC17:30
SpamapSsdague: yeah, too many voices sometimes.17:30
*** ihrachyshka has quit IRC17:30
SpamapSjeblair: I like that idea. :)17:30
*** geoffarnold has joined #openstack-infra17:30
SpamapSjeblair: are there already other places that run periodic injections into graphite that I could use as a crib sheet?17:31
* SpamapS says that while infra-cloud's infinite void is staring him in the face17:31
sdagueSpamapS: if you do it, a request is that it also gets run pivotted by tags17:31
krotscheckjeblair: I've reached out to npm, and they've come back with the --ignore-scripts commandline option that landed in v1.3.18. Trusty's version is 1.3.10 (which according to npm is no longer supported, so I should probably go fill out a LTS ticket somewhere). I can use npm to update itself, though I suspect switching to a not-default-to-distro version might make some people mad. Any ideas?17:31
sdaguebecause for a project like nova the whole bug list is too overwhelming, but by tag, it might be burn downable17:31
jeblairSpamapS: i don't think so; though i think the script that produces _those_ files is already a cron.  so basically, one could probably just add a few lines like "import statsd; statsd.guage(...)" to that...17:32
*** liam__ has quit IRC17:32
SpamapSsdague: oh yeah that would be nice.17:33
jeblairkrotscheck: if we need to do that, we can consider having puppet perform an npm upgrade on the release slave.17:33
pelixzaro: if you get a chance would be good to have another set of eyeballs on my review comment for https://review.openstack.org/17393217:33
jeblairSpamapS, sdague: that will work well with graphite too ('bug.count.nova.tag.FOO')17:34
krotscheckjeblair: Oh good, I was hoping we could do that. It'd be release-slave specific :).17:34
krotscheckLet me make sure that that does what we think it does.17:34
jeblairkrotscheck: yeah.  let's also make sure clarkb and fungi don't scream.  :)17:34
krotscheckjeblair: I'll keep them preoccupied with good beer :D17:34
SpamapSjeblair: k, I see the bugdaystats repo.. poking at it17:35
jeblairkrotscheck: essentially we want software on there to be security supported; so either the thing in ubuntu (where we generally assume that we'll get important updates via ubuntu, even if that means patching a non-upstream-supported version), or if we do something ourselves, we want to make sure that we're installing something from a channel that will get security updates.17:35
jeblairkrotscheck: "have puppet use npm to continuously upgrade itself to the latest version" probably qualifies.17:36
krotscheckjeblair: Given that the version on trusty is not supported anymore, is there a way for me to ask the ubuntu people to update it as part of their LTS promise?17:36
*** geoffarnold has quit IRC17:36
*** ivar-laz_ has joined #openstack-infra17:37
*** geoffarnold has joined #openstack-infra17:37
jeblairkrotscheck: the LTS promise isn't "we will always have the latest version", it's more like "we will provide security patches to things in the main distro"17:37
jeblairkrotscheck: that may or may not involve a version change.17:37
fungikrotscheck: the distro "supports" the version they packaged. the promise of lts is that you _don't_ get new versions of things when you update, you only get security patches and critical bug fixes17:37
krotscheckjeblair: I guess saying "Hey javascript is insecure you should update it" doesn't count? ;)17:38
SpamapSkrotscheck: that does count 100%17:38
pabelangercrinkle: nibalizer: https://review.openstack.org/#/c/209607/ thoughts?17:38
*** ivar-lazzaro has quit IRC17:38
jeblairkrotscheck: however, npm is in 'universe' where there is less of a promise of security support.17:38
SpamapSkrotscheck: the default method for fixing that though, is patch only security problems.17:38
jeblairkrotscheck: SpamapS is far better equipped to elaborate.  :)17:38
*** crc32 has joined #openstack-infra17:38
fungikrotscheck: if you're able to point to specific security vulnerabilities which were fixed in later versions, then in theory canonical/ubuntu would backport those fixes to the version they're providing17:38
SpamapSkrotscheck: there's a process, however, for bypassing that default mode when upstream is moving way too fast.17:38
fungier, yeah what SpamapS just said17:39
*** sabeen1 has joined #openstack-infra17:39
pelixany other core reviewers for JJB about (besides zaro any myself?) have a bunch of reviews there that need a +2 & approved or some reason to block: https://review.openstack.org/179455, https://review.openstack.org/183585, https://review.openstack.org/201510, https://review.openstack.org/133774, https://review.openstack.org/192677, https://review.openstack.org/183488, https://review.openstack.org/20609217:39
SpamapSErgo, Firefox, MySQL, etc.17:39
krotscheckSpamapS: Urm, that would be useful. The current version is 2.1.x17:39
SpamapShttps://wiki.ubuntu.com/StableReleaseUpdates/MicroReleaseExceptions17:39
SpamapSkrotscheck: despite the micro on there, it includes information on full release exceptions too17:39
marksturclarkb,  Thanks for the manila-coverage fix.  The coverage reports are now a thing of beauty.17:40
krotscheckSpamapS: Cool, will read and doublecheck.17:40
SpamapSkrotscheck: also, specifically, if an external service is changed in such a way as to make a package useless, then all bets are off and a new version is happily waved in under the Stable Release Updates process.17:40
clarkbmarkstur sorry for thr trouble :)17:40
SpamapSso if npm's servers don't answer the old insecure things, then npm will be updated17:40
SpamapSkrotscheck: that process is closer to this https://wiki.ubuntu.com/StableReleaseUpdates17:40
SpamapSkrotscheck: is this just npm, or more things?17:41
SpamapSlooks like even Debian is failing to keep up17:41
SpamapShttps://tracker.debian.org/pkg/npm17:41
SpamapSa year old the last upload is</yoda>17:42
SpamapSClint: ^^ opportunity!17:42
SpamapSoh my, looks like upstream is 3.2.017:42
*** radez is now known as radez_g0n317:42
*** achanda has joined #openstack-infra17:44
*** pelix has quit IRC17:44
SpamapSkrotscheck: ftr this may end up like pip.. everybody from node will be like "uhhmm, no don't use distro npm" and everybody from distro will be like "never touch my drumset... and never use npm"17:44
*** SumitNaiksatam has joined #openstack-infra17:45
openstackgerritJames E. Blair proposed openstack-infra/infra-manual: Update creation for stackforge namespace retirement  https://review.openstack.org/21055317:45
*** radez_g0n3 is now known as radez17:46
*** ashleighfarnham has joined #openstack-infra17:47
*** ivar-lazzaro has joined #openstack-infra17:47
*** rguillebert has joined #openstack-infra17:49
*** ivar-laz_ has quit IRC17:49
ClintSpamapS: gosh17:50
fungiSpamapS: krotscheck: yeah, distro packages of non-distro package management tools (cpan, pear, et cetera) don't make a lot of sense. it would make more sense for the point of collaboration to be finding a mechanism for users of various distros to bootstrap and update to the latest versions of those tools, and in turn hopefully the authors of those tools don't run roughshod over your17:51
*** thorst has joined #openstack-infra17:51
fungidistro-package-managed files17:51
SpamapSgreghaynes: btw, this is actually approved for Liberty.. not sure if it's all of what we would need... http://specs.openstack.org/openstack/neutron-specs/specs/liberty/vlan-aware-vms.html17:51
fungibut having distro packages of those non-distro package managers is sort of a silly situation17:52
SpamapSfungi: pretty much all of those tools use /usr/local or /opt/something ... I've never understood why distros package them really.17:52
*** prad has quit IRC17:52
fungiSpamapS: well, pip at least is in an unfortunate situation. and the python community sort of didn't agree with debian's solution for having more than one place to add things to the library path17:53
fungion red hat i think it's still the case that pip install foo overwrites the files created by the rpm of foo in /usr/whatever17:53
fungii believe python has finally mostly come around that people want to be able to have distro packages install python modules in /usr/something and then separately be able to pip install or manually insert things into /usr/local/something17:54
SpamapSfungi: eh? I thought pip uses /usr/local17:54
*** sabeen1 has quit IRC17:55
SpamapSfungi: though IIRC it will rm stuff from /usr/lib now that I'm thinking about it.17:55
fungiyeah, there's a pep i think that describes a mechanism for distros to be able to define alternate module paths. looking it up17:56
fungibut the behavior (at least until fairly recently) was less desirable on rpm-based platforms17:57
clarkbSpamapS: thats a debianism17:57
clarkbSpamapS: on rhel that doesn't happen and it breaks python there17:57
SpamapSah lovely17:58
SpamapSwhat a mess17:58
*** nadya has quit IRC17:59
openstackgerritClark Boylan proposed openstack-infra/project-config: Stop running neutron multinode against nova  https://review.openstack.org/21055817:59
*** spzala has quit IRC18:00
harlowjamorganfainberg_ yet another fun one https://review.openstack.org/#/c/210549/ ;)18:00
harlowjaSpamapS u to, since u'll love it, ha18:01
Clintfungi: they totally make sense if what you want is the same level of integration and vetting for all the software you install18:01
fungiClint: i don't see how. if you install a distro-packaged non-distro package manager, what uses does it have except to install non-distro packages? in which case why have a distro package of that package manager?18:02
*** sharikapongubala has quit IRC18:03
fungithe non-distro packages cease to have the same level of integration and vetting as the distro packages18:03
*** pvaneck has joined #openstack-infra18:03
Clintfungi: to cater for people who want to install things without caring about the things i care about, and also they tend to do many other things besides install software18:04
fungii suppose for the "using them to do something other than install software" use case it makes sense18:04
krotscheckfungi: Well, in the case of npm, it can update itself, so no matter what version you start with you can get to the latest version supported on the installed version of node.18:05
*** gyee has quit IRC18:05
*** sabeen1 has joined #openstack-infra18:05
krotscheckfungi: (Re bootstrapping earlier)18:05
*** dannywilson has quit IRC18:05
Clintfungi: for example i do all kinds of things with cabal but i only install haskell libraries from .debs18:05
fungikrotscheck: i'm curious how it does that without getting reverted/mangled by the distro package manager18:05
SpamapSgreghaynes: https://review.openstack.org/208367 makes me think of https://www.youtube.com/watch?v=LtHE9dCj0O818:05
krotscheckfungi: Great question.18:05
krotscheckLemme see.18:05
*** bpokorny_ has joined #openstack-infra18:06
*** dannywilson has joined #openstack-infra18:06
*** sharikapongubala has joined #openstack-infra18:06
*** salv-orlando has quit IRC18:07
fungikrotscheck: apt-get install npm and you get 1.0 (fictitious example), npm upgrade npm and it updates itself to 2.0. then your distro backports a security fix and your security updates install npm 1.0.backport118:07
krotscheckfungi: The upgraded version ends up in /usr/local/bin18:07
krotscheckThe package version is in /usr/bin18:07
fungiahh, so as long as you have /usr/local/bin before /usr/bin in your path, you'll use the self-updated version18:07
*** ajmiller has quit IRC18:07
clarkbgreghaynes: you ok with me pushing a new patchset to your geard chnage?18:08
krotscheckfungi: Yep18:08
clarkbgreghaynes: I think I see the issue18:08
*** ajmiller has joined #openstack-infra18:08
krotscheckfungi: It's a bit weird though. If i upgrade npm, and then do npm --version, it still shows the old version. But if I spawn a new shell, it finds the new one.18:08
fungikrotscheck: yeah, that's your shell caching the path search18:09
krotscheckfungi: Will that be a problem via puppet?18:09
krotscheckProbably not18:09
funginah18:09
*** bpokorny has quit IRC18:09
*** bhunter71 has joined #openstack-infra18:09
krotscheckAlllrightey18:09
*** yushiro has joined #openstack-infra18:10
krotscheckWell, it looks like it will only upgrade to 2.13.4, because that's the last version supported by node 0.10.318:10
krotscheckBut that's recent enough18:10
yushirosdague, ping18:11
*** esmute_ has quit IRC18:11
fungikrotscheck: though one puppet challenge... if the deb and npm package names for npm are the same, you can't ask both the default package provider and npm package provider to install it18:11
krotscheckfungi: Oh.18:11
krotscheckHrm.18:11
krotscheckYeah that's a problem.18:12
openstackgerritClark Boylan proposed openstack-infra/nodepool: Run gearman server for devstack plugin  https://review.openstack.org/20878018:12
fungibecause puppet thinks that a package name is globally unique across all package providers18:12
clarkbgreghaynes: ^ I decided you didn't care :P18:12
krotscheckfungi: I guess i'll have to bash it.18:12
fungikrotscheck: also the npm package provider will hopefully know to look in /usr/local/bin before /usr/bin for its executable. may have to examine some ruby to determine whether it does that18:13
*** zz_dimtruck is now known as dimtruck18:13
*** bhunter71 has quit IRC18:13
*** armax has joined #openstack-infra18:14
fungikrotscheck: https://github.com/puppet-community/puppet-nodejs/blob/master/lib/puppet/provider/package/npm.rb doesn't seem to have any path munging, so might rely on the system default path in the calling environment. not sure18:14
*** kurtmartin has quit IRC18:14
mtreinishSpamapS, clarkb: \o/ the updated migration worked! Thanks for the help yesterday18:15
krotscheckfungi: I'll throw together a sample module and test it this afternoon.18:15
SpamapSmtreinish: ossum18:15
*** cdent has quit IRC18:15
*** funzo has joined #openstack-infra18:16
clarkbgreghaynes: what was the reason for not using default geard port (4730)?18:17
*** sharikapongubala has quit IRC18:18
*** b10n1k has joined #openstack-infra18:18
openstackgerritClint 'SpamapS' Byrum proposed openstack-infra/system-config: Add infra-cloud information about vlans  https://review.openstack.org/21056518:19
*** smcginnis is now known as smcginnis_afk18:19
krotscheckfungi: After all, we like publishign things without executing arbitrary code :)18:19
*** radez is now known as radez_g0n318:19
*** dteselkin has quit IRC18:20
*** funzo has quit IRC18:20
*** radez_g0n3 is now known as radez18:21
*** tsufiev has quit IRC18:22
*** HeOS_ has quit IRC18:22
*** kzaitsev_ws has quit IRC18:22
*** bhuvan has joined #openstack-infra18:22
*** tsufiev has joined #openstack-infra18:22
*** spzala has joined #openstack-infra18:22
*** HeOS_ has joined #openstack-infra18:22
*** kzaitsev_ws has joined #openstack-infra18:22
*** sabeen1 has left #openstack-infra18:22
davideag_hello, this patch needs one more core reviewer:  https://review.openstack.org/#/c/201285/218:24
*** patrickeast has quit IRC18:24
*** dteselkin has joined #openstack-infra18:24
*** bapalm has joined #openstack-infra18:26
*** bswartz has quit IRC18:26
openstackgerritClint 'SpamapS' Byrum proposed openstack-infra/system-config: Add infra-cloud information about vlans  https://review.openstack.org/21056518:28
SpamapSgreghaynes: ^ totally different.. we actually _can_ use the configdrive format18:28
SpamapSgreghaynes: it's approved and everything ;)18:28
*** sharikapongubala has joined #openstack-infra18:28
SpamapSjust not the "how does nova get this in"18:28
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add new graph type to show run_time variace by metadata  https://review.openstack.org/21056918:28
mtreinishclarkb: ^^^ that might be useful for the discussion we were having earlier about variance18:29
openstackgerritClint 'SpamapS' Byrum proposed openstack-infra/system-config: Add infra-cloud information about vlans  https://review.openstack.org/21056518:29
mtreinishI'm not quite sure though, because it's still trying to generate the graph after 25 min with 1 CPU pegged and eating 7 GB of ram18:29
mtreinishI'll probably have to change the graph type or trim the data set a bit, because it's kinda funny how long it's taking18:30
clarkbmtreinish: maybe limit to the last day?18:32
*** otter768 has joined #openstack-infra18:33
mtreinishclarkb: oh, yeah that's a good idea. I actually already have the cli flags for that, but I just need to pass them to the db call18:33
*** melwitt has joined #openstack-infra18:33
greghaynesclarkb: oh, awesome18:34
greghaynesSpamapS: oh!18:34
greghaynesSpamapS: ok, so just gotta make glean support it18:34
greghayneswell, glean and bifrost18:34
* greghaynes will do the glean bit18:34
*** otter768 has quit IRC18:37
*** bapalm has quit IRC18:38
*** ashleighfarnham has quit IRC18:38
yushiroHi openstack-infra team :)  My patch needs one core reviewer: https://review.openstack.org/#/c/206019/  Would you please review it?18:39
greghaynesclarkb: no reason for me not using default port, I was on a plane without internet so couldnt look it up18:39
*** ivar-lazzaro has quit IRC18:44
*** MarkAtwood has joined #openstack-infra18:46
*** bapalm has joined #openstack-infra18:48
*** bapalm has quit IRC18:48
*** yushiro has quit IRC18:50
*** esmute_ has joined #openstack-infra18:50
*** alivigni has quit IRC18:51
EmilienMI have a stupid question: how often are updated dvsm images ? I updated a jenkins slave script and it's still the old one executed in my jobs18:51
*** gyee has joined #openstack-infra18:52
*** rfolco has quit IRC18:53
openstackgerritColleen Murphy proposed openstack-infra/puppet-meetbot: Add Gemfile and puppet 4 checks  https://review.openstack.org/21058318:53
*** sharikapongubala has quit IRC18:54
*** sharikapongubala has joined #openstack-infra18:54
openstackgerritDavid Shrewsbury proposed openstack-infra/shade: Bug fix for obj_to_dict()  https://review.openstack.org/21058518:54
*** yamamoto has joined #openstack-infra18:55
ShrewsSpamapS: mordred: clarkb: ^^^^   easy review for a bad bug18:55
*** radez is now known as radez_g0n318:56
openstackgerritBrandon Leonard proposed openstack-infra/jenkins-job-builder: Adds view functionality  https://review.openstack.org/20617818:59
fungiEmilienM: usually daily. how recently did the change merge>?18:59
EmilienMfungi: last night iirc18:59
EmilienMfungi: so it makes sense18:59
*** nadya has joined #openstack-infra18:59
*** yamahata has quit IRC18:59
*** yamamoto has quit IRC19:00
fungiEmilienM: we start image updates at 14:14 utc daily, though they take some hours to complete19:00
EmilienMok cool, I need to wait then19:00
*** radez_g0n3 is now known as radez19:00
fungichances are if you run now (and if the image updates didn't break) then you should be getting the new version19:00
*** ashleighfarnham has joined #openstack-infra19:00
EmilienMfungi: that means if I submit an urgent fix on jenkins slave scripts, I need to wait such of time?19:00
EmilienMfungi: why not checkouting the repo? (just wonder)19:01
fungiEmilienM: or else one of our root admins has to manually update all the images19:01
fungiEmilienM: it's an optimization so that every job doesn't also have to clone the project-config repo to be able to run19:01
EmilienMfungi: yeah, I understand well it's optim19:02
*** jpeeler has quit IRC19:03
*** nadya has quit IRC19:04
*** tjones has quit IRC19:05
*** jpeeler has joined #openstack-infra19:05
*** jpeeler has quit IRC19:05
*** jpeeler has joined #openstack-infra19:05
*** luqas has joined #openstack-infra19:06
*** tjones has joined #openstack-infra19:07
*** sharikapongubala has quit IRC19:07
*** ivar-lazzaro has joined #openstack-infra19:08
*** BrandonL08 has quit IRC19:10
*** sharikapongubala has joined #openstack-infra19:11
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add new graph type to show run_time variace by metadata  https://review.openstack.org/21056919:11
*** luqas has quit IRC19:11
*** bhunter71 has joined #openstack-infra19:11
mtreinishclarkb: ^^^ so it turns out that plot type is not useful at all for this. I'll need to find something else19:11
*** davideagnello has joined #openstack-infra19:12
*** sharikapongubala has quit IRC19:14
krotscheckCan we use puppet schedules?19:14
*** davideag_ has quit IRC19:15
krotscheckClinteroni?19:15
krotscheckWhooops, wrong channel19:15
mtreinishclarkb: http://blog.kortar.org/wp-content/uploads/2015/08/scater-test.png super useless19:15
mtreinishthats with 1 day, I guess it wasn't what I really thought it was19:16
clarkbmtreinish: you probably want to sort by time then graph best fit over that19:16
clarkbmtreinish: show how severe the variance is?19:16
clarkbbasically visualize the derivative of absolute srather than over time19:16
*** e0ne has joined #openstack-infra19:17
jeblairmtreinish: i feel like the axes could be more legible19:17
*** funzo has joined #openstack-infra19:17
jeblairi hate to nitpick though19:17
jeblairso i mean, i'm down with your artistic vision19:17
openstackgerritDavid Shrewsbury proposed openstack-infra/shade: Add flavor functional tests  https://review.openstack.org/21058919:17
mtreinishjeblair: haha, yeah that would have been the next step if the data it what it was showing was actually useful19:17
mtreinishclarkb: yeah, that's basically what I do for per test run time it works well for that19:18
mtreinishbut I was trying something different19:18
*** Hal has joined #openstack-infra19:19
*** Hal has quit IRC19:20
*** teran has quit IRC19:20
*** funzo has quit IRC19:21
openstackgerritKhai Do proposed openstack-infra/system-config: Setup a private gerrit instance for security reviews  https://review.openstack.org/4793719:22
zarojeblair: ^ just created a new PS on same change.  The previous PS didn't actually require much updates.19:22
*** ivar-lazzaro has quit IRC19:23
*** ivar-lazzaro has joined #openstack-infra19:23
jeblairzaro: awesome!19:24
*** pc_m has quit IRC19:25
*** ihrachyshka has joined #openstack-infra19:26
*** ayoung has quit IRC19:27
openstackgerritMerged openstack-infra/bugdaystats: Prettified all HTML files  https://review.openstack.org/9865319:27
*** tongli has quit IRC19:28
*** yamahata has joined #openstack-infra19:28
fungizaro: great--thanks!19:28
mtreinishclarkb: box and whiskers for attempt 2: http://blog.kortar.org/wp-content/uploads/2015/08/scater-test2.png19:29
mtreinishI just need to figure out how to get it not cut off the job name at the bottom19:29
*** claudiub has quit IRC19:33
*** bpokorny_ has quit IRC19:33
*** alexpilotti has quit IRC19:35
*** esmute_ has quit IRC19:36
mtreinishwow, we have a lot of dsvm tempest job types: http://blog.kortar.org/wp-content/uploads/2015/08/scater-test3.png (that's without filtering to the past 24 hours)19:36
*** tjones has quit IRC19:36
*** ildikov has quit IRC19:37
mtreinishjeblair: I really do suck at making the axes legible19:37
*** bpokorny has joined #openstack-infra19:38
*** claudiub has joined #openstack-infra19:38
openstackgerrityolanda.robla proposed openstack-infra/puppet-gerrit: Move local replication directory and repack to module  https://review.openstack.org/20995419:38
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add new graph type to show run_time variace by metadata  https://review.openstack.org/21056919:39
*** ddieterl_ has joined #openstack-infra19:39
*** ddieterly has quit IRC19:39
*** ayoung has joined #openstack-infra19:40
*** boris-42 has joined #openstack-infra19:40
*** nadya has joined #openstack-infra19:43
mriedemthis is blocked some CI systems https://review.openstack.org/#/c/209797/19:45
mriedem*blocking19:45
mriedemfor some reason anyway, not totally sure why19:46
*** mrunge has quit IRC19:46
*** dannywilson has quit IRC19:47
*** Somay has joined #openstack-infra19:47
*** austin81 has left #openstack-infra19:47
fungimriedem: some of them try to reuse devstack environments19:49
mriedemoh that's fun19:49
*** ParsectiX has joined #openstack-infra19:49
fungiand won't upgrade dependencies unless the packages depending on them declare the previously installed version incompatible19:50
mriedemok, well at least in this case they all found a valid bug19:50
*** notnownikki has quit IRC19:51
fungiyep!19:51
Swansongrenade having issues on kilo?  Getting a the main setup script failed error...19:52
mriedemSwanson: yeah19:52
mriedemERROR: InvocationError: '/opt/stack/new/tempest/.tox/venv/bin/verify-tempest-config -uro19:52
mriedemmtreinish: did you release a thing?19:52
mriedemSwanson: https://bugs.launchpad.net/tempest/+bug/148275819:55
openstackLaunchpad bug 1482758 in tempest "verify-tempest-config fails on kilo" [Undecided,New]19:55
*** salv-orlando has joined #openstack-infra19:55
*** xyang1 has joined #openstack-infra19:55
*** ayoung has quit IRC19:56
*** ildikov has joined #openstack-infra19:57
*** rm_work|away is now known as rm_work19:57
mriedemSwanson: oh i bet there was an oslo release which changed tempest configs on stable or something19:57
dimsum__mriedem: not since monday afternoon19:58
mriedemhrm19:58
mriedemyeah, and tempest doesn't have a kilo branch and no longer checks tempest.conf.sample19:58
*** yolanda has quit IRC19:58
*** yolanda has joined #openstack-infra19:59
mriedemhere we go http://logs.openstack.org/57/210557/1/check/gate-grenade-dsvm/51b2e81/logs/tempest.txt.gz#_2015-08-07_19_16_15_84719:59
mtreinishmriedem: I released subunit2sql yesterday and today, and os-testr today19:59
mtreinishmriedem: on new: http://logs.openstack.org/57/210557/1/check/gate-grenade-dsvm/51b2e81/logs/new/screen-s-proxy.txt.gz20:00
mtreinishthere's your issue20:00
fungijenkins04 is getting pretty bad. i'm putting it into prepare for shutdown and cleaning it up20:00
mriedemmtreinish: that's separatei think20:00
mtreinishmriedem: no, tempest gets a connection refused trying to talk to swift20:01
mriedemmtreinish: that was on https://etherpad.openstack.org/p/stable-tracker yesterday20:01
mtreinishswift never comes up on new20:01
mriedemoh20:01
*** salv-orlando has quit IRC20:01
SwansonThat looks unhappy20:02
mriedemok, and neutronclient did a release on stable this week20:02
mtreinishalthough I'm a bit confused because that verify script should only be running on old20:02
openstackgerritColleen Murphy proposed openstack-infra/puppet-mysql_backup: Add Gemfile and puppet 4 checks  https://review.openstack.org/21059420:04
mriedemthis is what broke things https://github.com/openstack/python-neutronclient/commit/3f03a3bdb87782930eaf236f726f9bed7229e44120:04
mriedemthat's in neutronclient 2.3.1220:05
mriedemreleased on 8/4, logstash shows this start failing after that20:05
mtreinishmestery: ^^^20:05
mriedemdhellmann: ^20:05
*** abregman has joined #openstack-infra20:05
*** chlong has quit IRC20:06
clarkbmtreinish: on the box and whiskers graph what is the y axis? seconds?20:06
mtreinishclarkb: yeah it's sec20:06
clarkbmtreinish: any chance we can get the job names to show up?20:07
mtreinishbut it's a bit misleading because its the sum of all the test run times from the subunit stream for a run20:07
clarkbmtreinish: thats probably decent as devstack time is pretty constant20:07
mtreinishclarkb: on the filtered one, yeah there should be I just need to learn the matplotlib foo the extend it20:07
clarkb(not that we can't make devstack go faster too, just a differnet problem)20:08
clarkblooks like the dvr job is the worst20:08
*** achanda has quit IRC20:08
*** ayoung has joined #openstack-infra20:08
clarkbwith regular neutron not far behind20:08
clarkband ceph does well compared to non ceph20:09
*** gordc has quit IRC20:09
*** salv-orlando has joined #openstack-infra20:09
*** sharikapongubala has joined #openstack-infra20:10
fungimrmartin: i've completed a dry-run of the import on the new ask server and made some corrections to https://etherpad.openstack.org/p/askbot-trusty-migration20:12
mrmartinfungi: great, we have some content now20:13
mtreinishclarkb: ceph might run less tests, I'd have to check the config20:13
*** ayoung has quit IRC20:13
mtreinishbut I remember there were driver bugs20:13
fungimrmartin: it's basically cut-n-paste ready now. i'm confident we can keep the outage to roughly an hour unless something goes terribly wrong20:13
mtreinishclarkb: http://blog.kortar.org/wp-content/uploads/2015/08/scater-test4.png20:14
mtreinishthat has the legend fixed20:14
mrmartinfungi: the logo seems to be missing, do we have the recovered upfiles directory on his place?20:14
mtreinishbut it kinda makes the plot look tiny20:14
*** MarkAtwood has quit IRC20:14
openstackgerritMatt Riedemann proposed openstack-infra/elastic-recheck: Add query for juno side of grenade failing bug 1482758  https://review.openstack.org/21059620:15
openstackbug 1482758 in tempest "verify-tempest-config fails on kilo (python-neutronclient 2.3.12 caps for juno)" [High,Confirmed] https://launchpad.net/bugs/148275820:15
fungimrmartin: yes, i extracted the old server's upfiles into /srv/askbot-site/upfiles20:15
*** monester has joined #openstack-infra20:15
fungimrmartin: what's the specific file it's not displaying?20:15
*** abregman has quit IRC20:15
fungimrmartin: does jetty need a restart too after that, or just askbot-celeryd and apache2?20:15
mrmartinI don't think it is related, jetty is handling the solr server only20:16
fungik20:16
*** Guest81486 is now known as jgriffith20:16
mrmartinwe have this line in html: <img src="None" alt="Ask OpenStack logo">20:16
mrmartinso it is not too informative20:17
openstackgerritMatthew Treinish proposed openstack-infra/subunit2sql: Add new graph type to show run_time variace by metadata  https://review.openstack.org/21056920:17
fungimrmartin: i see /srv/askbot-site/upfiles/open-stack-cloud-computing-logo-2.png present on the server20:19
mtreinishclarkb: but yeah that clearly shows that neutron is slower in general (or at least since midnight)20:19
mrmartinfungi: do we have proper www access permissions on upfiles directory? It seems to be that settings.py have a typo in media root20:19
mrmartinI'm doing the patch.20:20
fungimrmartin: yeah, users in the www-data group can read and write the files in that directory20:21
fungias can the www-data user20:21
*** rlandy has quit IRC20:21
openstackgerritMarton Kiss proposed openstack-infra/puppet-askbot: Fix askbot upfiles directory typo  https://review.openstack.org/21059720:22
mrmartinfungi ^^^ the fix is there20:22
*** rlandy has joined #openstack-infra20:22
*** isviridov_away is now known as isviridov20:23
fungimrmartin: yep, that typo was also in part of the plan in the etherpad (since fixed)20:23
fungii wonder why it didn't show up on the staging server20:23
mrmartinbecause I not restored the upfiles.20:25
mrmartinit was missing from initial backup, then the task is lost in the matrix somewhere ;)20:25
*** abregman has joined #openstack-infra20:27
*** isviridov is now known as isviridov_away20:27
*** xyang has quit IRC20:28
fungiheh20:28
openstackgerritPaul Belanger proposed openstack-infra/puppet-jenkins: Require ssh_key, username, password and url  https://review.openstack.org/20960720:31
*** monester has quit IRC20:32
*** otter768 has joined #openstack-infra20:33
*** amitgandhinz has quit IRC20:34
*** kgiusti has left #openstack-infra20:34
*** zul has joined #openstack-infra20:36
openstackgerritDavid Shrewsbury proposed openstack-infra/shade: Add flavor functional tests  https://review.openstack.org/21058920:37
*** amitgandhinz has joined #openstack-infra20:38
*** otter768 has quit IRC20:38
openstackgerritPaul Belanger proposed openstack-infra/puppet-jenkins: Add Gemfile and puppet 4 checks  https://review.openstack.org/20316420:41
openstackgerritPaul Belanger proposed openstack-infra/puppet-jenkins: Gate on puppet-lint-version_comparison-check  https://review.openstack.org/20288420:43
fungiokay, jenkins04 is cleaned up and back online now20:43
krotscheckfungi: Does this seem sane? http://paste.openstack.org/show/412230/20:44
fungikrotscheck: oh, neat. i didn't know about schedule resources20:45
krotscheckfungi: Yeah, I figured that running an NPM cache update every 15 minutes might not be a good idea.20:45
fungikrotscheck: does it seem to be working in your testbed?20:46
krotscheckI also don't know if that's a thing that's in our puppet version, but it ran fine on trusty20:46
krotscheckfungi: Yes... insofar as it doesn't run every time, but the schedule's a little ahrd to test.20:46
* krotscheck could wake up at midnight and doublecheck :D20:47
fungikrotscheck: well, more to the point you got latest npm that way and it didn't throw any errors?20:47
openstackgerritMerged openstack-infra/elastic-recheck: Add query for juno side of grenade failing bug 1482758  https://review.openstack.org/21059620:47
krotscheckfungi: I got "Most recent NPM that run s on the installed version of node", which is recent enough.20:47
openstackbug 1482758 in python-neutronclient "grenade: swift-proxy-server fails to start in juno due to python-neutronclient 2.3.12 caps" [Critical,Confirmed] https://launchpad.net/bugs/148275820:47
*** funzo has joined #openstack-infra20:47
krotscheckSo yes.20:47
krotscheckIt ran20:47
fungikrotscheck: wfm then20:48
krotscheckAlllrightey20:48
* krotscheck goes and updates the release slave.20:48
*** e0ne has quit IRC20:49
*** sdake_ is now known as sdake20:52
*** funzo has quit IRC20:52
*** ivar-lazzaro has quit IRC20:53
openstackgerritMichael Krotscheck proposed openstack-infra/system-config: Keep npm up-to-date.  https://review.openstack.org/21060120:53
*** tiswanso has quit IRC20:54
akraminsky_clarkb, I verified that the gate64 model is being added to the cpu_map.xml file with the features being identical on both the host node and subnode, but don't seem to understand why it's still giving me this error "Host CPU does not provide required features: ssse3, vme"20:55
akraminsky_both features seem to be included in the gate64 model20:56
clarkbakraminsky_: you have to tell nova to use that model20:57
*** ddieterl_ has quit IRC20:58
akraminsky_clarkb, oh can you give me some hints on how to do that? :)20:59
clarkbakraminsky_: https://git.openstack.org/cgit/openstack-infra/devstack-gate/tree/devstack-vm-gate.sh#n57021:00
*** salv-orlando has quit IRC21:00
*** lascii is now known as alaski21:02
*** ayoung has joined #openstack-infra21:04
clarkbgreghaynes: btw the nodepool patch to run geard passes now21:07
greghaynesclarkb: \O/21:07
clarkbgreghaynes: do you need to rebase your change on it?21:07
greghaynesyes21:09
openstackgerritMerged openstack-infra/puppet-askbot: Fix askbot upfiles directory typo  https://review.openstack.org/21059721:09
mriedemSwanson: well i've figured out the problem for stable/kilo21:09
mriedemand it's awesome21:09
mriedemneutronclient 2.3.12 has caps for juno21:09
*** amitgandhinz has quit IRC21:09
mriedemg-r for kilo allows neutronclient 2.3.1221:09
*** achanda has joined #openstack-infra21:10
openstackgerritMichael Krotscheck proposed openstack-infra/system-config: Keep npm up-to-date.  https://review.openstack.org/21060121:10
mriedembut kilo has it's own caps21:10
mriedemkaboom!21:10
*** ayoung has quit IRC21:10
krotscheckLeeeeets try that one.21:11
openstackgerritSteve Leon proposed openstack-infra/project-config: Adding python3 check gate as no voting for cue  https://review.openstack.org/21060521:12
*** aysyd has quit IRC21:12
*** ayoung has joined #openstack-infra21:13
fungimrmartin: that typo fix is applied on the replacement ask server now21:14
mrmartinI see no difference, can you do an apache restart?21:15
fungimrmartin: done. any better?21:15
*** ldnunes has quit IRC21:15
mrmartinok, it is perfect now21:15
fungigreat!21:16
fungiseems like we're probably all set to schedule the migration unless you spot anything else odd21:16
mrmartinI guess I need to add a settings.py notification to restart apache on change.21:16
fungigood idea21:16
mrmartinbut it is a minor thing, seems good to me. anyway, let's ask reed to do a final review21:17
*** ParsectiX has quit IRC21:17
mrmartinand if it seems ok, we can go on with final migration on Monday or Tuesday21:17
*** gyee has quit IRC21:18
stevemardhellmann: ping21:19
*** ParsectiX has joined #openstack-infra21:19
*** ayoung has quit IRC21:21
*** nadya has quit IRC21:21
*** tsg has joined #openstack-infra21:21
*** mriedem has quit IRC21:24
*** palendae has joined #openstack-infra21:26
*** bhuvan has quit IRC21:26
palendaeHi, can anyone point me to some documentation or an example of a 'simple job' definition in the project-config directory?21:27
*** mrmartin has quit IRC21:27
*** markvoelker has quit IRC21:28
openstackgerritKhai Do proposed openstack-infra/system-config: Setup a private gerrit instance for security reviews  https://review.openstack.org/4793721:28
odyssey4mepalendae you took the words out of my mouth :p21:31
*** baoli has quit IRC21:31
EmilienMfungi: can you open https://review.openstack.org/#/c/209296/ ? I see some Gerrit weird things happening21:32
odyssey4mefungi clarkb we're working on https://review.openstack.org/210498 and Andreas has put the option there of using a 'simple job' instead of a macro... we simply want to run a script in the repo but I can't find a non-macro example to work from here - thoughts?21:32
*** teran has joined #openstack-infra21:35
Swansonmriedem: So, not a quick one?21:36
*** abregman has quit IRC21:43
clarkbhttps://git.openstack.org/cgit/openstack-infra/project-config/tree/jenkins/jobs/misc.yaml#n1 is about as simple as it gets21:46
*** abregman has joined #openstack-infra21:46
EmilienMclarkb: can you open https://review.openstack.org/#/c/209296/ ?21:46
clarkbyes?21:48
*** patrickeast has joined #openstack-infra21:48
EmilienMclarkb: damn21:49
EmilienMclarkb: "The page you requested was not found, or you do not have permission to view this page."21:50
EmilienMclarkb: I restarted by browser, etc21:50
*** tjones has joined #openstack-infra21:50
clarkbit defaults to ps3 open not ps4 so it maybe unhappy somehow21:50
*** sdake_ has joined #openstack-infra21:51
*** salv-orlando has joined #openstack-infra21:52
EmilienMclarkb: what is ps3/ps4 ?21:52
*** mriedem has joined #openstack-infra21:54
*** sdake has quit IRC21:55
openstackgerritMichael Krotscheck proposed openstack-infra/system-config: Keep npm up-to-date.  https://review.openstack.org/21060121:57
*** salv-orlando has quit IRC22:02
*** rlandy has quit IRC22:03
*** sridhar_ram has joined #openstack-infra22:04
*** abregman is now known as abregman_|brb22:05
sdake_clarkb do you know whenthe next scheduled move process is?22:06
krotscheckEmilienM: They're gaming consoles published by sony #notbeinghelpful22:06
sdake_or anyone else for that matter22:06
clarkbsdake_ we dont have one scheduled22:06
clarkbpatchset 3 and 422:06
sdake_will it be before liberty 3?22:06
sdake_we have a bunch of people for kolla that will become atcs as a esult and would like a gratis summit pass22:07
clarkbsdake we havent scheduled one so who knoes22:07
*** notnownikki has joined #openstack-infra22:07
sdake_i just want to make sure they dont get left out on the atc passes22:07
sdake_perhaps there is a different way to solve that ;)22:07
clarkbits based on governance repo too not gerrit org iurc22:07
clarkbso moce has nothibg to do with it22:07
sdake_oh didn't know that22:07
clarkbbut fungi can confir.22:07
sdake_all good then22:07
*** thorst has quit IRC22:08
clarkbhave fungi confirm but I am pretty sure its set up that way22:08
*** woodster_ has joined #openstack-infra22:08
*** notnownikki has quit IRC22:10
sdake_clarkb thanks22:12
sdake_fungi can you confirm if your around?22:12
*** tjones has quit IRC22:13
*** ddieterly has joined #openstack-infra22:16
*** MarkAtwood has joined #openstack-infra22:18
*** dims_ has joined #openstack-infra22:18
*** nikhil_k has quit IRC22:19
*** jamespage_ has joined #openstack-infra22:19
*** nikhil_k has joined #openstack-infra22:20
*** luqas has joined #openstack-infra22:20
*** tjones has joined #openstack-infra22:21
*** bhuvan has joined #openstack-infra22:22
*** dimsum__ has quit IRC22:22
krotscheckIs there a naming convention for jobs explicitly meant for different queues? i.e. a job that happens on release tag, a job that happens to push a release tag to a package site....22:22
krotscheckI know there's "gate-{name}22:22
krotscheckAnd check-{name}22:22
krotscheckis there release-{name}? grep failed to find it.22:23
jesusauruskrotscheck: I've seen post- jobs but can't think of any release- jobs22:23
krotscheckjesusaurus: So, post would be post merge, but not necessarily rlease?22:24
*** stevemar has quit IRC22:24
sridhar_ramFolks - how to enable a project to list in http://eavesdrop.openstack.org/irclogs/ ?22:25
*** luqas has quit IRC22:25
*** bhuvan has quit IRC22:27
*** markvoelker has joined #openstack-infra22:28
*** dkalleg has left #openstack-infra22:29
*** tsekiyama has quit IRC22:30
*** bswartz has joined #openstack-infra22:30
*** r-daneel has quit IRC22:31
*** bpokorny_ has joined #openstack-infra22:31
*** mtanino has quit IRC22:31
*** tsekiyama has joined #openstack-infra22:33
*** claudiub has quit IRC22:33
*** markvoelker has quit IRC22:33
*** funzo has joined #openstack-infra22:33
*** pabelanger has quit IRC22:33
*** bpokorny has quit IRC22:34
*** otter768 has joined #openstack-infra22:34
*** pabelanger has joined #openstack-infra22:35
*** radez is now known as radez_g0n322:36
*** luqas has joined #openstack-infra22:36
*** davideagnello has quit IRC22:37
*** davideagnello has joined #openstack-infra22:37
jesusauruskrotscheck: yeah, a cursory glance through zuul's layout.yaml makes it look like most of the release jobs don't have a prefix22:37
*** funzo has quit IRC22:38
*** tjones has quit IRC22:39
*** otter768 has quit IRC22:39
*** larainema has quit IRC22:40
*** dangers` has joined #openstack-infra22:41
*** larainema has joined #openstack-infra22:41
*** madhu_ak has joined #openstack-infra22:41
*** luqas has quit IRC22:41
*** ihrachyshka has quit IRC22:42
*** tobiash_ has joined #openstack-infra22:42
*** ashleigh_ has joined #openstack-infra22:42
*** minwang2 has joined #openstack-infra22:42
*** bswartz has quit IRC22:44
*** salv-orlando has joined #openstack-infra22:44
*** docaedo_ has joined #openstack-infra22:45
*** bradm_ has joined #openstack-infra22:46
fungisdake_: clarkb: yes, it has everything to do with repos being listed (correctly, not predictively) in the governance repo22:46
*** irdkehn_ has joined #openstack-infra22:46
fungiso if it's called stackforge/foo and your tc-recognized project team has stackforge/foo listed in the governance repo in a deliverable it will count. if it's stackforge/foo in gerrit and the governance repo has it listed as openstack/foo because you're expecting it to eventually be correct after the repo is renamed, that won't help22:48
*** ashleighfarnham has quit IRC22:49
*** rguillebert has quit IRC22:49
*** bcourt has quit IRC22:49
*** cburroughs has quit IRC22:49
*** zul has quit IRC22:49
*** yolanda has quit IRC22:49
*** b10n1k has quit IRC22:49
*** dangers has quit IRC22:49
*** dkranz has quit IRC22:49
*** mwagner_lap has quit IRC22:49
*** irdkehn has quit IRC22:49
*** bradjones has quit IRC22:49
*** tobiash has quit IRC22:49
*** bradm has quit IRC22:49
*** changbl has quit IRC22:49
*** docaedo has quit IRC22:49
*** skraynev has quit IRC22:49
*** mtanino has joined #openstack-infra22:49
*** r1chardj0n3s has joined #openstack-infra22:51
*** crc32 has quit IRC22:51
jeblairkrotscheck: generally no prefix there.  we have 'foo-tarball' and 'foo-pypi-upload' for instance.22:51
*** mwagner_lap has joined #openstack-infra22:51
*** skraynev has joined #openstack-infra22:52
*** r1chardj0n3s has left #openstack-infra22:52
*** b10n1k has joined #openstack-infra22:53
*** dkranz has joined #openstack-infra22:53
sdake_fungi thanks so in kolla's case we have openstack/kolla for atcs, should I submit a governance repo change to change it to stackforge until the rename happens?22:54
sdake_fungi our repo is still in stackforge because no rename has been done22:54
*** zul has joined #openstack-infra22:54
sdake_fungi do you have any idea when the l3 atc passes will be sent out?22:55
*** luqas has joined #openstack-infra22:55
sdake_perhaps clarkb would be up for a rename prior to this deadline change :)22:55
*** bradjones has joined #openstack-infra22:55
*** bradjones has quit IRC22:55
*** bradjones has joined #openstack-infra22:55
sdake_rather this deadline22:56
sdake_rather this deadline22:56
sdake_sorry for double post22:56
sdake_client error22:56
*** changbl has joined #openstack-infra22:56
*** yolanda has joined #openstack-infra22:56
*** claudiub has joined #openstack-infra22:56
*** luqas__ has joined #openstack-infra22:56
*** luqas has quit IRC22:56
*** patrickeast has quit IRC22:57
*** salv-orl_ has joined #openstack-infra22:57
*** ivar-lazzaro has joined #openstack-infra22:58
*** salv-orlando has quit IRC22:59
sdake_fungi followup question, does the governance repo require any special tag to obtain the atc passes, or are all projects in the governance repo eligible?23:00
*** bcourt has joined #openstack-infra23:00
*** bcourt has joined #openstack-infra23:00
*** luqas__ has quit IRC23:01
*** cburroughs has joined #openstack-infra23:01
*** rguillebert has joined #openstack-infra23:01
*** dimtruck is now known as zz_dimtruck23:03
krotscheckalright, I'll go with that then.23:04
sdake_fungi i'm going to hit the mailing list with your quote - hope your ameiable to that, i think this affects alot of projects besides kolla23:04
sdake_fungi if you prefer a different approach let me know before i shoot off the email23:04
sdake_and submit a governance repo change for the repo name23:06
*** luqas has joined #openstack-infra23:07
*** luqas has quit IRC23:09
*** alexsyip has quit IRC23:11
*** otter768 has joined #openstack-infra23:11
*** luqas has joined #openstack-infra23:11
*** luqas has quit IRC23:13
*** luqas has joined #openstack-infra23:14
*** dangers` is now known as dangers_away23:17
*** luqas has quit IRC23:17
*** salv-orl_ has quit IRC23:17
*** sdake_ is now known as sdake23:19
*** salv-orlando has joined #openstack-infra23:19
*** luqas has joined #openstack-infra23:21
*** barnaby has joined #openstack-infra23:21
*** bcourt has quit IRC23:22
*** mwagner_lap has quit IRC23:22
*** bhuvan has joined #openstack-infra23:23
*** luqas has quit IRC23:25
*** kevinbenton has quit IRC23:25
*** kevinbenton has joined #openstack-infra23:27
*** SumitNaiksatam has quit IRC23:27
*** salv-orlando has quit IRC23:28
*** bhuvan has quit IRC23:28
*** salv-orlando has joined #openstack-infra23:28
*** bpokorny_ has quit IRC23:31
*** docaedo_ is now known as docaedo23:34
openstackgerritJames E. Blair proposed openstack-infra/infra-manual: Add section on retiring a project  https://review.openstack.org/21063823:35
openstackgerritJames E. Blair proposed openstack-infra/infra-manual: Add section on retiring a project  https://review.openstack.org/21063823:38
fungisdake: sorry, in and out. it's evening here and i'm moving my stuff between homes in my spare time... i'm sending at least a couple more batches of codes out before the rates go up on september 1. there should be a set going out early next week23:39
*** skylerberg has quit IRC23:39
sdakefungi cool i fired off an email23:39
sdakefungi so others are aware of this problem23:39
fungisdake: and yes, i can manually error-correct the discrepancy between the governance repo and our infrastructure. i'll try to remember23:40
sdakewell i just asked the tc to change our repo temporarily23:40
sdakebut ya manual correction would rock ;)23:40
sdakethere are only a few projects thatneed rename atm23:40
sdakebut there may be many without correct repos ;-)23:40
fungisdake: since our repo names are (in theory at least) globally unique across all namespaces, i'll see about tweaking the script to just ignore namespaces23:41
sdakecool - i tagged my mail [tc][ptl] iirc23:41
sdakeif thats the solution, that would be easiest for everyone23:41
sdakethen i dont have to revert this change and  the tc doesn't have to approve a change and a revert23:41
sdakeyou can leave a comment in https://review.openstack.org/#/c/210636/ if you like23:42
fungii'll see if i can hack on it a bit from bed this evening23:42
*** SamYaple has joined #openstack-infra23:43
sdakefungi one problem i'd like to point out with the hacking the script thing is OSAD actually didn't just change their top level project, but also their repository names23:44
sdakeso that will require manual intervention if their to get a fair shake23:44
* fungi has no idea what/who an osad is23:44
sdakeAnsibleDeploy23:44
sdakein stackforge is something like os-ansible-deploy23:44
*** ajmiller has quit IRC23:45
sdakeso they renamed from stackforge/os-ansible-deploy to openstack/AnsibleDeploy23:45
fungioh, yeah i'm not sure i can automatically detect things like that23:45
sdake(dont quot eme on the exact things, its in the governance repo exactly)23:45
sdakeya no way to detect that automatically23:45
sdakeone thing that may help if you do a manual process is to look at the rename list23:45
sdakejust trying to help not make your life harder ;)23:46
sdakejust want fairness for every atc :)23:46
fungii mean, i'm using the same script we also use to determine who gets to vote in technical elections, so it's in everyone's best interests to have what's in governance match what's in our infrastructure23:46
clarkband the same script for at least several summits23:46
clarkband its in openstack-infra/system-config/tools ya? so anyon ecan fix23:47
sdakefungi https://wiki.openstack.org/wiki/Meetings/InfraTeamMeeting#Upcoming_Project_Renames23:47
fungiyep23:47
sdakefungi roger that, its not justabout atc passes then23:47
clarkb(and tecnically we don't give atc passes)23:48
sdakethe big tent is sort of new though so this may not be widely understood by the community23:48
fungisdake: cool, i know it's hard to sync up when infra's available to do project renames and when the tc approves bookkeeping administrivia so they won't always be precisely in lock-step. hopefully getting rid of the stackforge namespace will help a lot of this23:48
clarkb(we give some subset of atc passes that have contributed in the last cycle not the last two)23:48
sdakeclarkb could you expand?23:48
clarkbsdake: atc is not suffiicent23:48
openstackgerritJames E. Blair proposed openstack-infra/infra-manual: Move some content to HOWTOs  https://review.openstack.org/21064023:49
fungisdake: the criteria for discount passes is not exactly the criteria for voting in technical elections23:49
sdakefungi oh right you mean the 6 month vs 12 month window23:49
jeblairfungi: ^ small infra-manual reorg we've both mumbled about in the past :)23:49
fungisdake: which contributors get complimentary discount registration codes is decided by the event organizers, whreas who gets to vote in technical elections ("atc") is defined in our bylaws23:50
*** markstur has quit IRC23:50
sdakefungi oh I wasn't aware of that, I thought it was all committers23:50
fungisdake: at the moment yeah it's anyone who is an atc with a commit merged since kilo release day (april 30) but the criteria could change over time depending on a variety of factors23:51
sdakeright it not set in stone got it :)23:51
sdakei recall it used to be 1 year as well and has changed to just the last cycle23:51
fungii mean, the bylaws aren't set in stone either, but it takes rather a lot more effort to change them, whereas who gets discount codes is fairly malleable23:52
sdakecool23:52
sdakebut if anyone that contributes to nova gets a pass because their namespace is stable, whereas in kolla they dont because our namespace is in flux, not toally fair :)23:53
fungiand yeah, it's still looking like ~2000 complimentary discount codes going out to contributors for tokyo. we keep growing openstack rather rapidly23:53
* SamYaple already got his23:53
clarkbsdake: I think we hvae established namespace shouldn't be an issue for this as fungi can drop that part of the comparison23:53
sdakefungi cool its nobodies fault - its just how hte system works23:54
*** tsekiyam_ has joined #openstack-infra23:54
clarkbsdake: that leaves us just with things that are actually renaming which I am a bit more meh on (so many renames why cant we just pick names that work)23:54
sdakei'm just trying to look out for the kolla committers who under the current system should get a complimentary pass23:54
fungiright. projects like os-ansible-deployment will be a little more touchy to work around but i'll try to keep an eye on things with renames proposed23:54
clarkbput another way tracking renames like that is much harder and while it may no tbe fair its also impossible to assert it will be done perfectly23:55
sdakeclarkb agree its imposibble to make perfect23:56
clarkb(because we do so many renames keeping track is too hard)23:56
*** mtanino has quit IRC23:56
* fungi would like to do a lot fewer renames23:56
sdakei think the stackforge depreation will make that easier23:56
fungime too23:56
sdakeI don't speculate there are many project renames in general except for big tent23:56
*** tsekiyama has quit IRC23:57
sdakeI could be wron tho, I have no data :)23:57
*** tsekiyam_ has quit IRC23:58
*** ParsectiX has quit IRC23:58
*** salv-orlando has quit IRC23:59
fungiat least as of when my local copy of the project list updated this morning, it was 337 stackforge.* repos vs 414 openstack.* repos23:59
fungi751 repos total in our gerrit23:59
*** markvoelker has joined #openstack-infra23:59

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!