*** ijw has quit IRC | 00:03 | |
*** gyee has quit IRC | 00:06 | |
*** rbuzatu has joined #openstack-infra | 00:06 | |
*** tphummel has quit IRC | 00:08 | |
*** tphummel has joined #openstack-infra | 00:09 | |
*** ijw has joined #openstack-infra | 00:09 | |
*** yamamoto_ has joined #openstack-infra | 00:09 | |
openstackgerrit | Ian Wienand proposed openstack-infra/nodepool: Handle exception from image upload https://review.openstack.org/396441 | 00:10 |
---|---|---|
openstackgerrit | Ian Wienand proposed openstack-infra/nodepool: Separate image upload logs into separate logger https://review.openstack.org/396442 | 00:10 |
*** wolverineav has joined #openstack-infra | 00:10 | |
*** wolverineav has quit IRC | 00:10 | |
ianw | jeblair: not 100% sure about 396441 ; might be misunderstanding the exception path with zk | 00:11 |
*** Sukhdev has joined #openstack-infra | 00:11 | |
*** chlong has joined #openstack-infra | 00:12 | |
clarkb | mordred: we are still uploading images :/ I think letting these image uplaods happen is important though as we haven't had reliable uploads for a bit | 00:13 |
clarkb | mordred: maybe tomorrow we do the restart and let tomorrows uploads die? | 00:13 |
persia | For historical interest, the DC power grid in manhattan was decommissioned in 2007, when the MId-Manhattan Library switched to AC. | 00:14 |
clarkb | persia: ah ok so almost 10 yaers ago but more recently than one might expect | 00:15 |
persia | On municipal scales, a relatively short project. It only took 79 years from the first funding to shut down DC until completion. Contrast Basílica i Temple Expiatori de la Sagrada Família. | 00:16 |
jeblair | persia: and re-commissioned in 2024 when home energy AC->DC conversion reached 10% of all energy output.... :) | 00:16 |
ianw | persia / clarkb: excellent book on such things -> https://www.amazon.com/Empires-Light-Edison-Westinghouse-Electrify/dp/0375758844 | 00:17 |
ianw | the ac/dc wars | 00:17 |
persia | jeblair: heh, but it's a transmission distance problem. Lots of buildings in Manhattan are still DC internally, with a massive power converter in the utility room. | 00:17 |
persia | My favourite thing about the ac/dc wars was the competitive demonstrations of capital punishment as arguments against (i.e. Edison pioneered AC for capital punishment) | 00:18 |
jeblair | indeed, really only barely conceivable at density, and apparently not really even then | 00:18 |
fungi | tesla had it right. wirelessly transmit ac through the ground ;) | 00:19 |
persia | jeblair: Depends on the density. Consider OCP | 00:19 |
jeblair | right, just, apparently, not quite manhattan density | 00:19 |
*** ijw has quit IRC | 00:19 | |
clarkb | fungi: doesn't new zealand do that? | 00:19 |
clarkb | fungi: they have some fancy power setup between the islands iirc and I want to say it is wireless | 00:20 |
clarkb | but maybe I read too much scifi | 00:20 |
jeblair | ianw: i don't think manager.uploadImage can produce a BuilderError | 00:20 |
persia | There's lots of microwave beamed power to various islands around the globe | 00:20 |
fungi | dunno. i _do_ know there were unfortunate side effects when he was first trying it (like townsfolk reporting static arcing to their feet more than a mile away) | 00:20 |
jeblair | ianw: i think you just want a plain old "except Exception" there | 00:21 |
*** rbuzatu has quit IRC | 00:21 | |
clarkb | https://en.wikipedia.org/wiki/HVDC_Inter-Island nope its undersea cable | 00:22 |
clarkb | clearly I read too much scifi | 00:22 |
persia | clarkb: e.g. https://web.archive.org/web/20051023080942/http://www2.univ-reunion.fr/~lcks/Old_Version/PubIAF97.htm | 00:23 |
*** rbuzatu has joined #openstack-infra | 00:23 | |
*** Julien-zte has joined #openstack-infra | 00:23 | |
ianw | jeblair: ahh, yes ok. but you'd agree self._uploadImage exception should be caught? | 00:24 |
jeblair | ianw: yeah, i think that would be necessary if you want to generally get upload-related exceptions (ie, those from shade) into that log. | 00:25 |
jeblair | ianw: one other option might be.... | 00:25 |
jeblair | ianw: to get the logger in the calling function, and pass it in to _uploadImage. then you would have the logger available to use in the exception handler already in the calling func. | 00:26 |
*** Julien-zte has quit IRC | 00:26 | |
*** Julien-zte has joined #openstack-infra | 00:26 | |
ianw | jeblair: ok, so https://review.openstack.org/#/c/396441/1/nodepool/builder.py still needs to catch bare exception right? otherwise it's got an invalid "data" arg? | 00:27 |
jeblair | ianw: (you might still want to log to both loggers in that exception handler though, so that the "main" log still has all the exceptions) | 00:27 |
*** gmann has joined #openstack-infra | 00:27 | |
jeblair | ianw: not sure which thing you're referencing | 00:29 |
openstackgerrit | James E. Blair proposed openstack-infra/nodepool: Re-enable test_image_list_empty https://review.openstack.org/396449 | 00:29 |
*** Julien-zte has quit IRC | 00:29 | |
ianw | jeblair: thish change -> https://review.openstack.org/#/c/396441/1/nodepool/builder.py , modulo making that just "exception Exception:" | 00:30 |
*** ijw has joined #openstack-infra | 00:31 | |
*** Julien-zte has joined #openstack-infra | 00:31 | |
*** pvaneck has quit IRC | 00:31 | |
jeblair | ianw: no, other exceptions remain uncaught, so that proceeds up | 00:32 |
*** kaisers has quit IRC | 00:33 | |
ianw | jeblair: ahh, yeah, ok | 00:34 |
jeblair | ianw: if you wanted to go with the 'get a logger and pass it in' approach, the minimal change there would be to add an "except Exception: log; raise" block. | 00:34 |
*** kaisers has joined #openstack-infra | 00:34 | |
*** hongbin has quit IRC | 00:34 | |
*** psilvad has joined #openstack-infra | 00:35 | |
openstackgerrit | Ian Wienand proposed openstack-infra/nodepool: Separate image upload logs into separate logger https://review.openstack.org/396442 | 00:35 |
ianw | jeblair: ok, i think that's the minimal port ^ | 00:36 |
ianw | if you feel strongly about passing logger in, i can | 00:36 |
*** sdake has joined #openstack-infra | 00:36 | |
AJaeger_ | team, zago has a change up to rename tox to run-tox as macro - do we want this? https://review.openstack.org/#/c/393927/ | 00:37 |
armax | clarkb: any reason you might be aware of why neutron unit tests jobs have not switched to xenial yet (34 and 35 I mean)? | 00:38 |
*** wolverineav has joined #openstack-infra | 00:39 | |
*** kzaitsev_mb has joined #openstack-infra | 00:39 | |
openstackgerrit | xiaodongwang991481 proposed openstack-infra/project-config: Add networking-sfc functional and tempest test to gating https://review.openstack.org/396437 | 00:40 |
*** yamamoto_ has quit IRC | 00:40 | |
*** ijw has quit IRC | 00:41 | |
*** ijw has joined #openstack-infra | 00:41 | |
AJaeger_ | armax: go for it, please;) | 00:42 |
armax | AJaeger_: ack | 00:42 |
AJaeger_ | it's a lot to update all of them ;) | 00:42 |
armax | AJaeger_: ok great, if overload is all there is to it, happy to help | 00:43 |
openstackgerrit | Armando Migliaccio proposed openstack-infra/project-config: Move gate-neutron-dsvm-api-ubuntu-xenial to check/gate queue https://review.openstack.org/396450 | 00:43 |
armax | AJaeger_: as for this ^ I expect the right job gets picked up depending on the branch, correct? | 00:43 |
*** wolverineav has quit IRC | 00:44 | |
*** jamielennox is now known as jamielennox|away | 00:44 | |
*** thcipriani is now known as thcipriani|afk | 00:44 | |
*** ijw has quit IRC | 00:45 | |
openstackgerrit | Gabriele Cerami proposed openstack-infra/tripleo-ci: POC: Initial transition to quickstart setup https://review.openstack.org/396451 | 00:45 |
AJaeger_ | armax: I hope it's only overloaded - but clarkb neds to answer that | 00:46 |
* AJaeger_ checks | 00:46 | |
*** ijw has joined #openstack-infra | 00:47 | |
AJaeger_ | armax: the xenial job will run on newton and master | 00:47 |
openstackgerrit | Merged openstack-infra/project-config: Add branch-tarball post job in murano dashboard https://review.openstack.org/396291 | 00:47 |
*** Shuo has quit IRC | 00:47 | |
clarkb | armax: 34 is on trusty because that is where 34 is found. 35 is always on xenial because that is where 35 is found | 00:47 |
*** ssbarnea has quit IRC | 00:48 | |
armax | clarkb: ok, so there’s nothing to do for those I suppose | 00:48 |
*** gildub_ has quit IRC | 00:49 | |
*** walharthi has joined #openstack-infra | 00:49 | |
*** ijw has quit IRC | 00:50 | |
armax | AJaeger_: I only wonder if we want to take newton how of this regex: https://github.com/openstack-infra/project-config/blob/master/zuul/layout.yaml#L2922 | 00:51 |
*** aeng has quit IRC | 00:52 | |
armax | AJaeger_: unless we want to test on both xenial and trusty for newton | 00:52 |
openstackgerrit | Bruno Cornec proposed openstack-infra/project-config: New project proposal: python-redfish https://review.openstack.org/391593 | 00:54 |
AJaeger_ | armax: best ask clarkb since he wrote that note - but removing newton seems the right step forward | 00:56 |
armax | AJaeger_: ack | 00:57 |
*** hurgleburgler has quit IRC | 00:57 | |
*** ijw has joined #openstack-infra | 00:58 | |
*** wolverineav has joined #openstack-infra | 00:59 | |
*** ijw has quit IRC | 01:01 | |
*** asselin has joined #openstack-infra | 01:02 | |
*** gmann has quit IRC | 01:03 | |
*** gmann_ has joined #openstack-infra | 01:03 | |
*** wolverineav has quit IRC | 01:03 | |
*** ijw has joined #openstack-infra | 01:04 | |
*** walharthi has quit IRC | 01:04 | |
*** walharthi has joined #openstack-infra | 01:05 | |
*** hurgleburgler has joined #openstack-infra | 01:05 | |
*** rbuzatu has quit IRC | 01:05 | |
*** ijw has quit IRC | 01:06 | |
*** sdake has quit IRC | 01:07 | |
*** psilvad has quit IRC | 01:08 | |
*** kzaitsev_mb has quit IRC | 01:08 | |
openstackgerrit | John Dickinson proposed openstack-infra/project-config: enable xfs for swift in-process functests https://review.openstack.org/394600 | 01:13 |
*** adrian_otto has joined #openstack-infra | 01:13 | |
openstackgerrit | John Dickinson proposed openstack-infra/project-config: add python-jobs-with-xfs for swift https://review.openstack.org/394601 | 01:18 |
notmyname | fungi: mordred: those should be set up with making a loopback xfs mount in ${HOME} and setting TMPDIR to that. patch 336323 is the swift-side that requires the xfs tmpdir, and it's set up to respect TMPDIR now instead of having any hard-coded /tmp | 01:19 |
*** edmondsw has quit IRC | 01:21 | |
*** knangia has quit IRC | 01:23 | |
openstackgerrit | John Dickinson proposed openstack-infra/project-config: add python-jobs-with-xfs for swift https://review.openstack.org/394601 | 01:23 |
*** dave-mccowan has joined #openstack-infra | 01:25 | |
*** yanyanhu has joined #openstack-infra | 01:29 | |
openstackgerrit | Armando Migliaccio proposed openstack-infra/project-config: Run neutron grenade jobs (w and w/o dvr) on xenial https://review.openstack.org/396458 | 01:29 |
*** Julien-z_ has joined #openstack-infra | 01:29 | |
openstackgerrit | Sagi Shnaidman proposed openstack-infra/tripleo-ci: TEST: DONT RECHECK: periodic jobs https://review.openstack.org/359215 | 01:29 |
*** Julien-z_ has quit IRC | 01:31 | |
*** Julien-zte has quit IRC | 01:32 | |
*** Julien-z_ has joined #openstack-infra | 01:32 | |
*** Julien-z_ has quit IRC | 01:34 | |
*** jkilpatr has quit IRC | 01:35 | |
*** zhurong has joined #openstack-infra | 01:36 | |
*** hurgleburgler has quit IRC | 01:36 | |
*** tiswanso has joined #openstack-infra | 01:38 | |
*** tiswanso has quit IRC | 01:38 | |
*** tiswanso has joined #openstack-infra | 01:39 | |
*** yamamoto_ has joined #openstack-infra | 01:39 | |
*** Julien-zte has joined #openstack-infra | 01:47 | |
*** dkehn_ has joined #openstack-infra | 01:56 | |
openstackgerrit | Armando Migliaccio proposed openstack-infra/project-config: Run neutron grenade jobs (w and w/o dvr) on xenial https://review.openstack.org/396458 | 01:57 |
*** Apoorva has quit IRC | 01:57 | |
*** baoli has joined #openstack-infra | 02:00 | |
*** Apoorva has joined #openstack-infra | 02:00 | |
*** sflanigan is now known as sflanigan_afk | 02:02 | |
*** sdake has joined #openstack-infra | 02:03 | |
openstackgerrit | Tony Breeds proposed openstack-infra/irc-meetings: Add start_dates to freezer and doc-ha https://review.openstack.org/396465 | 02:03 |
*** Apoorva has quit IRC | 02:05 | |
*** kzaitsev_mb has joined #openstack-infra | 02:06 | |
*** chlong has quit IRC | 02:11 | |
*** adrian_otto has quit IRC | 02:13 | |
*** claudiub has quit IRC | 02:13 | |
*** yamamoto_ has quit IRC | 02:14 | |
*** yamamoto_ has joined #openstack-infra | 02:17 | |
*** chandankumar has joined #openstack-infra | 02:17 | |
*** chandankumar has quit IRC | 02:18 | |
mriedem | ceph job seems to be failing quite a bit after the swith to neutron... | 02:18 |
mriedem | not sure why that would matter | 02:18 |
mriedem | well, nvm, failgraph says it's not | 02:18 |
mriedem | http://tinyurl.com/zxrlk23 | 02:18 |
*** asselin has quit IRC | 02:18 | |
*** sflanigan_afk is now known as sflanigan | 02:19 | |
*** tiswanso has quit IRC | 02:22 | |
*** dkehn__ has joined #openstack-infra | 02:22 | |
*** tiswanso has joined #openstack-infra | 02:22 | |
*** Sukhdev has quit IRC | 02:24 | |
*** dkehn_ has quit IRC | 02:25 | |
*** cody-somerville has quit IRC | 02:27 | |
mriedem | BobBall: https://bugs.launchpad.net/nova/+bug/1640993 | 02:33 |
openstack | Launchpad bug 1640993 in OpenStack Compute (nova) "xenserver hits vif plugging timeout with neutron CI job" [Undecided,New] | 02:33 |
mriedem | oops | 02:33 |
*** yamamoto_ has quit IRC | 02:41 | |
*** winggundamth has joined #openstack-infra | 02:43 | |
*** wolverineav has joined #openstack-infra | 02:46 | |
*** john-davidge has joined #openstack-infra | 02:46 | |
*** yuanying has quit IRC | 02:47 | |
*** yuanying has joined #openstack-infra | 02:47 | |
*** gmann_ has quit IRC | 02:50 | |
*** wolverineav has quit IRC | 02:51 | |
*** john-davidge has quit IRC | 02:51 | |
*** yuanying has quit IRC | 02:52 | |
*** mriedem has quit IRC | 02:52 | |
*** dkehn__ has quit IRC | 02:53 | |
*** rbuzatu has joined #openstack-infra | 02:54 | |
*** rbuzatu has quit IRC | 02:58 | |
openstackgerrit | Ian Wienand proposed openstack-infra/nodepool: Add option to force image delete https://review.openstack.org/396478 | 03:00 |
*** jerryz has quit IRC | 03:01 | |
*** baoli has quit IRC | 03:05 | |
*** markvoelker has quit IRC | 03:07 | |
*** walharthi has quit IRC | 03:11 | |
*** aeng has joined #openstack-infra | 03:13 | |
*** wolverineav has joined #openstack-infra | 03:16 | |
*** Julien-zte has quit IRC | 03:16 | |
*** yuanying has joined #openstack-infra | 03:17 | |
*** Julien-zte has joined #openstack-infra | 03:17 | |
*** wolverineav has quit IRC | 03:20 | |
*** Julien-zte has quit IRC | 03:22 | |
*** Julien-zte has joined #openstack-infra | 03:22 | |
*** asselin has joined #openstack-infra | 03:24 | |
openstackgerrit | Fei Long Wang proposed openstack-infra/project-config: Add zaqar-ui for zaqarclient job https://review.openstack.org/396481 | 03:26 |
openstackgerrit | Armando Migliaccio proposed openstack-infra/project-config: Run neutron grenade jobs (w and w/o dvr) on xenial https://review.openstack.org/396458 | 03:26 |
*** harlowja has quit IRC | 03:33 | |
*** yuanying_ has joined #openstack-infra | 03:34 | |
*** yuanying has quit IRC | 03:34 | |
*** Julien-zte has quit IRC | 03:39 | |
*** ijw has joined #openstack-infra | 03:39 | |
*** zhurong has quit IRC | 03:40 | |
*** Julien-zte has joined #openstack-infra | 03:42 | |
*** Julien-zte has quit IRC | 03:42 | |
*** Julien-zte has joined #openstack-infra | 03:42 | |
*** yuanying_ has quit IRC | 03:42 | |
*** Julien-zte has quit IRC | 03:42 | |
*** zhurong has joined #openstack-infra | 03:43 | |
*** Julien-zte has joined #openstack-infra | 03:43 | |
*** ijw has quit IRC | 03:43 | |
*** tojuvone has quit IRC | 03:44 | |
*** aneliubin has joined #openstack-infra | 03:47 | |
*** yuanying has joined #openstack-infra | 03:52 | |
*** gmann has joined #openstack-infra | 03:58 | |
*** Apoorva has joined #openstack-infra | 04:01 | |
*** Apoorva has quit IRC | 04:06 | |
openstackgerrit | Armando Migliaccio proposed openstack-infra/project-config: Run neutron grenade jobs (w and w/o dvr) on xenial https://review.openstack.org/396458 | 04:09 |
*** sdake has quit IRC | 04:10 | |
*** rossella_s has joined #openstack-infra | 04:10 | |
*** bhavik1 has joined #openstack-infra | 04:10 | |
*** tiswanso has quit IRC | 04:11 | |
*** adrian_otto has joined #openstack-infra | 04:16 | |
*** tojuvone has joined #openstack-infra | 04:16 | |
*** tojuvone_ has joined #openstack-infra | 04:16 | |
*** tojuvone has quit IRC | 04:17 | |
*** tojuvone_ has quit IRC | 04:17 | |
*** markvoelker has joined #openstack-infra | 04:21 | |
*** nicolasbock has quit IRC | 04:23 | |
*** shu-mutou-AWAY is now known as shu-mutou | 04:23 | |
*** tlian has quit IRC | 04:29 | |
*** harlowja has joined #openstack-infra | 04:38 | |
*** wolverineav has joined #openstack-infra | 04:44 | |
*** phschwartz has quit IRC | 04:47 | |
*** wolverineav has quit IRC | 04:49 | |
*** hurgleburgler has joined #openstack-infra | 04:52 | |
*** Sukhdev has joined #openstack-infra | 04:58 | |
*** dave-mccowan has quit IRC | 04:59 | |
*** rossella_s has quit IRC | 05:00 | |
*** aeng has quit IRC | 05:01 | |
*** sree has joined #openstack-infra | 05:10 | |
*** rlandy has quit IRC | 05:11 | |
*** chuckC_ has joined #openstack-infra | 05:12 | |
*** john-davidge has joined #openstack-infra | 05:13 | |
*** kzaitsev_mb has quit IRC | 05:14 | |
*** baoli has joined #openstack-infra | 05:18 | |
*** john-davidge has quit IRC | 05:18 | |
*** Julien-zte has quit IRC | 05:19 | |
*** Julien-zte has joined #openstack-infra | 05:19 | |
*** yamahata has quit IRC | 05:21 | |
*** yuanying has quit IRC | 05:21 | |
*** yuanying_ has joined #openstack-infra | 05:21 | |
*** baoli has quit IRC | 05:22 | |
*** yuanying_ has quit IRC | 05:22 | |
*** wolverineav has joined #openstack-infra | 05:25 | |
*** Rockyg has quit IRC | 05:25 | |
*** anilvenkata has joined #openstack-infra | 05:25 | |
anilvenkata | clarkb, njohnston ping | 05:27 |
*** jklare has quit IRC | 05:28 | |
*** jklare has joined #openstack-infra | 05:28 | |
*** wolverineav has quit IRC | 05:29 | |
*** khamtamtun has joined #openstack-infra | 05:30 | |
*** automagically has quit IRC | 05:30 | |
*** Kevin_Zheng has quit IRC | 05:31 | |
*** automagically has joined #openstack-infra | 05:32 | |
*** khamtamtun has quit IRC | 05:32 | |
*** Kevin_Zheng has joined #openstack-infra | 05:34 | |
*** wolverineav has joined #openstack-infra | 05:35 | |
*** r1chardj0n3s is now known as r1chardj0n3s_afk | 05:37 | |
*** wolverineav has quit IRC | 05:40 | |
*** armax has quit IRC | 05:43 | |
*** Apoorva has joined #openstack-infra | 05:43 | |
*** coolsvap has joined #openstack-infra | 05:45 | |
*** yuanying has joined #openstack-infra | 05:45 | |
*** rajinir has quit IRC | 05:46 | |
*** thorst_ has quit IRC | 05:49 | |
*** thorst_ has joined #openstack-infra | 05:50 | |
*** Julien-z_ has joined #openstack-infra | 05:50 | |
*** Julien-zte has quit IRC | 05:51 | |
*** harlowja has quit IRC | 05:51 | |
*** florianf has joined #openstack-infra | 05:52 | |
*** harlowja has joined #openstack-infra | 05:52 | |
*** Julien-z_ has quit IRC | 05:53 | |
*** Julien-zte has joined #openstack-infra | 05:54 | |
*** Julien-zte has quit IRC | 05:57 | |
*** Julien-zte has joined #openstack-infra | 05:57 | |
*** thorst_ has quit IRC | 05:59 | |
*** wolverineav has joined #openstack-infra | 06:05 | |
*** sandanar has joined #openstack-infra | 06:06 | |
*** wolverineav has quit IRC | 06:09 | |
*** kzaitsev_mb has joined #openstack-infra | 06:10 | |
*** makowals_ has quit IRC | 06:10 | |
*** gmann has quit IRC | 06:10 | |
*** adriant has quit IRC | 06:12 | |
*** Apoorva has quit IRC | 06:18 | |
*** chandankumar has joined #openstack-infra | 06:21 | |
*** kzaitsev_mb has quit IRC | 06:22 | |
*** amotoki has quit IRC | 06:24 | |
*** wolverineav has joined #openstack-infra | 06:24 | |
*** amotoki has joined #openstack-infra | 06:24 | |
*** Julien-zte has quit IRC | 06:25 | |
*** Julien-zte has joined #openstack-infra | 06:27 | |
*** wolverineav has quit IRC | 06:29 | |
openstackgerrit | Aparna proposed openstack/diskimage-builder: element: proliant-tools: Update hpssacli to ssacli https://review.openstack.org/396504 | 06:30 |
openstackgerrit | Juan Antonio Osorio Robles proposed openstack-infra/project-config: Introduce TripleO scenario004 https://review.openstack.org/396062 | 06:31 |
*** jaosorior has joined #openstack-infra | 06:32 | |
*** Julien-zte has quit IRC | 06:32 | |
*** Julien-zte has joined #openstack-infra | 06:33 | |
*** gmann has joined #openstack-infra | 06:34 | |
*** Jeffrey4l has quit IRC | 06:35 | |
*** hurgleburgler has quit IRC | 06:42 | |
openstackgerrit | Juan Antonio Osorio Robles proposed openstack-infra/project-config: Introduce TripleO scenario004 https://review.openstack.org/396062 | 06:45 |
*** Jeffrey4l has joined #openstack-infra | 06:48 | |
*** saibarspeis has joined #openstack-infra | 06:51 | |
*** masber has quit IRC | 06:53 | |
*** yamahata has joined #openstack-infra | 06:59 | |
*** masber has joined #openstack-infra | 06:59 | |
*** drifterza has joined #openstack-infra | 07:00 | |
*** Sukhdev has quit IRC | 07:01 | |
*** Julien-zte has quit IRC | 07:02 | |
*** pahuang has quit IRC | 07:02 | |
*** tesseract has joined #openstack-infra | 07:03 | |
*** tesseract is now known as Guest7605 | 07:03 | |
*** oanson has joined #openstack-infra | 07:09 | |
*** andreas_s has joined #openstack-infra | 07:10 | |
*** Julien-zte has joined #openstack-infra | 07:11 | |
*** rcernin has joined #openstack-infra | 07:11 | |
*** rbuzatu has joined #openstack-infra | 07:13 | |
*** claudiub has joined #openstack-infra | 07:13 | |
*** adrian_otto has quit IRC | 07:14 | |
*** pahuang has joined #openstack-infra | 07:15 | |
*** kzaitsev_mb has joined #openstack-infra | 07:20 | |
*** sdake has joined #openstack-infra | 07:22 | |
*** rbuzatu has quit IRC | 07:24 | |
*** esikachev has joined #openstack-infra | 07:26 | |
*** camunoz has quit IRC | 07:28 | |
*** thethorongil has joined #openstack-infra | 07:29 | |
*** jaosorior has quit IRC | 07:31 | |
*** makowals has joined #openstack-infra | 07:35 | |
*** ssbarnea has joined #openstack-infra | 07:37 | |
*** john-davidge has joined #openstack-infra | 07:40 | |
*** yolanda has quit IRC | 07:41 | |
*** yolanda has joined #openstack-infra | 07:41 | |
*** john-davidge has quit IRC | 07:45 | |
*** amotoki has quit IRC | 07:49 | |
*** Kevin_Zheng has quit IRC | 07:56 | |
*** andreas_s has quit IRC | 07:56 | |
*** Kevin_Zheng has joined #openstack-infra | 07:58 | |
*** thorst_ has joined #openstack-infra | 08:01 | |
yolanda | good morning | 08:02 |
*** jaosorior has joined #openstack-infra | 08:02 | |
*** harlowja has quit IRC | 08:03 | |
*** ccamacho has joined #openstack-infra | 08:08 | |
*** thorst_ has quit IRC | 08:08 | |
*** saibarspeis has quit IRC | 08:08 | |
*** dimtruck is now known as zz_dimtruck | 08:11 | |
*** saibarspeis has joined #openstack-infra | 08:13 | |
openstackgerrit | yolanda.robla proposed openstack-infra/puppet-openstackci: Add Graphite node class https://review.openstack.org/243199 | 08:13 |
*** Julien-zte has quit IRC | 08:15 | |
*** shardy has joined #openstack-infra | 08:17 | |
*** saibarspeis has quit IRC | 08:17 | |
*** rbuzatu has joined #openstack-infra | 08:17 | |
*** rbuzatu has quit IRC | 08:18 | |
openstackgerrit | Merged openstack-infra/project-config: Run neutron grenade jobs (w and w/o dvr) on xenial https://review.openstack.org/396458 | 08:18 |
*** rbuzatu has joined #openstack-infra | 08:18 | |
openstackgerrit | wangxiyuan proposed openstack-infra/project-config: Add zaqar-ui for zaqarclient job https://review.openstack.org/396481 | 08:19 |
openstackgerrit | Merged openstack-infra/project-config: Add release template to openstack/requirements https://review.openstack.org/396404 | 08:20 |
*** sflanigan is now known as sflanigan_afk | 08:20 | |
*** brunograz has joined #openstack-infra | 08:22 | |
openstackgerrit | Merged openstack-infra/project-config: Add nimble-specs project https://review.openstack.org/394294 | 08:24 |
*** saibarspeis has joined #openstack-infra | 08:25 | |
openstackgerrit | Rui Zang proposed openstack-infra/project-config: Enable dsvm-fullstack test in networking-odl https://review.openstack.org/396533 | 08:25 |
*** brunograz has left #openstack-infra | 08:30 | |
*** ccamacho has left #openstack-infra | 08:31 | |
*** ccamacho has quit IRC | 08:31 | |
*** jpich has joined #openstack-infra | 08:31 | |
*** amoralej|off is now known as amoralej | 08:34 | |
openstackgerrit | Rui Zang proposed openstack-infra/project-config: add non-voting dsvm-fullstack test job for networking-odl https://review.openstack.org/396533 | 08:36 |
*** brunograz has joined #openstack-infra | 08:37 | |
brunograz | Hi! I have an issue with my openstack review account (due to 2 launchpad accounts) and would like to know how I could change the launchpad id associated with my review accoun | 08:37 |
*** jpena|off is now known as jpena | 08:38 | |
*** binbincong has joined #openstack-infra | 08:45 | |
*** abregman has joined #openstack-infra | 08:47 | |
openstackgerrit | Merged openstack-infra/project-config: create project for fuel plugin of fortinet related plugins https://review.openstack.org/326091 | 08:48 |
*** pahuang has quit IRC | 08:48 | |
openstackgerrit | Merged openstack-infra/project-config: Move gate-neutron-dsvm-api-ubuntu-xenial to check/gate queue https://review.openstack.org/396450 | 08:51 |
*** Hal1 has quit IRC | 08:52 | |
*** ralonsoh has joined #openstack-infra | 08:53 | |
openstackgerrit | Merged openstack-infra/project-config: Non-voting job running ironic-inspector functional tests on Python 3 https://review.openstack.org/391824 | 08:55 |
*** abregman has quit IRC | 08:58 | |
*** zzzeek has quit IRC | 09:00 | |
*** zzzeek has joined #openstack-infra | 09:01 | |
openstackgerrit | Merged openstack-infra/project-config: URL has changed, previous one is no longer valid. https://review.openstack.org/393375 | 09:02 |
openstackgerrit | Merged openstack-infra/project-config: Don't run gate-novaclient-dsvm-functional-neutron on liberty or mitaka https://review.openstack.org/396366 | 09:06 |
openstackgerrit | Merged openstack-infra/project-config: Restrict gate-novaclient-dsvm-functional <= Newton https://review.openstack.org/396368 | 09:06 |
*** thorst_ has joined #openstack-infra | 09:07 | |
*** adreznec has quit IRC | 09:09 | |
*** bnemec has quit IRC | 09:09 | |
*** preethipy has joined #openstack-infra | 09:10 | |
openstackgerrit | Merged openstack-infra/project-config: Add release job for monasca-grafana-datasource https://review.openstack.org/396203 | 09:10 |
openstackgerrit | Merged openstack-infra/project-config: Add external openvswitch test target to kolla-kubernetes https://review.openstack.org/395878 | 09:10 |
*** ihrachys has joined #openstack-infra | 09:10 | |
*** adreznec has joined #openstack-infra | 09:11 | |
*** bnemec has joined #openstack-infra | 09:12 | |
openstackgerrit | Merged openstack-infra/project-config: Switch ironic-ipa jobs to Xenial and make ipmitool jobs voting https://review.openstack.org/392890 | 09:12 |
openstackgerrit | Merged openstack-infra/project-config: Added push merge to openstack-salt repos https://review.openstack.org/395487 | 09:12 |
openstackgerrit | Merged openstack-infra/project-config: [magnum-specs] Use magnum-core group https://review.openstack.org/395689 | 09:12 |
openstackgerrit | Merged openstack-infra/project-config: Switch tinyipa256 experimental job to Ubuntu Xenial https://review.openstack.org/394927 | 09:12 |
brunograz | anybody online who could help me out with my issue? :) | 09:13 |
openstackgerrit | Merged openstack-infra/project-config: Add mapping from rsc gerrit to launchpad https://review.openstack.org/395396 | 09:13 |
*** thorst_ has quit IRC | 09:14 | |
openstackgerrit | Merged openstack-infra/project-config: Change the LP for tracking bugs and milestones https://review.openstack.org/395920 | 09:14 |
openstackgerrit | Merged openstack-infra/project-config: Add gerritbot notification for python-nimbleclient https://review.openstack.org/395989 | 09:14 |
*** asettle has joined #openstack-infra | 09:14 | |
*** claudiub|2 has joined #openstack-infra | 09:16 | |
*** e0ne has joined #openstack-infra | 09:18 | |
*** claudiub has quit IRC | 09:18 | |
*** saibarsp_ has joined #openstack-infra | 09:20 | |
*** saibarspeis has quit IRC | 09:21 | |
*** lucas-afk is now known as lucasagomes | 09:22 | |
*** gmann has quit IRC | 09:23 | |
*** ihrachys has quit IRC | 09:24 | |
*** derekh has joined #openstack-infra | 09:25 | |
*** tkelsey has joined #openstack-infra | 09:26 | |
*** sdake has quit IRC | 09:26 | |
*** mhickey has joined #openstack-infra | 09:27 | |
*** thethorongil has quit IRC | 09:27 | |
*** allanice001 has joined #openstack-infra | 09:28 | |
*** derekh has quit IRC | 09:29 | |
*** zhurong has quit IRC | 09:29 | |
*** zhurong has joined #openstack-infra | 09:30 | |
*** amotoki has joined #openstack-infra | 09:32 | |
*** andymaier has joined #openstack-infra | 09:33 | |
*** tkelsey has quit IRC | 09:33 | |
*** Julien-zte has joined #openstack-infra | 09:35 | |
*** binbincong has quit IRC | 09:35 | |
*** thethorongil has joined #openstack-infra | 09:36 | |
openstackgerrit | Jens Rosenboom proposed openstack-infra/project-config: Remove gate-neutron-lbaasv2-dsvm-minimal from neutron check queue https://review.openstack.org/396398 | 09:36 |
*** thethorongil has quit IRC | 09:37 | |
*** thethorongil has joined #openstack-infra | 09:37 | |
*** john-davidge has joined #openstack-infra | 09:38 | |
*** amotoki has quit IRC | 09:38 | |
openstackgerrit | Anusha Ramineni proposed openstack-infra/project-config: Add aodh plugin to congress gate job https://review.openstack.org/396561 | 09:41 |
*** kzaitsev_mb has quit IRC | 09:41 | |
*** andymaier has quit IRC | 09:44 | |
*** ccamacho has joined #openstack-infra | 09:45 | |
*** derekh has joined #openstack-infra | 09:47 | |
*** binbincong has joined #openstack-infra | 09:47 | |
*** openstackgerrit has quit IRC | 09:48 | |
*** openstackgerrit has joined #openstack-infra | 09:48 | |
*** abregman has joined #openstack-infra | 09:50 | |
*** strigazi_AFK is now known as strigazi | 09:50 | |
*** yanyanhu has quit IRC | 09:52 | |
*** ihrachys has joined #openstack-infra | 09:53 | |
*** electrofelix has joined #openstack-infra | 10:01 | |
*** zhurong has quit IRC | 10:02 | |
*** e0ne has quit IRC | 10:05 | |
*** nijaba has quit IRC | 10:06 | |
*** abregman is now known as abregman|nb | 10:07 | |
*** nijaba has joined #openstack-infra | 10:07 | |
*** nijaba has joined #openstack-infra | 10:07 | |
tsufiev | clarkb, no, I don't have any confirmed info about successful driver signing | 10:10 |
openstackgerrit | Merged openstack-infra/project-config: Remove osic-cloud8 https://review.openstack.org/395941 | 10:11 |
*** thorst_ has joined #openstack-infra | 10:12 | |
*** thorst_ has quit IRC | 10:18 | |
*** Julien-zte has quit IRC | 10:22 | |
*** oanson has quit IRC | 10:29 | |
*** esikachev has quit IRC | 10:30 | |
*** e0ne has joined #openstack-infra | 10:30 | |
*** gmann has joined #openstack-infra | 10:31 | |
*** sambetts|afk is now known as sambetts | 10:33 | |
*** thethorongil has quit IRC | 10:33 | |
*** askb has quit IRC | 10:33 | |
*** tosky has joined #openstack-infra | 10:36 | |
*** esikachev has joined #openstack-infra | 10:37 | |
*** yamahata has quit IRC | 10:38 | |
*** esikachev has quit IRC | 10:42 | |
*** ldnunes has joined #openstack-infra | 10:43 | |
openstackgerrit | Attila Darazs proposed openstack-infra/project-config: Let the linter job vote on tripleo-quickstart https://review.openstack.org/396293 | 10:44 |
*** kzaitsev_mb has joined #openstack-infra | 10:46 | |
openstackgerrit | Erlon R. Cruz proposed openstack-infra/devstack-gate: [DO NOT MERGE] Testing Cinder hooks https://review.openstack.org/393427 | 10:57 |
*** sflanigan_afk has quit IRC | 10:59 | |
*** ssbarnea has quit IRC | 11:00 | |
*** psilvad has joined #openstack-infra | 11:00 | |
*** psilvad has joined #openstack-infra | 11:01 | |
*** ssbarnea has joined #openstack-infra | 11:02 | |
*** rfolco has joined #openstack-infra | 11:04 | |
*** dtantsur|afk is now known as dtantsur | 11:05 | |
*** wolverineav has joined #openstack-infra | 11:05 | |
*** sree has quit IRC | 11:06 | |
*** esikachev has joined #openstack-infra | 11:06 | |
*** d0ugal has quit IRC | 11:07 | |
dtantsur | morning folks! some time ago I complained that gerrit UI login usually survives less than 24 hours. so, it's still the case. | 11:08 |
openstackgerrit | chenhb proposed openstack-infra/project-config: [Rally]Add neutron extensions service test job https://review.openstack.org/395432 | 11:09 |
*** sree has joined #openstack-infra | 11:09 | |
*** esikache1 has joined #openstack-infra | 11:12 | |
*** sree has quit IRC | 11:14 | |
openstackgerrit | Erlon R. Cruz proposed openstack-infra/devstack-gate: [DO NOT MERGE] Testing gate job https://review.openstack.org/396592 | 11:15 |
*** esikachev has quit IRC | 11:15 | |
*** thorst_ has joined #openstack-infra | 11:19 | |
*** thorst_ has quit IRC | 11:24 | |
*** abregman|nb is now known as abregman|afk | 11:28 | |
*** lxsli has joined #openstack-infra | 11:28 | |
lxsli | anyone awake? looking for advice on the best way to ensure a project.conf.sample is regen'd when a patch merges | 11:29 |
*** coolsvap has quit IRC | 11:30 | |
*** tpsilva has joined #openstack-infra | 11:32 | |
*** nicolasbock has joined #openstack-infra | 11:37 | |
*** matrohon has joined #openstack-infra | 11:38 | |
electrofelix | Has zuul access to nodepool? or where ever it's getting new machines from? | 11:40 |
*** preethi has joined #openstack-infra | 11:41 | |
*** preethipy has quit IRC | 11:43 | |
electrofelix | I'm seeing the check queue grow with new items being queued, but it looks like very little is getting executed, and of what is, I can't tell if it's doing anything as I'm behind a proxy so I'm unsure of by 'proxy connect foo' is working right for viewing telnet output | 11:44 |
AJaeger_ | infra-root, somehow zuul looks broken, see electrofelix' comment and check also the flat lines on http://grafana.openstack.org/dashboard/db/nodepool | 11:47 |
AJaeger_ | #status notice nodepool/zuul look currently stuck, looks like no new jobs are started | 11:50 |
AJaeger_ | #status log nodepool/zuul look currently stuck, looks like no new jobs are started | 11:50 |
*** AJaeger_ is now known as AJaeger | 11:50 | |
AJaeger | #status log nodepool/zuul look currently stuck, looks like no new jobs are started | 11:50 |
openstackstatus | AJaeger: finished logging | 11:50 |
AJaeger | electrofelix: I confirm - and cannot help myself, hope that an infra-root reads the above and helps . Thanks for reporting! | 11:51 |
openstackgerrit | vinay kumar muddu proposed openstack/diskimage-builder: Build wholedisk images capable of UEFI secure boot https://review.openstack.org/396602 | 11:51 |
lxsli | yolanda: you up? ^^ | 11:52 |
AJaeger | lxsli: what do you want to do? | 11:53 |
lxsli | AJaeger: zuul seems more urgent right now | 11:53 |
lxsli | but: looking for advice on the best way to ensure a project.conf.sample is regen'd when a patch merges | 11:53 |
*** sandanar has quit IRC | 11:53 | |
AJaeger | lxsli: don't store it in your project, just build it as part of your documentation and publish it. | 11:54 |
AJaeger | lxsli: oslo.config can be integrated into your sphinx based docs and generated the project.conf.sample and you can publish it that way | 11:54 |
AJaeger | some projects do it this way, best grep a bit around | 11:55 |
*** rhallisey has joined #openstack-infra | 11:55 | |
lxsli | yeah that would be my preference, but I'd like an option since the PTL favours having a checked-in version | 11:55 |
AJaeger | lxsli: there's no way that the infra team will support for this. | 11:55 |
lxsli | AJaeger: OK good to know | 11:55 |
AJaeger | (no automatic way) | 11:55 |
drifterza | zuul is stuck right ? | 11:57 |
AJaeger | drifterza: yeah ;( | 11:57 |
drifterza | checked the graph, flat lined | 11:57 |
drifterza | :( | 11:58 |
*** matrohon has quit IRC | 11:59 | |
AJaeger | #status notice Our OpenStack CI systems are stuck and no new jobs are submitted. Please do not recheck - and do not approve changes until this is fixed. | 11:59 |
openstackstatus | AJaeger: sending notice | 11:59 |
drifterza | shot thanks AJaeger | 11:59 |
* AJaeger cannot fix it but can at least spread the word | 11:59 | |
*** clenimar has joined #openstack-infra | 12:00 | |
-openstackstatus- NOTICE: Our OpenStack CI systems are stuck and no new jobs are submitted. Please do not recheck - and do not approve changes until this is fixed. | 12:00 | |
openstackstatus | AJaeger: finished sending notice | 12:02 |
Zara | ah, thanks for the heads-up :) | 12:03 |
*** bhavik1 has quit IRC | 12:10 | |
*** lucasagomes is now known as lucas-hungry | 12:10 | |
*** allanice001_ has joined #openstack-infra | 12:11 | |
*** allanice001_ has quit IRC | 12:12 | |
*** allanice001 has quit IRC | 12:12 | |
*** shardy is now known as shardy_lunch | 12:13 | |
openstackgerrit | Oliver Walsh proposed openstack/diskimage-builder: Include lsb_release on redhat/centos7 images https://review.openstack.org/396607 | 12:16 |
*** kzaitsev_mb has quit IRC | 12:20 | |
*** thorst has joined #openstack-infra | 12:20 | |
*** jkilpatr has joined #openstack-infra | 12:22 | |
*** dprince has joined #openstack-infra | 12:26 | |
*** kzaitsev_mb has joined #openstack-infra | 12:29 | |
*** thorst has quit IRC | 12:29 | |
*** e0ne has quit IRC | 12:34 | |
*** e0ne has joined #openstack-infra | 12:34 | |
*** ccamacho has quit IRC | 12:37 | |
*** ssbarnea has quit IRC | 12:42 | |
*** ssbarnea has joined #openstack-infra | 12:43 | |
*** markvoelker has quit IRC | 12:44 | |
pabelanger | morning | 12:44 |
smcginnis | lxsli: If you need a checked in file, you can take a look how we're generating an opts.py file in Cinder: https://github.com/openstack/cinder/blob/master/tox.ini#L87 | 12:45 |
Zara | morning/afternoon, pabelanger! | 12:45 |
*** preethi has quit IRC | 12:46 | |
openstackgerrit | Vitaly Gridnev proposed openstack-infra/project-config: [sahara] include heat devstack plugin for jobs https://review.openstack.org/396614 | 12:46 |
*** jaosorior has quit IRC | 12:47 | |
pabelanger | looking into nodepool / zuul | 12:48 |
pabelanger | okay, think I fixed it | 12:49 |
pabelanger | nodepool was trying to delete a cloud8 node | 12:49 |
pabelanger | but we recently removed it from nodepool.yaml? | 12:49 |
AJaeger | pabelanger: yeah, that change merged earlier today | 12:51 |
AJaeger | thanks, pabelanger | 12:51 |
*** arxcruz has quit IRC | 12:51 | |
AJaeger | wow, these graphs look extrem http://grafana.openstack.org/dashboard/db/nodepool - deleting 1901 nodes | 12:52 |
pabelanger | Yup | 12:52 |
*** drifterza has quit IRC | 12:52 | |
pabelanger | nodepool had launched almost all of its capacity | 12:52 |
pabelanger | now it is cleaning things up | 12:52 |
AJaeger | ah... | 12:53 |
AJaeger | pabelanger: can you do a status notice once it's really green again, please? I'll drop offline now and would appreciate a followup to my status notice | 12:54 |
pabelanger | AJaeger: will do | 12:54 |
AJaeger | yeah, 58 nodes building again. | 12:54 |
* AJaeger thanks pabelanger the healer ;) | 12:54 | |
*** AJaeger is now known as AJaeger_ | 12:55 | |
openstackgerrit | Julia Varlamova proposed openstack-infra/devstack-gate: Add new roles to feature matrix https://review.openstack.org/394895 | 12:56 |
pabelanger | #status notice Our OpenStack CI system is coming back online again. Thanks for your patience. | 12:56 |
*** pabelanger has quit IRC | 12:57 | |
*** pabelanger has joined #openstack-infra | 12:57 | |
pabelanger | #status notice Our OpenStack CI system is coming back online again. Thanks for your patience. | 12:58 |
openstackstatus | pabelanger: sending notice | 12:58 |
*** brunograz has quit IRC | 12:58 | |
-openstackstatus- NOTICE: Our OpenStack CI system is coming back online again. Thanks for your patience. | 12:59 | |
*** thiagolib has joined #openstack-infra | 12:59 | |
openstackstatus | pabelanger: finished sending notice | 13:01 |
*** thorst has joined #openstack-infra | 13:01 | |
*** trown|outtypewww is now known as trown | 13:01 | |
*** EricGonczer_ has joined #openstack-infra | 13:02 | |
*** thorst_ has joined #openstack-infra | 13:03 | |
*** dkehn__ has joined #openstack-infra | 13:03 | |
*** mchiappero has joined #openstack-infra | 13:03 | |
*** thorst has quit IRC | 13:05 | |
*** binbincong has quit IRC | 13:07 | |
*** oanson has joined #openstack-infra | 13:08 | |
*** priteau has joined #openstack-infra | 13:08 | |
*** gmann has quit IRC | 13:12 | |
*** thorst_ is now known as thorst | 13:12 | |
*** masber has quit IRC | 13:13 | |
openstackgerrit | Vitaly Gridnev proposed openstack-infra/project-config: [sahara] include heat devstack plugin for jobs https://review.openstack.org/396614 | 13:15 |
*** arxcruz has joined #openstack-infra | 13:15 | |
*** edmondsw has joined #openstack-infra | 13:16 | |
*** mkoderer___ is now known as mkoderer__ | 13:17 | |
*** dave-mccowan has joined #openstack-infra | 13:18 | |
*** kjackal_ has joined #openstack-infra | 13:22 | |
*** dkehn__ has quit IRC | 13:24 | |
lxsli | smcginnis: cool thanks, looking | 13:25 |
*** anilvenkata has quit IRC | 13:26 | |
*** arxcruz has quit IRC | 13:27 | |
*** arxcruz has joined #openstack-infra | 13:27 | |
*** baoli has joined #openstack-infra | 13:28 | |
*** raildo has joined #openstack-infra | 13:28 | |
*** lucas-hungry is now known as lucasagomes | 13:29 | |
*** hrybacki is now known as hrybacki|VDayRit | 13:31 | |
*** annegentle has quit IRC | 13:32 | |
*** fguillot has joined #openstack-infra | 13:33 | |
*** rlandy has joined #openstack-infra | 13:34 | |
*** jheroux has joined #openstack-infra | 13:35 | |
*** markvoelker has joined #openstack-infra | 13:35 | |
*** baoli_ has joined #openstack-infra | 13:35 | |
*** dkehn__ has joined #openstack-infra | 13:36 | |
*** jpena is now known as jpena|lunch | 13:36 | |
*** asselin has quit IRC | 13:37 | |
*** EricGonc_ has joined #openstack-infra | 13:37 | |
*** kjackal_ has quit IRC | 13:37 | |
*** claudiub has joined #openstack-infra | 13:38 | |
*** baoli has quit IRC | 13:38 | |
*** EricGonczer_ has quit IRC | 13:38 | |
*** claudiub|2 has quit IRC | 13:40 | |
*** xyang1 has joined #openstack-infra | 13:43 | |
*** saibarspeis has joined #openstack-infra | 13:44 | |
*** saibarsp_ has quit IRC | 13:47 | |
*** tlian has joined #openstack-infra | 13:51 | |
*** Julien-zte has joined #openstack-infra | 13:51 | |
*** tiswanso has joined #openstack-infra | 13:53 | |
*** amoralej is now known as amoralej|lunch | 13:54 | |
*** dbelyaninov has quit IRC | 13:59 | |
*** asettle has quit IRC | 13:59 | |
*** esikache1 has quit IRC | 13:59 | |
openstackgerrit | Luigi Toscano proposed openstack-infra/project-config: sahara: force nova-network in the only nova-network job https://review.openstack.org/396639 | 13:59 |
*** dprince has quit IRC | 14:00 | |
*** dprince has joined #openstack-infra | 14:01 | |
tosky | that's ^^ required to unlock sahara gates | 14:01 |
*** gordc has joined #openstack-infra | 14:02 | |
*** _dpaterson has joined #openstack-infra | 14:02 | |
*** tonytan4ever has joined #openstack-infra | 14:05 | |
*** mriedem has joined #openstack-infra | 14:07 | |
*** kgiusti has joined #openstack-infra | 14:07 | |
*** abregman|afk is now known as abregman | 14:07 | |
mchiappero | Hi everyone, I have a question on the DocImpact flag | 14:08 |
openstackgerrit | Luigi Toscano proposed openstack-infra/project-config: sahara: force nova-network in the only nova-network job https://review.openstack.org/396639 | 14:09 |
openstackgerrit | Rui Zang proposed openstack-infra/project-config: add non-voting dsvm-fullstack test job for networking-odl https://review.openstack.org/396533 | 14:09 |
*** HeOS has quit IRC | 14:09 | |
mchiappero | has it to be used even when only the internal project specific documentation (e.g. devref) is impacted? | 14:09 |
*** [HeOS] has joined #openstack-infra | 14:09 | |
*** hurgleburgler has joined #openstack-infra | 14:10 | |
*** zhurong has joined #openstack-infra | 14:10 | |
*** abregman is now known as abregman|afk | 14:12 | |
*** esikache1 has joined #openstack-infra | 14:12 | |
*** jkilpatr_ has joined #openstack-infra | 14:14 | |
openstackgerrit | Merged openstack-infra/irc-meetings: Add start_dates to freezer and doc-ha https://review.openstack.org/396465 | 14:14 |
*** edtubill has joined #openstack-infra | 14:15 | |
*** jkilpatr has quit IRC | 14:16 | |
*** eharney has joined #openstack-infra | 14:17 | |
openstackgerrit | Ihar Hrachyshka proposed openstack-infra/project-config: neutron: remove functional-py3[4]5 experimental jobs https://review.openstack.org/396646 | 14:17 |
*** shardy_lunch is now known as shardy | 14:18 | |
*** amoralej|lunch is now known as amoralej | 14:21 | |
*** ccamacho has joined #openstack-infra | 14:21 | |
*** _dpaterson has quit IRC | 14:21 | |
openstackgerrit | Thierry Carrez proposed openstack-infra/irc-meetings: Remove unused Diversity WG meeting https://review.openstack.org/394875 | 14:22 |
openstackgerrit | Ihar Hrachyshka proposed openstack-infra/project-config: Don't run ovs-native jobs for Newton+ https://review.openstack.org/396648 | 14:22 |
*** asselin has joined #openstack-infra | 14:22 | |
*** dkehn__ has quit IRC | 14:22 | |
openstackgerrit | Merged openstack-infra/irc-meetings: Remove unused OpenStackSDK meeting https://review.openstack.org/394873 | 14:26 |
*** lxsli has left #openstack-infra | 14:27 | |
*** eharney has quit IRC | 14:27 | |
*** jcoufal has joined #openstack-infra | 14:28 | |
rosmaita | hello infra people ... does openstack have something like pastebin, but for images? i could use the wiki, i guess; just wondering if there's a different solution | 14:29 |
*** hrybacki|VDayRit is now known as hrybacki | 14:29 | |
*** caowei_ has joined #openstack-infra | 14:29 | |
*** eharney has joined #openstack-infra | 14:31 | |
*** sree has joined #openstack-infra | 14:34 | |
*** dansmith is now known as superdan | 14:37 | |
*** sree has quit IRC | 14:39 | |
*** d0ugal has joined #openstack-infra | 14:40 | |
openstackgerrit | Ihar Hrachyshka proposed openstack-infra/project-config: neutron: remove functional-py3[45] experimental jobs https://review.openstack.org/396646 | 14:43 |
openstackgerrit | Ihar Hrachyshka proposed openstack-infra/project-config: Don't run ovs-native jobs for Newton+ https://review.openstack.org/396648 | 14:43 |
*** jpena|lunch is now known as jpena | 14:43 | |
*** krtaylor has joined #openstack-infra | 14:47 | |
*** david-lyle_ has joined #openstack-infra | 14:50 | |
fungi | rosmaita: we don't, no. unfortunately, unpoliced publication platforms are attractive nuisances for abuse. even with the wiki we had to disable image uploads for months, and now we restrict the feature to specific accounts | 14:52 |
fungi | rosmaita: we have an instance of pholio just about in production now which could probably be used for some types of image discussion/review if that's your goal | 14:53 |
*** [HeOS] has quit IRC | 14:53 | |
rosmaita | fungi: thanks, i was just curious ... i can just post to ML as an attachment, it will work just as well | 14:54 |
rosmaita | thanks! | 14:55 |
*** Julien-zte has quit IRC | 14:55 | |
*** EricGonc_ has quit IRC | 15:01 | |
*** EricGonczer_ has joined #openstack-infra | 15:01 | |
*** dkehn__ has joined #openstack-infra | 15:02 | |
*** dprince has quit IRC | 15:03 | |
*** florianf has quit IRC | 15:03 | |
*** walharthi has joined #openstack-infra | 15:03 | |
*** dprince has joined #openstack-infra | 15:04 | |
*** preethipy has joined #openstack-infra | 15:04 | |
*** florianf has joined #openstack-infra | 15:07 | |
*** Kiall has joined #openstack-infra | 15:10 | |
*** edtubill has quit IRC | 15:14 | |
dhellmann | hi, folks, the release team is working on setting up a new mailing list to better manager release announcement emails. ttx has posted a review to set up the list, and I'd like to try to move ahead with the changes quickly if we can. I would appreciate it if you'd put https://review.openstack.org/#/c/394418 in your review queues. | 15:16 |
*** zhurong has quit IRC | 15:16 | |
*** sree has joined #openstack-infra | 15:16 | |
sc68cal | tw 48 | 15:16 |
openstackgerrit | Ihar Hrachyshka proposed openstack-infra/project-config: Move Xenial grenade multinode (w/ and w/o dvr) jobs into check https://review.openstack.org/396668 | 15:17 |
zxiiro | electrofelix: I'll spend some time today working on 357960 | 15:18 |
openstackgerrit | Ihar Hrachyshka proposed openstack-infra/project-config: Move Xenial grenade multinode (w/ and w/o dvr) jobs into check https://review.openstack.org/396668 | 15:19 |
*** yamahata has joined #openstack-infra | 15:20 | |
*** abregman|afk has quit IRC | 15:22 | |
sree | clarkb: for https://review.openstack.org/#/c/395560/5, we have decided to populate the repository later, with all commits squashed into a single commit. Kindly approve as no more changes needed | 15:22 |
*** mriedem1 has joined #openstack-infra | 15:26 | |
*** dprince has quit IRC | 15:27 | |
*** mriedem has quit IRC | 15:27 | |
*** claudiub|2 has joined #openstack-infra | 15:29 | |
*** claudiub|3 has joined #openstack-infra | 15:30 | |
*** mriedem1 is now known as mriedem | 15:30 | |
e0ne | hi. could anybody review https://review.openstack.org/392192, please? it should fix cinderclient functional tests job | 15:32 |
*** claudiub has quit IRC | 15:33 | |
*** preethipy has quit IRC | 15:33 | |
*** claudiub|2 has quit IRC | 15:33 | |
*** zzelle has joined #openstack-infra | 15:33 | |
*** rbrndt_ has joined #openstack-infra | 15:34 | |
openstackgerrit | Merged openstack-infra/openstackid-resources: Added doctrine L2 cache https://review.openstack.org/393921 | 15:35 |
openstackgerrit | Ihar Hrachyshka proposed openstack-infra/project-config: neutron: add experimental Xenial rally job https://review.openstack.org/396673 | 15:36 |
*** marst has quit IRC | 15:38 | |
*** strigazi is now known as strigazi_AFK | 15:38 | |
*** mriedem has quit IRC | 15:41 | |
*** john-davidge has quit IRC | 15:44 | |
*** zz_dimtruck is now known as dimtruck | 15:44 | |
*** mriedem has joined #openstack-infra | 15:45 | |
*** chandankumar has quit IRC | 15:45 | |
*** john-dav_ has joined #openstack-infra | 15:46 | |
*** marst has joined #openstack-infra | 15:47 | |
*** eharney has quit IRC | 15:47 | |
*** asettle has joined #openstack-infra | 15:48 | |
openstackgerrit | Oksana Voshchana proposed openstack-infra/devstack-gate: TEST for multinode grenade devstack https://review.openstack.org/396679 | 15:48 |
openstackgerrit | Merged openstack-infra/nodepool: Add option to force image delete https://review.openstack.org/396388 | 15:48 |
openstackgerrit | Ihar Hrachyshka proposed openstack-infra/project-config: neutron: add experimental Xenial rally job https://review.openstack.org/396673 | 15:49 |
*** psilvad has quit IRC | 15:49 | |
*** john-dav_ has quit IRC | 15:50 | |
*** walharthi has quit IRC | 15:51 | |
*** hongbin has joined #openstack-infra | 15:52 | |
pabelanger | fungi: clarkb: jeblair: if you have some cycles today, would like some feedback on https://review.openstack.org/#/c/395056/ First attempt to limit the abort job retries in zuul | 15:54 |
*** sree has quit IRC | 15:55 | |
*** drifterza has joined #openstack-infra | 16:00 | |
*** eharney has joined #openstack-infra | 16:00 | |
*** sree has joined #openstack-infra | 16:01 | |
openstackgerrit | Monty Taylor proposed openstack/os-client-config: Remove validate_auth_ksc https://review.openstack.org/368778 | 16:02 |
openstackgerrit | Monty Taylor proposed openstack/os-client-config: Remove validate_auth_ksc https://review.openstack.org/368778 | 16:03 |
*** caowei_ has quit IRC | 16:04 | |
*** annegentle has joined #openstack-infra | 16:04 | |
*** rcernin has quit IRC | 16:05 | |
*** sree has quit IRC | 16:05 | |
electrofelix | zxiiro: I've been trying to nail https://review.openstack.org/#/c/309735/ for a few days, the code seems fine, I've just not quite worked out how to test it | 16:06 |
*** marst has quit IRC | 16:06 | |
*** marst has joined #openstack-infra | 16:06 | |
electrofelix | zxiiro: I'm also in two minds about whether https://review.openstack.org/#/c/358019/ makes the API easier or messier to work with | 16:06 |
*** david-lyle_ has quit IRC | 16:07 | |
tosky | another small plea for a review which should unlock sahara gates (especially a test which relied on nova-network but had no explicit variable to set it): https://review.openstack.org/#/c/396639/ | 16:08 |
clarkb | e0ne: I am not going tovote positive or negative until mymostrecent comment is responded to... | 16:10 |
openstackgerrit | Paul Belanger proposed openstack-infra/zuul: Update webapp status json to support tenants https://review.openstack.org/391681 | 16:11 |
openstackgerrit | Paul Belanger proposed openstack-infra/zuul: Re-enable test_time_database test https://review.openstack.org/396684 | 16:11 |
e0ne | clarkb: I'm sorry, I missed your question about volume size. answered now | 16:13 |
*** ijw has joined #openstack-infra | 16:13 | |
*** psilvad has joined #openstack-infra | 16:13 | |
*** inc0 has joined #openstack-infra | 16:14 | |
*** makowals has quit IRC | 16:14 | |
e0ne | clarkb: we already use the smallest volume size | 16:15 |
*** makowals has joined #openstack-infra | 16:15 | |
*** inc0 has quit IRC | 16:15 | |
clarkb | e0ne: ty +2. howeveraybe this is a good indication that that limit should be reco sidered? | 16:16 |
e0ne | clarkb: thanks. what limit do you mean? | 16:16 |
clarkb | 1gb minimum | 16:17 |
clarkb | if cinder camt reliably test cinder as a result maybe that should be changed | 16:17 |
e0ne | clarkb: or we can decrease cocurrency | 16:17 |
*** ramishra has quit IRC | 16:18 | |
e0ne | clarkb: it's a bad idea to change cinder behaviour only for tests | 16:18 |
clarkb | but its also bad to arbitrary limits that prevent effective testing | 16:19 |
*** rossella_s has joined #openstack-infra | 16:19 | |
*** ramishra has joined #openstack-infra | 16:20 | |
fungi | we already change behavior of lots of services to be able to test them. biggest example is that we deploy them via devstack even though we strongly recommend (and even sabotage) anyone attempting to use it for production | 16:20 |
*** tonytan4ever has quit IRC | 16:20 | |
openstackgerrit | Erlon R. Cruz proposed openstack-infra/devstack-gate: [DO NOT MERGE] Testing gate job https://review.openstack.org/396592 | 16:21 |
e0ne | clarkb: fair enough | 16:21 |
fungi | we also configure nova with flavors so miniscule nobody could ever depend on them for anything besides a test | 16:21 |
*** inc0 has joined #openstack-infra | 16:21 | |
fungi | and upload images no sane person would ever use to run anything | 16:21 |
smcginnis | It's somewhat a standard that GB is the base unit of block storage for most clouds, AFAIK. Changing it to operate on MB units would have a much larger ripple effect than it might sound. | 16:21 |
e0ne | smcginnis: +1 | 16:21 |
*** bnemec is now known as beekneemech | 16:22 | |
fungi | i wonder if there's a way we could "fake" the volume sizes being presented instead | 16:22 |
e0ne | clarkb, smcginnis: maybe we could enable thin provisioning on gates | 16:22 |
clarkb | smcginnis: e0ne or just default to GBunless scale is provided | 16:22 |
clarkb | many unix tools do this (though default to mbmore typically) | 16:22 |
smcginnis | I like the idea of thin provisioning. LVM should be good with that now. | 16:23 |
fungi | or to half-kilobyte ;) | 16:23 |
smcginnis | clarkb: True, that could work. | 16:23 |
smcginnis | As far as the user experience goes and not breaking the API. | 16:23 |
*** gmann has joined #openstack-infra | 16:23 | |
*** armax has joined #openstack-infra | 16:23 | |
e0ne | fungi: 7 bytes sounds good:) | 16:24 |
smcginnis | It would still mean a lot of assumptions would need to be changed throughout the cinder code though. | 16:24 |
smcginnis | Hah! | 16:24 |
e0ne | s/7 bytes/ 7 bits | 16:24 |
fungi | so... i think we did run tempest against cinder with thin-provisioned volumes in the past, but ran into performance issues or crashes with the job, right? still, even if that was te case then, it might not be now | 16:24 |
smcginnis | fungi: Hmm, wasn't aware of that. Do you know how long ago that was? | 16:25 |
fungi | i want to say we turned that off maybe 3+ years ago? | 16:25 |
e0ne | clarkb, smcginnis, fungi: I'll try it on my envs and will bring this topic for the next cinder meeting | 16:25 |
fungi | it's been a little while | 16:25 |
fungi | there have been quite a few revisions of the kernel and cinder in the intervening period of time | 16:26 |
*** mriedem1 has joined #openstack-infra | 16:26 | |
*** mriedem1 has quit IRC | 16:26 | |
e0ne | #link https://bugs.launchpad.net/cinder/+bug/1472803 | 16:26 |
openstack | Launchpad bug 1472803 in Cinder "Move to thin LVM as the default configuration" [Wishlist,In progress] - Assigned to Eric Harney (eharney) | 16:26 |
*** adrian_otto has joined #openstack-infra | 16:26 | |
smcginnis | fungi: And that's most likely pre-Xenial, so things could definitely be better now. | 16:26 |
*** mriedem1 has joined #openstack-infra | 16:27 | |
smcginnis | I think if we can test that out and it works, switching to thin provisioning is probably a much better answer, at least at this point. | 16:27 |
*** mriedem1 is now known as mriedem_afk | 16:27 | |
fungi | yeah, certainly seems worth a shot, as long as you don't exceed your overprovisioning expectations | 16:27 |
fungi | i assume you're not actually writing much data to these | 16:27 |
eharney | is this about the functional test space issues? | 16:28 |
fungi | right | 16:28 |
eharney | i thought of this the other day, and looked, i thought that job was already using thin lvm... | 16:28 |
*** gmann has quit IRC | 16:28 | |
*** annegentle has quit IRC | 16:28 | |
*** mriedem has quit IRC | 16:28 | |
fungi | for the cinderclient functional job? | 16:28 |
eharney | yes, let me look again | 16:29 |
*** annegentle has joined #openstack-infra | 16:29 | |
*** abregman has joined #openstack-infra | 16:29 | |
eharney | http://logs.openstack.org/61/395361/1/check/gate-cinderclient-dsvm-functional/152c91f/logs/screen-c-vol.txt.gz#_2016-11-09_04_43_30_158 | 16:30 |
eharney | lvm_type = thin | 16:30 |
*** degorenko is now known as degorenko|afk | 16:30 | |
fungi | okay, in which case https://review.openstack.org/392192 isn't really going to increase on-disk utilization from 10gb to 16gb, we're already oversubscribing heavily? | 16:31 |
*** arxcruz has quit IRC | 16:31 | |
fungi | just want to make sure we don't merge this and then block cinder/cinderclient changes due to lots of full filesystems on some of our more constrained providers | 16:32 |
clarkb | fungi: I did the maths based on my dstat devstack fs tracking change | 16:32 |
eharney | i'm not sure what to predict there, off the top of my head | 16:33 |
clarkb | the original bump to 24gb wouldve beenclose to a few gbleft | 16:33 |
clarkb | 16should leave at least 12gb or so free | 16:33 |
clarkb | and its just the functional job | 16:33 |
fungi | clarkb: is that based on actually adjusting the value, or just speculating based on thick-provisioned volumes? | 16:33 |
fungi | or is this creating a non-sparse backing file of the specified size? | 16:34 |
e0ne | eharney: we've got default lvm_max_over_subscription_ratio=1.0 in gates | 16:35 |
fungi | such that the (oversubscribed) 10gb backing file is insufficient for the number of volumes actually created under concurrency? | 16:35 |
*** abregman is now known as abregman|nb | 16:35 | |
fungi | aha, so it's thin-provisioned but not actually oversubscribing | 16:35 |
eharney | oh right | 16:36 |
clarkb | fungi: itwas based on what tempest jobs usebased on dstat | 16:36 |
smcginnis | Thickly thined. | 16:36 |
*** dkehn__ has quit IRC | 16:36 | |
fungi | clarkb: yeah, sounds like this is a non-sparse backing file used by lvm then | 16:36 |
eharney | does the tempest run actually generate data in a way where thin is likely to help much anyway? | 16:36 |
clarkb | fungi: ya so should consume full 10gb | 16:36 |
clarkb | eharney: its more to allow not needing to grow the non sparse backing file to the point where wehave no more disk space | 16:37 |
clarkb | sincethe functional job needs more than 10gbif not thin provisioned | 16:38 |
*** dteselkin has quit IRC | 16:39 | |
*** asilenkov has quit IRC | 16:40 | |
*** ativelkov has quit IRC | 16:40 | |
*** kzaitsev_ws has quit IRC | 16:40 | |
*** kzaitsev_ws has joined #openstack-infra | 16:40 | |
dmsimard | clarkb: when you have a chance, I would much appreciate a clarification on https://review.openstack.org/#/c/396428/ (added a comment) | 16:41 |
*** inc0 has quit IRC | 16:41 | |
fungi | e0ne: smcginnis: eharney: clarkb: so maybe the answer instead of 392192 is to just set lvm_max_over_subscription_ratio=10.0 or something? | 16:41 |
*** dteselkin has joined #openstack-infra | 16:41 | |
*** inc0 has joined #openstack-infra | 16:42 | |
*** piet has joined #openstack-infra | 16:42 | |
fungi | on the assumption that these tests write no more than 100mb to any 1gb volume? | 16:42 |
*** abregman|nb is now known as abregman | 16:43 | |
*** ativelkov has joined #openstack-infra | 16:43 | |
jeblair | pabelanger: review 395056; lemme know if you have questions | 16:43 |
*** Guest7605 has quit IRC | 16:43 | |
*** asilenkov has joined #openstack-infra | 16:43 | |
clarkb | dmsimard: currently on phone amd cant comment inline, but yes however removethe [L] from the rewriterule so that it will fall throughand do the other checkstoo | 16:45 |
clarkb | fungi: that is probably a safe assumption | 16:45 |
eharney | fungi: i'm not sure that changing the ratio will help | 16:47 |
*** wolverineav has quit IRC | 16:48 | |
fungi | eharney: perhaps not, but in that case i'm unclear on what the actual problem is 392192 attempts to solve | 16:48 |
eharney | that would help if we were hitting a quota/provisioning limit, but we were actually hitting a limit where the VG filled up and stopped working, iirc | 16:48 |
eharney | fungi: well, that's what i was just trying to figure out again. i believe it's trying to solve the case where we fill up the LVM VG that cinder is using | 16:48 |
dmsimard | clarkb: awesome ty | 16:48 |
fungi | looking closer at 1638302 now in hopes i missed something useful | 16:49 |
fungi | er, at bug 1638302 i mean | 16:49 |
openstack | bug 1638302 in python-cinderclient "gate-cinderclient-dsvm-functional is broken due to disk space limit" [Undecided,In progress] https://launchpad.net/bugs/1638302 - Assigned to Ivan Kolodyazhny (e0ne) | 16:49 |
*** armax has quit IRC | 16:49 | |
eharney | the error is here: http://logs.openstack.org/89/383989/1/check/gate-cinderclient-dsvm-functional/e4f7949/logs/screen-c-vol.txt.gz#_2016-10-08_02_08_18_221 | 16:49 |
eharney | where it hits: Volume group "stack-volumes-lvmdriver-1" has insufficient free space | 16:49 |
eharney | increasing the overprov ratio will make that worse, not better? | 16:50 |
*** nunchuck has joined #openstack-infra | 16:50 | |
fungi | so the tests are already attempting to write >10gb of data to disk? that seems inefficient | 16:50 |
eharney | i believe so | 16:50 |
*** armax has joined #openstack-infra | 16:51 | |
fungi | are these tests writing arbitrary amounts of gibberish in attached volumes, such that they could just be rewritted to write smaller block counts? | 16:51 |
fungi | er, rewritten | 16:51 |
eharney | ehh, i think something else may be going on here | 16:52 |
eharney | i'm about 60% sure these lvcreate calls should have a -T argument if using thin LVM, which i don't see | 16:52 |
*** EricGonczer_ has quit IRC | 16:52 | |
*** ralonsoh has quit IRC | 16:53 | |
eharney | oh. this particular job i'm looking at isn't even configured to use thin. Did that change recently? | 16:53 |
*** EricGonczer_ has joined #openstack-infra | 16:55 | |
*** david-lyle_ has joined #openstack-infra | 16:56 | |
*** walharthi has joined #openstack-infra | 16:57 | |
*** david-lyle has quit IRC | 16:58 | |
*** preethipy has joined #openstack-infra | 16:59 | |
*** wolverineav has joined #openstack-infra | 16:59 | |
*** degorenko|afk is now known as degorenko | 16:59 | |
*** panda is now known as panda|bbl | 17:00 | |
*** david-lyle_ has quit IRC | 17:01 | |
*** rajinir has joined #openstack-infra | 17:01 | |
*** nunchuck has quit IRC | 17:01 | |
*** nunchuck has joined #openstack-infra | 17:02 | |
*** kvcobb has joined #openstack-infra | 17:03 | |
*** abregman is now known as abregman|afk | 17:03 | |
jlvillal | Hey clarkb is it true that reproduce.sh must be run as root? https://github.com/openstack-infra/devstack-gate/blob/master/functions.sh#L195 | 17:04 |
*** wolverineav has quit IRC | 17:04 | |
*** cody-somerville has joined #openstack-infra | 17:04 | |
jlvillal | I have been running it as user jenkins. I didn't even know that it would work as root. | 17:04 |
*** cody-somerville has quit IRC | 17:04 | |
openstackgerrit | Ihar Hrachyshka proposed openstack-infra/project-config: neutron: add experimental Xenial rally job https://review.openstack.org/396673 | 17:05 |
*** flintcalvin has joined #openstack-infra | 17:05 | |
clarkb | jlvillal: running as jenkins on our images is fine, I think that text is there to avoid a barrage of "it didn't work when I ran as $user" | 17:06 |
clarkb | jlvillal: the actual requirement is to run as a user with sudo privs | 17:06 |
jlvillal | clarkb: Okay. And it should run properly as root then, I assume. | 17:06 |
jlvillal | Thanks | 17:06 |
*** rossella_s has quit IRC | 17:06 | |
clarkb | yes also it installs a zuul env if you don't ahve one which may actually need root i would have to chekc that | 17:06 |
*** tojuvone has joined #openstack-infra | 17:06 | |
clarkb | (the images we use come with one preinstalled) | 17:06 |
*** tojuvone_ has joined #openstack-infra | 17:06 | |
fungi | need to step away for a few. bbiab | 17:06 |
*** walharthi has quit IRC | 17:07 | |
*** tojuvone_ has quit IRC | 17:07 | |
*** cody-somerville has joined #openstack-infra | 17:08 | |
*** Swami has joined #openstack-infra | 17:08 | |
*** EricGonczer_ has quit IRC | 17:08 | |
flintcalvin | hi folks, is there someone I could contact to get help on resolving a problem I've introduced by having two openstack review accounts using the same email address? | 17:08 |
*** thethorongil has joined #openstack-infra | 17:08 | |
clarkb | flintcalvin: yes an infra rooter should be able to help of which there are a few awake and present here now | 17:09 |
openstackgerrit | Oliver Walsh proposed openstack/diskimage-builder: In disk-image-create, append to INSTALL_PACKAGES instead of clobbering. This allows -p <packagelist> to be used multiple times. https://review.openstack.org/396702 | 17:09 |
clarkb | flintcalvin: the first thing that we need to know is what the two accounts are (we can probably sort that out if you have the email address) | 17:09 |
clarkb | or a gerrit account id number | 17:09 |
*** mdrabe has joined #openstack-infra | 17:11 | |
clarkb | flintcalvin: then typicaly what we will do is attach all openids to a single account and mark the other account inactive (unusable) | 17:12 |
openstackgerrit | Oliver Walsh proposed openstack/diskimage-builder: In disk-image-create, append to INSTALL_PACKAGES instead of clobbering. https://review.openstack.org/396702 | 17:12 |
*** thethorongil has quit IRC | 17:12 | |
flintcalvin | thanks @clarkb! the email address for both accounts is flint.calvin@hpe.com. the one I want to keep is for account 7565. | 17:12 |
openstackgerrit | Paul Belanger proposed openstack-infra/zuul: Re-enable test_repo_deleted test https://review.openstack.org/396703 | 17:12 |
pabelanger | jeblair: sure, I'll look shortly | 17:12 |
*** thethorongil has joined #openstack-infra | 17:12 | |
*** jkilpatr_ has quit IRC | 17:12 | |
flintcalvin | I don't need two accounts (not even sure how/why I got the second one). | 17:13 |
clarkb | flintcalvin: your openid in launchpad probably changed (often due to changing your email address there) | 17:13 |
*** abregman|afk is now known as abregman|nb | 17:14 | |
flintcalvin | yes, I was updating it to change my email address from hp.com to hpe.com | 17:14 |
clarkb | and I have just confirmed that, I have two openids for that same email addr | 17:14 |
*** lezbar has quit IRC | 17:14 | |
*** thethorongil has quit IRC | 17:15 | |
*** thethorongil has joined #openstack-infra | 17:15 | |
*** lezbar has joined #openstack-infra | 17:15 | |
*** thethorongil has quit IRC | 17:15 | |
*** asettle has quit IRC | 17:15 | |
*** jpich has quit IRC | 17:16 | |
*** asettle has joined #openstack-infra | 17:16 | |
*** sambetts is now known as sambetts|afk | 17:16 | |
clarkb | fungi: does `UPDATE account_external_ids SET account_id = 7565 WHERE account_id = 24151;` look right to you? | 17:16 |
clarkb | (I was up very early this morning with very unhappy daughter so don't trust my ability to ninja sql in the slightest) | 17:17 |
*** e0ne has quit IRC | 17:18 | |
*** dprince has joined #openstack-infra | 17:19 | |
*** lezbar has quit IRC | 17:20 | |
clarkb | AJaeger_: Olena hey so when do we want to make openstack manuals stable/newton branch? and base it on HEAD? | 17:20 |
openstackgerrit | sebastian marcet proposed openstack-infra/openstackid: Upgrade to LV 5.2 https://review.openstack.org/305521 | 17:20 |
openstackgerrit | Paul Belanger proposed openstack-infra/zuul: Re-enable test_check_smtp_pool test https://review.openstack.org/396707 | 17:21 |
*** Apoorva has joined #openstack-infra | 17:22 | |
openstackgerrit | Ihar Hrachyshka proposed openstack-infra/project-config: neutron: add experimental Xenial rally job https://review.openstack.org/396673 | 17:24 |
tsufiev | clarkb, o/ So, speaking of firefox and webdriver issues... | 17:24 |
*** dtantsur is now known as dtantsur|afk | 17:24 | |
clarkb | armax: AJaeger_ re that zuul regex that was what neutron wanted, I did not want it but meh :) | 17:24 |
*** rbuzatu_ has joined #openstack-infra | 17:25 | |
armax | clarkb: I am happy to revise it the way you like it | 17:25 |
armax | clarkb: I don’t recall any conversation in this regard, but my memory is failing | 17:25 |
clarkb | armax: cool, basically neutron didn't want to stop running the trusty stuff against master/newton because xenial was seen as not ready | 17:25 |
armax | clarkb: nah | 17:26 |
armax | clarkb: nonsense :) | 17:26 |
clarkb | if you think xenial is ready now then lets just switch properly | 17:26 |
*** jkilpatr_ has joined #openstack-infra | 17:26 | |
armax | clarkb: except functional and fullstack jobs | 17:26 |
tsufiev | clarkb, driver signing is not the only problem with newer firefoxes | 17:26 |
armax | clarkb: I could not expect instability in rally/API jobs | 17:27 |
clarkb | tsufiev: so even a signed and laoded driver will not work with eg ff49? | 17:27 |
armax | clarkb: the full jobs has proven stable | 17:27 |
armax | clarkb: so I think it’s safe to switch | 17:27 |
*** rbuzatu has quit IRC | 17:27 | |
armax | ihrachys: ^ | 17:27 |
clarkb | armax: ya for the most part things have just worked, really its only been where "weird" things are happening like compiling ovs from scratch against old kernels that we have seen trouble (that and anything that expects sslv3 to still exist being unhappy) | 17:28 |
armax | clarkb: I’ll revise the regex for the API job for sure | 17:28 |
armax | as now we’re running it twice on stable/newton changes | 17:28 |
*** adrian_otto has quit IRC | 17:29 | |
openstackgerrit | Merged openstack-infra/project-config: Request to add new project nova-dpm https://review.openstack.org/395560 | 17:29 |
tsufiev | clarkb, our tests won't work with loaded driver, that's the issue | 17:30 |
clarkb | ianw: image uploads looks much happier this morning. We have the set of stragglers from your attempts before still trying to go (likely just gonna have to flush those out of the db and restart the daemon? and then 4 other uploads all to ovh bhs1 which should have its problems addressed by latest shade (which we can pick up in that same restart) | 17:30 |
tsufiev | because loaded driver works with marionette api, which doesn't work with our tests yet | 17:30 |
clarkb | tsufiev: my understanding was that you could use the old driver if you signed it locally | 17:30 |
clarkb | tsufiev: in which case your existing code should still work | 17:30 |
clarkb | but maybe I misread the bug reports | 17:31 |
*** priteau has quit IRC | 17:31 | |
clarkb | there is also the new selenium v3 thing that uses marionette which isn't expected to be backward compatible | 17:31 |
tsufiev | clarkb, nope, starting from ff 48 (or 49?) they broke compatibility with older webdriver | 17:31 |
tsufiev | driver signing issue was only the beginning | 17:32 |
clarkb | tsufiev: yes because it stopped loading unsigned drivers | 17:32 |
clarkb | and mozilla refused to sign it | 17:32 |
*** wolverineav has joined #openstack-infra | 17:33 | |
*** priteau has joined #openstack-infra | 17:33 | |
* tsufiev looking for the link | 17:34 | |
armax | clarkb: one point of confusion I still have is: are we gonna keep trusty for grenade only? | 17:34 |
armax | clarkb: I mean, we can drop trusty off completely once mitaka is EOL, is my understanding correct? | 17:34 |
clarkb | tsufiev: I tried to follow through all the bugs and their links yesterday to undersatnd the situation | 17:34 |
clarkb | armax: correct. mitaka -> newton grenade runs on trusty | 17:34 |
clarkb | armax: newton -> ocata runs on xenial | 17:34 |
clarkb | tsufiev: its totally possible I misunderstood some of the finer details | 17:35 |
armax | clarkb: so, you’d expect us to transition to xenial everywhere except grenade | 17:35 |
armax | clarkb: at least this is the assumption I am operating under | 17:35 |
tsufiev | clarkb, I guess it may be totally possible to run newer firefox with selenium < 3 and w/o marionette | 17:36 |
*** mhickey has quit IRC | 17:36 | |
tsufiev | but the amount of related efforts seems to be as high as in the case of switching to marionette | 17:37 |
tsufiev | In other words, in theory it's doable, in practice - no one would bother | 17:37 |
clarkb | armax: correct, the base branch for grenade determines where we can run it, since mitaka was never tested on xenial its hard for us to enforce it there | 17:37 |
armax | clarkb: ack | 17:37 |
clarkb | armax: but that grenade job goes away at the same time mitaka EOLs so its fine from a cadence perspective | 17:37 |
*** wolverineav has quit IRC | 17:38 | |
clarkb | tsufiev: if you raed the bug many people were doing it... | 17:38 |
clarkb | tsufiev: basically the bug said if you are using 2.53 then sign the driver this way and it will work | 17:38 |
clarkb | then a bunch of people were happy | 17:38 |
openstackgerrit | David Moreau Simard proposed openstack-infra/puppet-openstackci: Improve handling of gzipped built html/web applications https://review.openstack.org/396428 | 17:39 |
*** kzaitsev_mb has quit IRC | 17:39 | |
clarkb | tsufiev: the other alternative was to use 46 or 45 ESR, but there seemed to be groups that were happy with both solutions implying the sign the driver yourself option was also viable | 17:40 |
openstackgerrit | Ihar Hrachyshka proposed openstack-infra/project-config: neutron: add experimental Xenial rally job https://review.openstack.org/396673 | 17:40 |
*** degorenko is now known as _degorenko|afk | 17:40 | |
tsufiev | clarkb, why are you so opposed to using 46 / 45 esr ;)? | 17:41 |
*** knangia has joined #openstack-infra | 17:41 | |
*** derekh has quit IRC | 17:42 | |
clarkb | tsufiev: because they will die one day in the not too distant future AND as a firefox user I don't want you testing on a version that is old and doesn't include many of the new features that are in use by current firefox like e10s | 17:42 |
openstackgerrit | Erlon R. Cruz proposed openstack-infra/devstack-gate: [DO NOT MERGE] Testing gate job https://review.openstack.org/396592 | 17:42 |
tsufiev | e10s? | 17:43 |
clarkb | some testing is better than no testing, but testing of old technology is less useful | 17:43 |
clarkb | tsufiev: firefoxes new split process system | 17:43 |
*** shardy has quit IRC | 17:43 | |
tsufiev | I'm afraid that we're going to have no testing then | 17:43 |
clarkb | I didn't say that... | 17:44 |
clarkb | I ahve already suggseted using the ESR release is fine | 17:44 |
clarkb | but I am cuirious to determine if we can't make testing current firefox work | 17:44 |
clarkb | and everything I read says it should be possible if you just sign the driver before running firefox... | 17:44 |
openstackgerrit | Armando Migliaccio proposed openstack-infra/project-config: Stop running gate-neutron-dsvm-api-ubuntu-trusty on newton backports https://review.openstack.org/396714 | 17:45 |
clarkb | (I have also suggested we could run chromium but that won't work for other reasons?) | 17:45 |
armax | AJaeger_, clarkb: ^ | 17:45 |
clarkb | armax: I think you can remove my TODO as well if tyou want | 17:45 |
armax | clarkb: sure, it was a NOTE, so I figured it was a pit of docs | 17:46 |
armax | :) | 17:46 |
clarkb | oh sorry should be a todo | 17:46 |
clarkb | and now its todone | 17:46 |
openstackgerrit | Armando Migliaccio proposed openstack-infra/project-config: Stop running gate-neutron-dsvm-api-ubuntu-trusty on newton backports https://review.openstack.org/396714 | 17:46 |
armax | done done | 17:46 |
clarkb | oh wait master is still in that list (its clearly too early in the am for me to read regexes) | 17:47 |
clarkb | armax: do you want to keep testing on master? | 17:47 |
armax | clarkb: you’re right, we don't | 17:48 |
armax | clarkb: let me tweak that | 17:48 |
clarkb | kk | 17:48 |
openstackgerrit | Ben Nemec proposed openstack-infra/tripleo-ci: POC: Use tripleo-repos in tripleo.sh https://review.openstack.org/395813 | 17:48 |
*** lucasagomes is now known as lucas-afk | 17:48 | |
tsufiev | clarkb, investigating all these wonderful possibilities does not fall into 'for fun' category and on the other hand I'm not paid for this either :( | 17:48 |
clarkb | tsufiev: the reality is the 45 ESR will stop being an options sometime around may/june | 17:49 |
tsufiev | neither anybody in horizon community is willing to undertake it | 17:49 |
clarkb | 46 sometime before then | 17:49 |
tsufiev | clarkb, that's plenty of time still | 17:49 |
clarkb | tsufiev: plenty of time for what? you are saying no one will do anything to fix this | 17:49 |
*** adrian_otto has joined #openstack-infra | 17:50 | |
clarkb | my point is if that matters in may/june it matters today at least enough to do simple due diligence before "fixing" a problem | 17:50 |
clarkb | all it would take is for someone to run a signed driver locally against the horizon testsuite to determine if that is viable | 17:50 |
fungi | clarkb: on that update query, you want to make sure you're not giving them additional usernames at least. i usually restrict the update to just openid url rows | 17:51 |
* tsufiev sighs | 17:51 | |
clarkb | tsufiev: but I have also said go ahead and use the ESR> I am not trying to prevent you from using a more reliable firefox | 17:51 |
clarkb | (especialyl since you are already using an older firefox ) | 17:51 |
tsufiev | firefox is our least problem when it comes to integration tests... | 17:52 |
clarkb | I just want people to understand its not viable past ~june and there may be a viable option today that will work longer | 17:52 |
tsufiev | which doesn't mean that it should be solved first to start solving other problems | 17:52 |
tsufiev | *that it shouldn't | 17:52 |
clarkb | but its like 2 minutes of work | 17:52 |
clarkb | sign dirver, run tests | 17:53 |
tsufiev | how do I sign the driver? | 17:53 |
clarkb | then you will know if it is an option or not | 17:53 |
*** nherciu has joined #openstack-infra | 17:53 | |
clarkb | tsufiev: let me dig up the bug report with the details | 17:53 |
tsufiev | actually, we don't use a separate driver | 17:53 |
tsufiev | at all | 17:53 |
tsufiev | we just use the one which is prepackaged inside python selenium library | 17:53 |
clarkb | yes tahts the one you have to sign | 17:53 |
clarkb | because its not signed and firefox will not load unsigned drivers aynmore | 17:54 |
*** e0ne has joined #openstack-infra | 17:54 | |
tsufiev | yep, and that means we cannot use selenium library as is | 17:54 |
*** wolverineav has joined #openstack-infra | 17:54 | |
clarkb | tsufiev: https://github.com/SeleniumHQ/selenium/issues/2559#issuecomment-254065113 was the first thing | 17:54 |
*** yamahata has quit IRC | 17:55 | |
*** chuckC_ has quit IRC | 17:55 | |
clarkb | there is a longer bug thread I am trying to find with much more detail on it | 17:55 |
*** wolverin_ has joined #openstack-infra | 17:55 | |
clarkb | oh its the comment above that one | 17:55 |
clarkb | https://github.com/SeleniumHQ/selenium/issues/2559#issuecomment-254062784 | 17:55 |
clarkb | https://github.com/SeleniumHQ/selenium/issues/2942 and tahts the longer thread (it was marked as dup but has good details) | 17:56 |
*** walharthi has joined #openstack-infra | 17:56 | |
tsufiev | clarkb, okay, I'll leave for the next week | 17:56 |
tsufiev | it's around 9pm in my tz, time to go | 17:56 |
*** d0ugal has quit IRC | 17:57 | |
clarkb | fungi: let me double check the rows don't include a username | 17:57 |
openstackgerrit | John L. Villalovos proposed openstack-infra/devstack-gate: Add GRENADE_PLUGINRC and TEMPEST_CONCURRENCY to reproduce.sh https://review.openstack.org/396717 | 17:57 |
clarkb | fungi: 24151 has no username rows | 17:57 |
clarkb | in the external ids table | 17:57 |
*** david-lyle has joined #openstack-infra | 17:58 | |
fungi | clarkb: perfect | 17:58 |
*** wolverineav has quit IRC | 17:58 | |
fungi | then yes, your update query seems right | 17:58 |
fungi | and then mark 24151 inactive once you're done | 17:59 |
openstackgerrit | Merged openstack/os-client-config: Remove validate_auth_ksc https://review.openstack.org/368778 | 17:59 |
clarkb | tsufiev: looks like there is a new comment from a mozillaer saying that they probably won't fix any issues that break the old driver (however it appears that it should still work and with 53, 52 is next planned ESR so that gets you potentially more time to use selenium 3) | 17:59 |
*** wolverin_ has quit IRC | 18:00 | |
openstackgerrit | Merged openstack/os-client-config: Normalize cloud config before osc-lib call https://review.openstack.org/389636 | 18:00 |
*** Goneri has joined #openstack-infra | 18:01 | |
clarkb | flintcalvin: so to double check you want to use 7565 going forward? | 18:01 |
clarkb | flintcalvin: if so I can go ahead and update the DB and get you sorted out | 18:01 |
*** tiswanso has quit IRC | 18:01 | |
openstackgerrit | Armando Migliaccio proposed openstack-infra/project-config: Stop running gate-neutron-dsvm-api-ubuntu-trusty on master and newton backports https://review.openstack.org/396714 | 18:01 |
armax | clarkb: ^ sorry for the glitch, I was too hasty | 18:02 |
flintcalvin | clarkb: yes, keep 7565 | 18:02 |
*** tosky has quit IRC | 18:02 | |
*** david-lyle has quit IRC | 18:03 | |
clarkb | flintcalvin: fungi ok the db is all updated and 24151 is inactive | 18:03 |
*** mriedem_afk is now known as mriedem | 18:03 | |
clarkb | fungi: do you know if i have to clear caches too? | 18:04 |
flintcalvin | clarkb: thank you very much! | 18:04 |
openstackgerrit | James E. Blair proposed openstack-infra/nodepool: Remove snapshot support https://review.openstack.org/396719 | 18:04 |
fungi | clarkb: shouldn't need to, no. just log out and back in should work | 18:04 |
clarkb | flintcalvin: ^ please give that a try and make sure its working as expected | 18:05 |
fungi | or at least i've seen it work in recent history without flushing caches | 18:05 |
*** chandankumar has joined #openstack-infra | 18:05 | |
*** trown is now known as trown|lunch | 18:06 | |
flintcalvin | clarkb: the changes seemed to have resolved my issue (i.e., not being able to be added to reviews)...thanks again! | 18:07 |
*** wolverineav has joined #openstack-infra | 18:07 | |
*** rcernin has joined #openstack-infra | 18:10 | |
*** makowals has quit IRC | 18:10 | |
*** wolverineav has quit IRC | 18:11 | |
*** wolverineav has joined #openstack-infra | 18:11 | |
*** d0ugal has joined #openstack-infra | 18:11 | |
*** ihrachys has quit IRC | 18:12 | |
*** wolverineav has quit IRC | 18:12 | |
*** rcernin has quit IRC | 18:12 | |
*** wolverineav has joined #openstack-infra | 18:12 | |
*** jerryz has joined #openstack-infra | 18:12 | |
*** tphummel has quit IRC | 18:13 | |
clarkb | mordred: would be great to get a nodepool restart in today for pciking up new shade | 18:13 |
*** makowals has joined #openstack-infra | 18:14 | |
clarkb | mordred: I am around to help with that (the current image upload all look "lost" and at least 4 of them should have their issues addressed by that new shade version so worth stopping them I think) | 18:14 |
*** ijw has quit IRC | 18:15 | |
*** piet has quit IRC | 18:16 | |
clarkb | mordred: jeblair pabelanger also if you want to review https://review.openstack.org/#/c/370455/ to fix our subnode leaking that would be good to get in as well | 18:17 |
*** makowals has quit IRC | 18:18 | |
*** tiswanso has joined #openstack-infra | 18:21 | |
*** hurgleburgler has quit IRC | 18:22 | |
*** tiswanso has quit IRC | 18:22 | |
*** tiswanso has joined #openstack-infra | 18:23 | |
openstackgerrit | sebastian marcet proposed openstack-infra/openstackid: Upgrade to LV 5.2 https://review.openstack.org/305521 | 18:23 |
*** tiswanso has quit IRC | 18:24 | |
*** asettle has quit IRC | 18:24 | |
*** tiswanso has joined #openstack-infra | 18:25 | |
*** preethipy has quit IRC | 18:27 | |
pabelanger | looking | 18:29 |
*** david-lyle_ has joined #openstack-infra | 18:30 | |
*** rhallisey has quit IRC | 18:30 | |
*** electrofelix has quit IRC | 18:30 | |
*** rhallisey has joined #openstack-infra | 18:31 | |
openstackgerrit | Armando Migliaccio proposed openstack-infra/project-config: Switch to xenial-based grenade multinode jobs (w/ and w/o dvr) for newton and above https://review.openstack.org/396668 | 18:33 |
*** jpena is now known as jpena|off | 18:33 | |
jeblair | clarkb, calebb: why move the subnode wait block before the primary node delete/wait block? | 18:34 |
jeblair | i ask because doing it afterwords means that we issue all the deletes before we wait. but moving it before means that we issue the primary node delet only after the subnode waits. so the process will take longer. | 18:34 |
pabelanger | follow up question, couldn't it be merged into line 1895 too? | 18:34 |
*** yamahata has joined #openstack-infra | 18:35 | |
jeblair | pabelanger: no because the idea is issue deletes, then wait. | 18:35 |
pabelanger | ack | 18:35 |
jeblair | pabelanger: since deletes are slow -- send out all the requests, then wait until they are all complete. | 18:35 |
pabelanger | thanks | 18:36 |
openstackgerrit | Thanh Ha proposed openstack-infra/jenkins-job-builder: Add convenience function for plugin namespace https://review.openstack.org/357960 | 18:36 |
*** david-lyle_ has quit IRC | 18:36 | |
*** david-lyle has joined #openstack-infra | 18:36 | |
clarkb | jeblair: oh right that was the initial idea that we were losing the delete because it was after I thi k it cango back with the indentationmove only | 18:36 |
jeblair | cool | 18:36 |
pabelanger | jeblair: I was asking since we did both for node.external_id on line 1914 | 18:36 |
*** wolverineav has quit IRC | 18:37 | |
pabelanger | but only 1 node it looks like | 18:37 |
jeblair | pabelanger: yes, but that's the last delete request followed by the first wait request | 18:37 |
pabelanger | cool, thanks for the info | 18:37 |
*** annegentle has quit IRC | 18:37 | |
*** pblaho has quit IRC | 18:38 | |
jeblair | so it's [<del sub1> <del subN>] [<del primary> <wait primary>] [<wait sub1> <wait subN>] | 18:38 |
*** rbuzatu_ has quit IRC | 18:38 | |
mordred | clarkb: I'm also around, so happy to be involved in a restart | 18:39 |
*** annegentle has joined #openstack-infra | 18:39 | |
*** rbuzatu has joined #openstack-infra | 18:39 | |
armax | clarkb: it’s not like I can bug you for a blessing here: https://review.openstack.org/#/c/361432/ (whenever you have a chance?) thansk | 18:39 |
*** wolverineav has joined #openstack-infra | 18:40 | |
*** Sukhdev has joined #openstack-infra | 18:40 | |
openstackgerrit | Erlon R. Cruz proposed openstack-infra/devstack-gate: [DO NOT MERGE] Testing gate job https://review.openstack.org/396592 | 18:40 |
armax | clarkb: also this one: https://review.openstack.org/#/c/396668/ should get rid of trusty-based neutron multinode grenade jobs in newton/master | 18:40 |
openstackgerrit | Merged openstack-infra/storyboard: remove final vestiges of incubated oslo code https://review.openstack.org/394571 | 18:41 |
jeblair | #status log This message is to inform you that our monitoring systems have detected a problem with the server which hosts your Cloud Block Storage device 'wiki-dev.openstack.org/main01' at 18:27 UTC. We are currently investigating the issue and will update you as soon as we have additional information regarding the alert. Please do not access or modify 'wiki-dev.openstack.org/main01' during this process. | 18:43 |
openstackstatus | jeblair: finished logging | 18:43 |
jeblair | infra-root: ^ | 18:43 |
*** yamahata has quit IRC | 18:44 | |
*** wolverineav has quit IRC | 18:44 | |
*** yamahata has joined #openstack-infra | 18:45 | |
*** ijw has joined #openstack-infra | 18:47 | |
*** asselin has quit IRC | 18:47 | |
*** kzaitsev_mb has joined #openstack-infra | 18:48 | |
*** rbrndt_ has quit IRC | 18:49 | |
*** piet has joined #openstack-infra | 18:49 | |
*** denisra has quit IRC | 18:51 | |
fungi | jeblair: thanks! luckily (as its name implies), it's not in production yet | 18:52 |
fungi | well, that one will never be in production, but the config-managed deployment model used for that hasn't been reused for a new production server yet | 18:52 |
*** tonytan4ever has joined #openstack-infra | 18:54 | |
*** tonytan4ever has quit IRC | 18:54 | |
*** tonytan4ever has joined #openstack-infra | 18:54 | |
*** harlowja has joined #openstack-infra | 18:55 | |
*** e0ne has quit IRC | 18:56 | |
jeblair | poor server :( | 18:56 |
*** Goneri has quit IRC | 18:58 | |
*** jkilpatr_ has quit IRC | 18:59 | |
*** annegentle has quit IRC | 18:59 | |
*** trown|lunch is now known as trown | 19:00 | |
*** jkilpatr has joined #openstack-infra | 19:01 | |
*** annegentle has joined #openstack-infra | 19:01 | |
clarkb | mordred: ok, the dib builds hve completed and we are back to the upload portion of the days image circuit | 19:01 |
mordred | yay uploads! | 19:01 |
clarkb | mordred: should be ready to restart things whenever you are ready | 19:01 |
mordred | clarkb: I'm ready | 19:02 |
clarkb | mordred: do you want to drive or should I? | 19:02 |
mordred | either way - I'm checking that the newest shade is installed now | 19:02 |
clarkb | ok | 19:02 |
mordred | mordred@nodepool:~$ pbr freeze | grep shade | 19:02 |
mordred | shade==1.13.0 # git sha 37027c2 | 19:02 |
mordred | so that's good | 19:02 |
*** d0ugal has quit IRC | 19:02 | |
*** EricGonczer_ has joined #openstack-infra | 19:02 | |
mordred | clarkb: /etc/init.d/nodepool-builder stop ; /etc/init.d/nodepool-builder start yeah? | 19:03 |
clarkb | mordred: the trick with the multi process setup is to stop nodepool-deleter last and start it first | 19:03 |
mordred | ah. | 19:03 |
clarkb | mordred: yup, though I think we want to do the other daemons too? | 19:03 |
mordred | yah. I think you're right | 19:03 |
clarkb | (builder is the big one, but I think ist best to find issues all at once rather than later) | 19:03 |
clarkb | mordred: I would do builder, launcher, daemon, deleter, then start in reverse order | 19:04 |
*** nherciu has quit IRC | 19:04 | |
mordred | yah. so stop builder. stop launcher. stop deleter, then ... yah | 19:04 |
mordred | k. stopping daemons | 19:04 |
clarkb | mordred: don't forget we still run nodepoold | 19:04 |
clarkb | so there are total of 4 to stop then start | 19:04 |
mordred | k. all stopped | 19:05 |
clarkb | they all looked stopped to me too | 19:05 |
mordred | deleter started | 19:05 |
*** csomerville has joined #openstack-infra | 19:05 | |
openstackgerrit | Isaku Yamahata proposed openstack-infra/project-config: networking-odl: make rally job voting https://review.openstack.org/395298 | 19:06 |
clarkb | looks like its running and happy | 19:06 |
mordred | daemon starter | 19:06 |
mordred | started | 19:06 |
*** ijw has quit IRC | 19:06 | |
mordred | launcher started | 19:07 |
*** pcaruana has quit IRC | 19:07 | |
mordred | so far nothing looks broken - it's almost like we have testing | 19:07 |
openstackgerrit | Paul Belanger proposed openstack-infra/zuul: [WIP] Implement tracking of launch attempts for jobs https://review.openstack.org/395056 | 19:07 |
clarkb | ya my skimming of status commands and logs shows things appear to be happy so far | 19:08 |
mordred | ++ | 19:08 |
pabelanger | jeblair: thanks for the suggestions^, is that what you were thinking for the launcher side? | 19:08 |
mordred | starting builder | 19:08 |
clarkb | nodes have transitioned to ready and all that | 19:08 |
*** cody-somerville has quit IRC | 19:09 | |
*** HeOS has joined #openstack-infra | 19:09 | |
clarkb | mordred: once the builder is started I think we want to run a manual upload to osic-cloud1 just to check expected working cloud still functions and broken cloud hopefully functions better too | 19:09 |
mordred | clarkb: k. builder is started | 19:09 |
*** EricGonc_ has joined #openstack-infra | 19:10 | |
clarkb | mordred: something like sudo -H -u nodepool nodepool image-upload osic-cloud1 ubuntu-xenial and sudo -H -u nodepool nodepool image-upload ovh-bhs1 ubuntu-xenial | 19:11 |
*** EricGonczer_ has quit IRC | 19:11 | |
openstackgerrit | Caleb Boylan proposed openstack-infra/nodepool: Fix subnode deletion https://review.openstack.org/370455 | 19:12 |
pabelanger | jeblair: I think I have the buildset logic incorrect | 19:13 |
pabelanger | let me look into it again | 19:13 |
mordred | clarkb: on it | 19:13 |
*** jamesdenton has joined #openstack-infra | 19:14 | |
clarkb | mordred: and if that all works we can go enjoy the holiday and weekend | 19:14 |
*** wolverineav has joined #openstack-infra | 19:14 | |
mordred | clarkb: turns out doing that as me in my home directory did not work because I have a clouds.yaml ther e:) | 19:15 |
mordred | provider = self.pool.config.providers[self.args.provider] | 19:15 |
mordred | KeyError: 'osic-cloud1' | 19:15 |
mordred | clarkb: ^^ aroo? | 19:15 |
clarkb | mordred: ya the sudo -H is important :) | 19:15 |
clarkb | mordred: maybe we call it something else /me double checks | 19:15 |
clarkb | oh right | 19:16 |
clarkb | we have the disk provider things | 19:16 |
*** EricGonc_ has quit IRC | 19:16 | |
clarkb | mordred: use osic-cloud1-disk | 19:16 |
mordred | blerg | 19:16 |
*** EricGonczer_ has joined #openstack-infra | 19:16 | |
*** dkehn_ has joined #openstack-infra | 19:17 | |
mordred | clarkb: this is very boring to watch | 19:17 |
*** nherciu has joined #openstack-infra | 19:17 | |
jeblair | we should add a spinning cursor in v3 | 19:18 |
clarkb | jeblair: or nyan cat | 19:18 |
*** EricGonczer_ has quit IRC | 19:18 | |
*** wolverineav has quit IRC | 19:19 | |
mordred | jeblair: or a progress bar that gets to 98% quickly and then spins for a few hours | 19:20 |
clarkb | mordred: ooh and then asks for disk 2, then disk 1 agagin | 19:20 |
mordred | clarkb: ++ | 19:21 |
clarkb | jeblair: remember when you said I had to rewatch BSG? well I have all the seasons on dvd which is great, except modern first world problem no longer is there a dvd player connected to my television | 19:21 |
clarkb | and I can't easily rip the dvds because I don't have a spinning disk drive anymore | 19:22 |
mordred | clarkb: I just got my blu-ray player working yesterday - it took more effort than I would have liked | 19:22 |
jeblair | clarkb: you should go watch it at mordred's | 19:24 |
openstackgerrit | Jeremy Stanley proposed openstack-infra/bindep: Remove unused module index in documentation https://review.openstack.org/396745 | 19:26 |
openstackgerrit | Jeremy Stanley proposed openstack-infra/bindep: Move dev reference from readme to contributing https://review.openstack.org/396746 | 19:26 |
openstackgerrit | Jeremy Stanley proposed openstack-infra/bindep: Use the autodoc Sphinx extension https://review.openstack.org/396747 | 19:26 |
*** asselin has joined #openstack-infra | 19:26 | |
*** rbuzatu_ has joined #openstack-infra | 19:27 | |
mordred | clarkb: ok. upload to osic1 worked | 19:28 |
clarkb | mordred: woot that didnt regress then | 19:28 |
mordred | trying ovh-bhs1 | 19:28 |
*** priteau has quit IRC | 19:30 | |
*** rbuzatu has quit IRC | 19:30 | |
fungi | clarkb: no connected game console which could possibly double as a player? | 19:30 |
clarkb | fungi: not anymore since I wall mounted the tv | 19:31 |
openstackgerrit | Erlon R. Cruz proposed openstack-infra/devstack-gate: [DO NOT MERGE] Testing gate job https://review.openstack.org/396592 | 19:31 |
fungi | i wall mounted all of mine behind the tv | 19:31 |
clarkb | I am torn about mounting ps4 since Ican play not without kids bugging me | 19:32 |
cloudnull | does anyone know if there's a way to control the growroot in DIB ? | 19:32 |
*** adrian_otto1 has joined #openstack-infra | 19:32 | |
*** ijw has joined #openstack-infra | 19:33 | |
cloudnull | I found the element cloud-init-disable-resizefs but I'm curious if there's a way to specify the amount the fs is allowed to be resized . | 19:33 |
*** makowals has joined #openstack-infra | 19:33 | |
*** nherciu has quit IRC | 19:33 | |
fungi | clarkb: i used several models from "HIDEit Mounts" for various devices, and for the rest i used screw-in drywall anchors in conjunction with l-hooks of the appropriate thread spaced just right to retain smaller/lighter devices | 19:34 |
*** persia has quit IRC | 19:34 | |
*** adrian_otto has quit IRC | 19:34 | |
fungi | cloudnull: probably depends on whether you're using cloud-init or simple-init | 19:35 |
openstackgerrit | James E. Blair proposed openstack-infra/nodepool: Remove snapshot support https://review.openstack.org/396719 | 19:35 |
openstackgerrit | James E. Blair proposed openstack-infra/nodepool: Remove diskimage parameter from config https://review.openstack.org/396749 | 19:35 |
*** adrian_otto1 has quit IRC | 19:36 | |
clarkb | cloudnull: fungi iirc there is a script that calls growroot and passes in the size stuff you may be able to modify that? | 19:36 |
* fungi predicts some exciting cleanup in nodepool's near future ;) | 19:37 | |
*** asselin has quit IRC | 19:37 | |
*** ijw has quit IRC | 19:37 | |
cloudnull | clarkb: looking into that now | 19:38 |
clarkb | fungi: do you have https://hideitmounts.com/products/hideit-4-ps4-mount-oembed?variant=7365273409 any idea if I can have the playstation face to the right? | 19:38 |
cloudnull | fungi: we're using cloud-init | 19:38 |
*** adrian_otto has joined #openstack-infra | 19:38 | |
clarkb | oh the features list says left or right side om | 19:39 |
clarkb | s/om/ok/ | 19:39 |
*** flintcalvin has quit IRC | 19:39 | |
fungi | clarkb: that's the one i have, though mine is facing left | 19:40 |
fungi | i've got all my devices that take inserted media lined up just behind the left edge of my screen for easy access | 19:40 |
*** rhallisey has quit IRC | 19:43 | |
*** annegentle has quit IRC | 19:44 | |
*** wolverineav has joined #openstack-infra | 19:45 | |
inc0 | hey guys, I'd love to get back to discussion about having docker registry in infra regions | 19:45 |
*** rajinir has quit IRC | 19:46 | |
inc0 | anything you can point me to so I could learn a little bit about what's involved? | 19:46 |
pabelanger | I'm not sure how docker registry works, but how do you share information between them? | 19:47 |
pabelanger | since we'd need to keep the state information for each registry the same in each cloud region | 19:47 |
clarkb | I want to say it can store its contents to an object store like swift, not sure if it could also use something lik afs | 19:48 |
pabelanger | Have you thought more about just having the job stand up a local registry, first? And the fetching the image from tarballs.o.o for it | 19:48 |
inc0 | it can use aufs | 19:48 |
clarkb | inc0: aufs != afs :) | 19:48 |
*** csomerville has quit IRC | 19:48 | |
inc0 | ah | 19:48 |
inc0 | well | 19:49 |
*** annegentle has joined #openstack-infra | 19:49 | |
pabelanger | mordred might has some thoughts too | 19:49 |
*** wolverineav has quit IRC | 19:49 | |
*** aneliubin has quit IRC | 19:49 | |
*** rajinir has joined #openstack-infra | 19:49 | |
clarkb | looks like it can write to any old filesystem so that may work | 19:50 |
clarkb | but also supports swift | 19:50 |
pabelanger | could be nice having it use afs | 19:51 |
inc0 | easiest way would be to push to multiple registries | 19:51 |
*** zzelle has quit IRC | 19:51 | |
inc0 | for registry in list_of_registries; docker push --registry=registry | 19:52 |
pabelanger | could have some network issues with that approach I believe | 19:52 |
clarkb | pabelanger: of course the problem then bceause if you write to one registry what happens when you read from another | 19:52 |
inc0 | so it won't be that big | 19:52 |
inc0 | not nearly as bad as images | 19:53 |
*** Goneri has joined #openstack-infra | 19:53 | |
pabelanger | clarkb: right | 19:53 |
inc0 | as it reuses it's layers | 19:53 |
*** priteau has joined #openstack-infra | 19:53 | |
pabelanger | clarkb: I think a good first step, would be get containers into AFS, then have jobs downloads said container. Then, if you still need a registry, stand one up as part of your testing | 19:54 |
clarkb | mordred is probably the best person to chime in though as he has familiarity with our current distributed mirroring system, afs, and docker registry | 19:54 |
*** wolverineav has joined #openstack-infra | 19:54 | |
*** wolverineav has quit IRC | 19:54 | |
inc0 | so I'm not quite sure where docker registry keeps it's images, but I'm pretty sure we can hack around it and break it down to a directory | 19:55 |
*** wolverineav has joined #openstack-infra | 19:55 | |
inc0 | if we sync directory, we're good | 19:55 |
*** wolverineav has quit IRC | 19:55 | |
*** rbrndt_ has joined #openstack-infra | 19:55 | |
clarkb | inc0: it can write to a filesystem dir yes | 19:55 |
clarkb | inc0: so then the question becomes does it keep a secondary index that needs updating if writing to afs | 19:55 |
pabelanger | and because I don't know, a docker registry is the only way you get server up containers for docker? | 19:55 |
clarkb | if not then it may just work (tm) to have them running backed by afs | 19:55 |
pabelanger | we can't just use apache? | 19:55 |
inc0 | https://docs.docker.com/registry/deploying/#/storage | 19:56 |
*** wolverineav has joined #openstack-infra | 19:56 | |
*** wolverineav has quit IRC | 19:56 | |
clarkb | inc0: pabelanger what will be writing to the registry and what will read from the registry? | 19:57 |
inc0 | so idea is to write set of images every time we merge stuff to kolla, that will change images | 19:58 |
inc0 | not that often | 19:58 |
pabelanger | clarkb: Thats the part I am not sure of | 19:58 |
inc0 | and maybe once a day just to make sure it's fresh | 19:58 |
clarkb | inc0: and what will read from those images? | 19:58 |
inc0 | gates for deployment | 19:58 |
inc0 | so kolla-kubernetes and kolla-ansible gates | 19:58 |
inc0 | will pull images instead of building them | 19:59 |
mordred | clarkb, pabelanger what did I do? | 19:59 |
* mordred reads | 19:59 | |
clarkb | the easy thing to do would be just to set up a single registry as part of the control plane and don't worry about distributing it | 19:59 |
clarkb | then go from there and see if we need one in every region | 19:59 |
*** annegentle has quit IRC | 19:59 | |
inc0 | true, but then data will get pulled between regions | 19:59 |
pabelanger | mordred: the dockers | 19:59 |
inc0 | which might not be horrible | 19:59 |
*** fguillot has quit IRC | 19:59 | |
clarkb | inc0: yes but thats going to happen regardless by definition | 20:00 |
inc0 | still less data then what we do now - installing everythign locally | 20:00 |
clarkb | it is impossible to avoid that :) | 20:00 |
inc0 | yeah, just not that often, but agree, this might be premature optimization | 20:00 |
mordred | yah. I think single registry to start is a good idea | 20:00 |
*** annegentle has joined #openstack-infra | 20:00 | |
openstackgerrit | Paul Belanger proposed openstack-infra/zuul: [WIP] Implement tracking of launch attempts for jobs https://review.openstack.org/395056 | 20:01 |
inc0 | so setting up single "master" registry is super easy, I can write shell/ansible to bootstrap it | 20:01 |
clarkb | looks like there are docs for fronting with apache | 20:01 |
mordred | of course, the main way to deploy a docker registry is to run it in docker, which we don't currently have any of in our system | 20:01 |
pabelanger | jeblair: okay, how about ^ for BuildSet tries tracking | 20:01 |
*** asselin has joined #openstack-infra | 20:01 | |
clarkb | we could potentially configuer remote apaches to cache maybe | 20:01 |
mordred | maybe so | 20:01 |
inc0 | apache cache is actually brilliant | 20:02 |
*** wolverineav has joined #openstack-infra | 20:02 | |
pabelanger | mordred: Ya, that was one of the things discussed at the kolla meeting. Regardless of where the docker registry is, we need to write the puppet manifests first | 20:02 |
mordred | inc0: well, to make it nice and complicated, all of our servers are managed with the puppets - but if you don't know the puppet a script that does the things that someone else can turn in to puppet would certainly be a start | 20:02 |
mordred | pabelanger: ++ | 20:02 |
inc0 | pabelanger, mordred if ansible is good, we already have playbook bootstrapping docker on a node | 20:02 |
fungi | yeah, if running a docker registry requires running a docker instance in production then we've got some challenges to consider. if on the other hand it can just run uncontainered in a vm with apache serving the contents, probably not hard at all for us to puppet | 20:03 |
pabelanger | fungi: agreed | 20:03 |
clarkb | I am sure it can be its just a giant blob of Go binary iirc | 20:03 |
inc0 | fungi, I'm not sure, reverse-engineering registry might be a bit tricky | 20:03 |
inc0 | clarkb, so is docker;) | 20:04 |
*** priteau has quit IRC | 20:04 | |
clarkb | inc0: and I run docker outside of a cntainer :) | 20:04 |
inc0 | but we can run registry outside of containe | 20:04 |
mordred | I'd also like to figure out how to publish things to dockerhub - but I think that can be a follow up task too | 20:04 |
clarkb | mordred: its very similar though right> hub is just a registry itself? | 20:04 |
inc0 | yeah, let's leave dockerhub out now | 20:04 |
inc0 | we do it manually today | 20:05 |
mordred | clarkb: yup | 20:05 |
fungi | i mean, we do already sort of run some services in containers, they're just the java version of container technology | 20:05 |
mordred | inc0: agree - it's not the immediate problem | 20:05 |
pabelanger | a quick good shows some puppet modules for docker-registry, so might now have to write much | 20:05 |
mordred | inc0: so in any case, anything you've got that shows how to install a registry backed by a local directory on disk outside of a container would be great - I'm sure we can translate it into the appropriate puppet | 20:06 |
fungi | though maintaining services that run within a jvm exposes all sorts of manageability and debuggability issues that i would expect containerization to make similarly annoying | 20:06 |
inc0 | again, if you can accept ansible play for bootstrapping docker - I can give it to you now | 20:06 |
clarkb | fungi: I think more of the issue here is their install docs are literally "hey run this entire OS install from random place on the internet and glhf determining if it is up to date" | 20:06 |
pabelanger | inc0: has to be puppet today | 20:06 |
clarkb | fungi: so the work is around managing the container instances themselves to avoid thsoe problems and update them when necessary | 20:06 |
inc0 | ok so I'll start by running registry outside of container | 20:06 |
inc0 | and we'll get it from there | 20:06 |
fungi | clarkb: yep | 20:06 |
mordred | mordred@camelot:~/src/openstack/os-client-config$ apt-cache search docker-registry | 20:07 |
mordred | docker-registry - Docker toolset to pack, ship, store, and deliver content | 20:07 |
clarkb | mordred wins | 20:07 |
pabelanger | inc0: I'd find a commity puppet module (the googles) and start with that. Once you have it working locally, it shouldn't take much work to import it into system-config. | 20:07 |
inc0 | https://github.com/docker/distribution-library-image/blob/3b4a84c1f152b60688e99d2efadf305479541482/Dockerfile | 20:07 |
pabelanger | https://github.com/jamescarr/puppet-docker-registry for example | 20:07 |
fungi | i'm sure if all your infrastructure is designed around containerized services, adding one more is not an issue. but adding the first one to a non-container-oriented fleet of services is a pretty huge hurdle | 20:07 |
pabelanger | just need to figure out the LICENSE for that | 20:07 |
clarkb | fungi: right | 20:07 |
pabelanger | and, should support ubuntu Trusty / Xenial | 20:08 |
clarkb | fungi: especialyl if you don't take ownership of controlling every image | 20:08 |
mordred | docker-registry is in xenail | 20:08 |
*** mmandel has joined #openstack-infra | 20:08 | |
mordred | so this should actually be very simple | 20:08 |
pabelanger | Ya | 20:08 |
mordred | the package installs it and runs it not in a container | 20:09 |
pabelanger | the puppet module I'm looking at is using nginx | 20:09 |
mordred | and the config file is /etc/docker/registry/config.yml | 20:09 |
inc0 | docker registry seems to be alpine;) | 20:09 |
fungi | a puppet class to install that package, tweak the configuration with a template, and set up an apache vhost with whatever options we want | 20:09 |
*** psilvad has quit IRC | 20:09 | |
*** chandankumar has quit IRC | 20:10 | |
inc0 | ok, this is really easy | 20:10 |
mordred | we'll need to also figure out auth I'd think, yeah? | 20:10 |
clarkb | mordred: ya but thats documented and apacheable | 20:10 |
clarkb | https://docs.docker.com/registry/recipes/apache/ | 20:11 |
mordred | sweet | 20:11 |
*** walharthi has quit IRC | 20:12 | |
mordred | that recipe is fascinating to me | 20:12 |
fungi | longer term, if we need, i'm guessing we can set the registry to write into an afs volume, and then add vhosts to our per-provider mirror servers to serve a cached docker registry in a read-only configuration | 20:12 |
mordred | # Now, create a password file for "testuser" and "testpassword" | 20:12 |
mordred | docker run --entrypoint htpasswd httpd:2.4 -Bbn testuser testpassword > auth/httpd.htpasswd | 20:12 |
inc0 | mordred, that's one way to describe it | 20:12 |
mordred | inc0: :) | 20:12 |
* mordred is amazed at the use of docker to run htpasswd | 20:12 | |
clarkb | the interesting bits are just above that in the location v2 block | 20:13 |
mordred | yah | 20:13 |
clarkb | basically GET and HEAD for RO, and POST PUT DELETE PATCH for write | 20:13 |
*** amoralej is now known as amoralej|off | 20:13 | |
clarkb | its simpler than elasticsearch | 20:13 |
fungi | i'm pretty clueless about dockerization... is that htpasswd example running a container whose only purpose in life is to provide the httpasswd executable utility? | 20:14 |
mordred | fungi: yes | 20:14 |
* fungi is awed at the insane overhead implied there | 20:14 | |
clarkb | well sort of | 20:14 |
*** ijw has joined #openstack-infra | 20:14 | |
clarkb | its running the httpd container | 20:14 |
clarkb | and weriting to its filesystem | 20:14 |
fungi | oh, got it. so it's an apache 2.4 container | 20:14 |
clarkb | yes | 20:15 |
fungi | and leveraging that for its inclusion of the utility | 20:15 |
clarkb | well its also the container that you will run to have a proxy | 20:15 |
clarkb | so you need to modify its fs | 20:15 |
fungi | which makes some sense if you're in an environment where you're only installing apache into a container and never onto your base system, i guess | 20:15 |
mordred | clarkb: that's completely inaccurate | 20:15 |
inc0 | yeah just loose docker from there and reuse config they set up | 20:15 |
mordred | clarkb: that is not what it's doing at all | 20:15 |
*** ldnunes has quit IRC | 20:15 | |
clarkb | mordred: are you sure, its saying use this image | 20:15 |
clarkb | and the image is called httpd:2.4 | 20:15 |
mordred | clarkb: it is running the htpasswd utility from the container and outputting to a file on the local system | 20:16 |
clarkb | and thats the image used when writing to the fs | 20:16 |
mordred | which is tehn referenced in a volume command later | 20:16 |
clarkb | zomg why | 20:16 |
mordred | it's using the htpasswd executable in the httpd:2.4 container | 20:16 |
* clarkb gives up on computers | 20:16 | |
mordred | but > auth/httpd.htpasswd is in the calling shell | 20:16 |
jeblair | because you might not have htpassword installed on your macbook | 20:16 |
mordred | then later: | 20:16 |
mordred | volumes: | 20:16 |
mordred | - `pwd`/auth:/usr/local/apache2/conf | 20:16 |
clarkb | mordred: ya I see its not quoted now | 20:16 |
fungi | got it. but in theory you _could_ reuse that httpd:2.4 container to run other apache tools or an apache httpd | 20:17 |
clarkb | fungi: well it is reusing it hence the image directive | 20:17 |
inc0 | so container is *just* an apache | 20:17 |
mordred | fungi: yes | 20:17 |
pabelanger | clarkb: because, hipster! | 20:17 |
inc0 | you don't need to do it at all if you run apache like..everyone runs apache | 20:17 |
inc0 | just run registry binding to local IP | 20:18 |
*** thiagolib has quit IRC | 20:18 | |
* fungi expects the container buzz to die down eventually until people are actually using containers for things that make sense, and not for every little thing just because they can | 20:18 | |
inc0 | and setup apache with httpauth on top of it | 20:18 |
clarkb | mordred: the even more amazing thing about that is if they put the password in the image (for better or worse) at least then you could redeploy your container and it would do the right thing on a different host | 20:18 |
clarkb | mordred: but as is that will only ever work on your laptop | 20:18 |
inc0 | fungi, like deploying OpenStack?:) | 20:19 |
*** ijw has quit IRC | 20:19 | |
inc0 | running stuff exclusively in containers has it's benefits | 20:19 |
fungi | inc0: i'll refrain from commenting on whether deploying openstack services in a container makes sense. i haven't really done it in or out of containers | 20:19 |
inc0 | it's glorified package | 20:19 |
fungi | so i'm in no position to judge | 20:19 |
clarkb | well now that you can iscsi with libvirt its definitely no longer a terrible idea :P | 20:19 |
inc0 | with chroot (also glorified) | 20:19 |
*** panda|bbl is now known as panda | 20:20 | |
clarkb | apparently that made it into xenials libvirt | 20:20 |
clarkb | and was always in redhats? | 20:20 |
inc0 | well we run iscsi + libvirt | 20:20 |
clarkb | (one more reason to stop using trusty!) | 20:20 |
inc0 | needed some hacking around but it works | 20:20 |
inc0 | tgtd was issue afair | 20:20 |
fungi | i used to use chroots and later freebsd jails for mass hosting back ~10-15 years ago, so can see where linux containers would have been useful | 20:20 |
mordred | inc0: yah | 20:21 |
clarkb | inc0: libvirt supports a userland driver for iscsi that supposedly just works? older debuntu libvirts ripped it out because raisins but they stopped doing that | 20:21 |
inc0 | fungi, same thing really | 20:21 |
fungi | though i ended up switching from freebsd jails to usermode linux and headed down the virtualization path from there | 20:21 |
inc0 | just add image-based deployment | 20:21 |
* mordred afks to go pick up some pneumatic tools, and air compressor and a couple of saw horses | 20:21 | |
fungi | i guess uml was sorta container-like, and less full-blown vm though | 20:22 |
clarkb | mordred: wait | 20:22 |
inc0 | mordred, prepping for deploying registry I see | 20:22 |
pabelanger | fungi: Ya, same path too. | 20:22 |
clarkb | mordred: did nodepool bhs1 upload succeed? | 20:22 |
clarkb | I dont see the process in ps anymore | 20:22 |
mordred | clarkb: it's still running | 20:22 |
* clarkb checks db | 20:22 | |
inc0 | get a gun while you're at it, might prove to be handy | 20:22 |
clarkb | mordred: you sure? maybe I am blind reading ps | 20:22 |
mordred | clarkb: oh! yes - it succeeded | 20:22 |
mordred | 2016-11-11 20:05:02,508 INFO nodepool.builder: Image id: 1482 in ovh-bhs1 is ready | 20:22 |
clarkb | mordred: woot ok I think that means maybe things will work the way they are supposed to now | 20:22 |
pabelanger | yay | 20:23 |
inc0 | ok, so, how do we proceed? | 20:23 |
inc0 | I'll figure out how to run registry outside of container and will let you know | 20:23 |
inc0 | should be simple | 20:23 |
mordred | inc0: it's simple - already done | 20:23 |
mordred | inc0: 'apt-get install docker-registry' | 20:23 |
pabelanger | I'd be shocked if it didn't work | 20:23 |
inc0 | ok, even simplier | 20:23 |
inc0 | than I anticipated | 20:23 |
mordred | yah. thank god for whoever did that for us :) | 20:23 |
fungi | inc0: also http://docs.openstack.org/infra/system-config/sysadmin.html#making-a-change-in-puppet is our recommended reading if you're modifying or adding to our puppetry | 20:24 |
fungi | or just coerce mordred into doing it | 20:24 |
inc0 | truth be told, I'd rather defer to someone who actually knows how to puppet:( | 20:24 |
fungi | me too! ;) | 20:24 |
*** esikache1 has quit IRC | 20:25 | |
inc0 | mordred, http://i.dailymail.co.uk/i/pix/2014/06/13/article-2657035-1EB9365300000578-176_634x505.jpg | 20:25 |
inc0 | so btw guys, having a registry available will allow us make gates voting | 20:30 |
inc0 | so yeah, great to have it;) | 20:30 |
*** thorst has quit IRC | 20:31 | |
openstackgerrit | Ben Nemec proposed openstack/diskimage-builder: Install lsb package by map name instead of package name https://review.openstack.org/396762 | 20:31 |
*** thorst has joined #openstack-infra | 20:32 | |
*** adrian_otto has quit IRC | 20:34 | |
openstackgerrit | Jeremy Stanley proposed openstack-infra/puppet-askbot: Don't use latest=>true for commits and tags https://review.openstack.org/396764 | 20:35 |
dmsimard | o/ if any cores have a sec to review a logs.o.o potential improvement about gzipped content: https://review.openstack.org/#/c/396428/ | 20:35 |
openstackgerrit | Jeremy Stanley proposed openstack-infra/system-config: Revert "Revert "Update ask.o.o to latest 0.7.x branch"" https://review.openstack.org/396765 | 20:35 |
*** inc0 has quit IRC | 20:35 | |
fungi | aww, inc0 disappeared before i could comment that he wanted to "make kolla gate again" | 20:36 |
*** thorst has quit IRC | 20:36 | |
dmsimard | fungi: oh god | 20:36 |
dmsimard | made me spill my drink | 20:36 |
*** abregman|nb is now known as abregman|afk | 20:37 | |
fungi | nibalizer: https://review.openstack.org/396764 implements your suggestion | 20:37 |
*** clenimar has quit IRC | 20:37 | |
fungi | nibalizer: reading up on the order in which puppet checks resources for latest and taking other actions, it looks to be the problem there | 20:37 |
jroll | ianw: whenever you're around, this can be abandoned, see my comment https://review.openstack.org/#/c/358116/4 | 20:38 |
fungi | nibalizer: do you see any value in filing a bug/pr against the git_resource provider to make latest not just no-op on commits and tags, but instead test whether the requested ref is actually the one checked out to the worktree? | 20:39 |
openstackgerrit | Ben Nemec proposed openstack-infra/tripleo-ci: Always use cached images in updates job https://review.openstack.org/386713 | 20:42 |
*** inc0 has joined #openstack-infra | 20:43 | |
*** _ari_ has quit IRC | 20:44 | |
*** ccamacho has quit IRC | 20:44 | |
*** _ari_ has joined #openstack-infra | 20:44 | |
*** dkehn_ has quit IRC | 20:46 | |
*** hashar has joined #openstack-infra | 20:47 | |
*** Sukhdev has quit IRC | 20:50 | |
jlvillal | FYI: Fix for reproduce.sh and grenade plug-in jobs: https://review.openstack.org/#/c/396717/ | 20:50 |
jlvillal | I ran into this when trying to reproduce our Grenade job locally. | 20:51 |
jlvillal | In Ironic | 20:51 |
nibalizer | fungi: i wonder if we should just make it validate that both latest and commit are not both set | 20:51 |
nibalizer | since latest on a commit doesn't make a ton of sense right? | 20:52 |
clarkb | jlvillal: TEMPEST_CONCURRENCY depends on the host so should't be included | 20:52 |
jlvillal | clarkb: We depend on it for Ironic | 20:52 |
jlvillal | clarkb: We intentionally set it to 1. | 20:53 |
clarkb | jlvillal: then you need to make it so its only written if its set to 1 | 20:53 |
jlvillal | clarkb: Okay. I can do that. | 20:53 |
clarkb | otherwise its supposed to scale up with your cpu count | 20:53 |
jlvillal | clarkb: Thanks | 20:53 |
*** thorst has joined #openstack-infra | 20:54 | |
*** csomerville has joined #openstack-infra | 20:54 | |
*** florianf has quit IRC | 20:55 | |
*** raildo has quit IRC | 20:55 | |
*** ijw has joined #openstack-infra | 20:55 | |
*** _ari_ has quit IRC | 20:56 | |
*** thorst has quit IRC | 20:58 | |
*** Apoorva has quit IRC | 20:58 | |
fungi | nibalizer: also sounds like a possibility, yes | 20:59 |
*** rfolco has quit IRC | 21:00 | |
*** ccamacho has joined #openstack-infra | 21:00 | |
*** ijw has quit IRC | 21:00 | |
*** kzaitsev_mb has quit IRC | 21:01 | |
*** _ari_ has joined #openstack-infra | 21:01 | |
*** tphummel has joined #openstack-infra | 21:03 | |
*** walharthi has joined #openstack-infra | 21:03 | |
*** thorst has joined #openstack-infra | 21:04 | |
*** priteau has joined #openstack-infra | 21:04 | |
mmandel | I'm trying to have novnc installed from the debian package in Devstack, but that caused most OpenStack packages to be installed on 14.04 (because both novnc and python-novnc depend on python-nova for the version in trusty), which caused Keystone to not start properly. This was fixed in the 1:0.4+dfsg+1+20131010+gitf68af8af3d-4 versions of novnc/python-novnc to “recommend’ python-nova instead, but trusty still points to 1:0.4+dfsg+ | 21:04 |
mmandel | 1+20131010+gitf68af8af3d-2. What would be the best solution here - update trusty to reference the fixed version, or something else? | 21:04 |
clarkb | mmandel: I would check with zul and jamespage to see what they think (they do a lot of the ubuntu packages iirc) | 21:06 |
*** dprince has quit IRC | 21:08 | |
jlvillal | I learned something new about: echo ${!KEY} Never saw that before and frankly the bash manpages doesn't really make it understandable that it expands the variable that KEY expands too. | 21:10 |
*** florianf has joined #openstack-infra | 21:10 | |
* jlvillal could have used that before. | 21:10 | |
openstackgerrit | John L. Villalovos proposed openstack-infra/devstack-gate: Add GRENADE_PLUGINRC and TEMPEST_CONCURRENCY to reproduce.sh https://review.openstack.org/396717 | 21:11 |
*** inc0 has quit IRC | 21:11 | |
openstackgerrit | Merged openstack-infra/project-config: networking-odl: skip jobs when doc only change https://review.openstack.org/396301 | 21:11 |
openstackgerrit | Darragh Bailey proposed openstack-infra/jenkins-job-builder: Allow using lockfile per jenkins master https://review.openstack.org/293631 | 21:13 |
*** _ari_ has quit IRC | 21:14 | |
openstackgerrit | Merged openstack-infra/project-config: Add Networking SFC Data to Grafana https://review.openstack.org/396440 | 21:15 |
*** EricGonczer_ has joined #openstack-infra | 21:16 | |
openstackgerrit | Merged openstack-infra/project-config: Making a networking-odl job multinode https://review.openstack.org/395259 | 21:16 |
*** makowals has quit IRC | 21:16 | |
*** makowals has joined #openstack-infra | 21:17 | |
openstackgerrit | Darragh Bailey proposed openstack-infra/jenkins-job-builder: Basic folder support https://review.openstack.org/134307 | 21:18 |
*** hurgleburgler has joined #openstack-infra | 21:18 | |
*** _ari_ has joined #openstack-infra | 21:19 | |
*** makowals has quit IRC | 21:21 | |
*** jheroux has quit IRC | 21:22 | |
*** hurgleburgler has quit IRC | 21:22 | |
*** tpsilva has quit IRC | 21:24 | |
openstackgerrit | Merged openstack-infra/project-config: networking-bagpipe jobs adjustments https://review.openstack.org/394339 | 21:25 |
*** oanson has quit IRC | 21:27 | |
*** wolverineav has quit IRC | 21:27 | |
openstackgerrit | Merged openstack-infra/project-config: Add Grafana for networking-bagpipe https://review.openstack.org/385337 | 21:27 |
*** wolverineav has joined #openstack-infra | 21:29 | |
nibalizer | fungi: so did you test the code in 396764 ? | 21:29 |
manjeets | is their a way to trigger gate job on a project against change submitted to project-config which is not merged yet ? | 21:30 |
*** e0ne has joined #openstack-infra | 21:30 | |
clarkb | manjeets: no | 21:30 |
fungi | nibalizer: not yet. i haven't had an opportunity to set up a test deployment to see if this actually solves anything | 21:30 |
fungi | just wanted to get the changes written up before i forgot and moved on to some other emergency | 21:31 |
*** harlowja has quit IRC | 21:32 | |
nibalizer | yah | 21:32 |
nibalizer | i want to say my testing of the provider found that this wasn't the solution | 21:32 |
openstackgerrit | Merged openstack-infra/project-config: Stop running gate-neutron-dsvm-api-ubuntu-trusty on master and newton backports https://review.openstack.org/396714 | 21:32 |
* nibalizer pokes | 21:32 | |
clarkb | fungi: nibalizer maybe use vscrepo? | 21:32 |
fungi | nibalizer: oh? you confirmed that even with latest=>true it would switch between commits when asked? | 21:33 |
nibalizer | give me a sec to re figure out what I figured out :P | 21:33 |
*** Jeffrey4l has quit IRC | 21:33 | |
fungi | clarkb: i think git history will show this previously used vcsrepo but couldn't support one of the use cases without perpetually thinking it needed to rerun the installer/upgrader | 21:33 |
*** wolverineav has quit IRC | 21:33 | |
nibalizer | yah so if you give it latest and a commit, it checks out the commit | 21:34 |
nibalizer | well, in my example | 21:34 |
nibalizer | where there was no fetching needed | 21:34 |
openstackgerrit | Merged openstack-infra/project-config: Increase volume group size for cinderclient-dsvm-functional job https://review.openstack.org/392192 | 21:34 |
fungi | clarkb: yeah, switched away from vcsrepo a year ago in https://review.openstack.org/235389 | 21:34 |
fungi | nibalizer: even if a different commit was previously checked out? | 21:34 |
nibalizer | the biggest advantage of git_resource is it can evolve | 21:35 |
nibalizer | vcsrepo is kindof too core to ever change | 21:35 |
nibalizer | fungi: yea so i checked out a tag in the repo manually, then ran a puppet snippit, and it checked out the commit specified in the commit parameter | 21:35 |
nibalizer | http://paste.openstack.org/show/588982/ | 21:35 |
fungi | nibalizer: okay, i didn't realize you had latest=>true in your test scenario | 21:35 |
clarkb | armax: reviewed https://review.openstack.org/#/c/396668/3 need a small edit to get the branch related job selection right | 21:36 |
armax | clarkb: thanks, right on it | 21:36 |
*** rbrndt_ has quit IRC | 21:36 | |
*** rbrndt has joined #openstack-infra | 21:37 | |
clarkb | and I have approved the other change you pointed out | 21:37 |
nibalizer | the issue is that ask isn't updating? | 21:38 |
openstackgerrit | Darragh Bailey proposed openstack-infra/jenkins-job-builder: Support default string values for variables https://review.openstack.org/180117 | 21:38 |
*** walharthi has quit IRC | 21:38 | |
clarkb | nibalizer: aiui yes, the askbot git repo isn't updating to the newer version | 21:38 |
fungi | nibalizer: yeah, i'm at a loss as to why the log never even showed a "commit changed" (or any mention of Git[.*]) after https://review.openstack.org/274032 merged | 21:39 |
*** jkilpatr has quit IRC | 21:39 | |
openstackgerrit | Armando Migliaccio proposed openstack-infra/project-config: Switch to xenial-based grenade multinode jobs (w/ and w/o dvr) for newton and above https://review.openstack.org/396668 | 21:39 |
fungi | nibalizer: the /srv/dist/askbot tree still had 06be25e checked out even after that was applied | 21:39 |
nibalizer | has someone fixed it manually or can I still run puppet and watch it not work? | 21:40 |
openstackgerrit | Merged openstack-infra/project-config: sahara: force nova-network in the only nova-network job https://review.openstack.org/396639 | 21:40 |
openstackgerrit | Merged openstack-infra/reviewday: Make Neutron script pull all Stadium projects https://review.openstack.org/361432 | 21:40 |
fungi | nibalizer: i reverted 274032 | 21:40 |
fungi | with 395797 | 21:40 |
fungi | because whatever the wsgi bits used did upgrade, and were incompatible with the stuff in the venv and config tree copied from the old commit | 21:41 |
nibalizer | ok | 21:41 |
*** adrian_otto has joined #openstack-infra | 21:42 | |
*** florianf has quit IRC | 21:43 | |
openstackgerrit | Armando Migliaccio proposed openstack-infra/project-config: Switch to xenial-based grenade multinode jobs (w/ and w/o dvr) for newton and above https://review.openstack.org/396668 | 21:43 |
*** hashar has quit IRC | 21:43 | |
fungi | yeah, /srv/askbot-site/config/django.wsgi changed to expect things from the newer askbot version, which never got installed | 21:43 |
fungi | as best i can piece together from the logs | 21:44 |
openstackgerrit | Darragh Bailey proposed openstack-infra/jenkins-job-builder: Support explicit API and simple config creation https://review.openstack.org/358019 | 21:44 |
nibalizer | fungi: hrmm | 21:46 |
fungi | nibalizer: in syslog.2.gz at "Nov 9 18:58:00" you can see the start of output from that run | 21:46 |
nibalizer | awesome | 21:46 |
fungi | for some reason it gets around to firing Askbot::Site::Config/Exec[askbot-syncdb] but hasn't updated the Git[] resource | 21:47 |
fungi | another possibility, maybe we have an order of operations problem here and that exec somehow is happening before the git update? | 21:47 |
fungi | and so it aborts before it ever gets around to updating the repo | 21:48 |
fungi | though it's also running Askbot::Site::Config/Exec[askbot-migrate] | 21:48 |
nibalizer | i was thinking that too | 21:48 |
nibalizer | but if it was skipping because of a failure it would say 'skipped because of failure' or something like that | 21:48 |
*** wolverineav has joined #openstack-infra | 21:49 | |
fungi | oh, you know what? these are triggered both by the git repo updating _and_ the config file updating | 21:49 |
fungi | still, yes, it never even mentions skipping the git commit change | 21:49 |
*** e0ne has quit IRC | 21:50 | |
*** tphummel has quit IRC | 21:50 | |
*** Apoorva has joined #openstack-infra | 21:52 | |
openstackgerrit | Paul Belanger proposed openstack-infra/zuul: Re-enable test_disable_at test https://review.openstack.org/396785 | 21:52 |
*** wolverineav has quit IRC | 21:54 | |
nibalizer | fungi: yea i got nothing | 21:54 |
*** eharney has quit IRC | 21:57 | |
*** saibarsp_ has joined #openstack-infra | 21:58 | |
*** Sukhdev has joined #openstack-infra | 21:59 | |
openstackgerrit | Paul Belanger proposed openstack-infra/zuul: Re-enable test_disable_at test https://review.openstack.org/396785 | 21:59 |
openstackgerrit | Paul Belanger proposed openstack-infra/zuul: Re-enable test_live_reconfiguration test https://review.openstack.org/393488 | 21:59 |
*** saibarspeis has quit IRC | 22:00 | |
*** ssbarnea has quit IRC | 22:01 | |
openstackgerrit | Paul Belanger proposed openstack-infra/zuul: Re-enable test_crd_check_reconfiguration test https://review.openstack.org/396788 | 22:02 |
*** piet has quit IRC | 22:03 | |
*** ssbarnea has joined #openstack-infra | 22:05 | |
openstackgerrit | John L. Villalovos proposed openstack-infra/project-config: Do not build any ramdisks in Ironic grenade jobs https://review.openstack.org/396791 | 22:05 |
*** Sukhdev has quit IRC | 22:05 | |
*** dave-mccowan has quit IRC | 22:06 | |
*** jcoufal has quit IRC | 22:07 | |
*** tonytan4ever has quit IRC | 22:07 | |
*** e0ne has joined #openstack-infra | 22:08 | |
*** gmann has joined #openstack-infra | 22:09 | |
*** wolverineav has joined #openstack-infra | 22:10 | |
*** edmondsw has quit IRC | 22:12 | |
*** gordc has quit IRC | 22:13 | |
*** wolverineav has quit IRC | 22:14 | |
*** Sukhdev has joined #openstack-infra | 22:14 | |
*** ijw has joined #openstack-infra | 22:14 | |
*** jkilpatr has joined #openstack-infra | 22:22 | |
*** trown is now known as trown|outtypewww | 22:22 | |
*** e0ne has quit IRC | 22:22 | |
*** mriedem has quit IRC | 22:27 | |
*** jamesdenton has quit IRC | 22:28 | |
openstackgerrit | Varun Gadiraju proposed openstack-infra/devstack-gate: Exit early if WORKSPACE var is undefined https://review.openstack.org/396414 | 22:30 |
*** wolverineav has joined #openstack-infra | 22:30 | |
*** priteau has quit IRC | 22:33 | |
*** wolverineav has quit IRC | 22:34 | |
*** priteau has joined #openstack-infra | 22:37 | |
*** wolverineav has joined #openstack-infra | 22:40 | |
*** priteau has quit IRC | 22:41 | |
asselin | clarkb, I'm trying to change this to use archive as you suggested a while back https://review.openstack.org/#/c/366803/. But running into this issue: "no such file to load -- faraday_middleware". Are you ok with it as-is? | 22:43 |
openstackgerrit | John L. Villalovos proposed openstack-infra/project-config: Do not build any ramdisks in Ironic grenade jobs https://review.openstack.org/396791 | 22:43 |
clarkb | armax: https://review.openstack.org/#/c/396668/5 lgtm now thanks. fungi nibalizer maybe you can review that as well and get it in (more neutron xenial things) | 22:43 |
clarkb | asselin: I need more context, is that a warning from archive? | 22:44 |
clarkb | asselin: or does it error and fail? | 22:44 |
asselin | Error: /Stage[main]/Jenkins::Master/Archive[jenkins_deb]/ensure: change from absent to present failed: no such file to load -- faraday_middleware | 22:44 |
clarkb | asselin: I think that means you didn't install the module and its deps properly? | 22:45 |
asselin | hmmm...I thought it was stdlib? | 22:45 |
*** wolverineav has quit IRC | 22:45 | |
clarkb | https://github.com/voxpupuli/puppet-archive/issues/60 seems to be the fix | 22:45 |
*** kzaitsev_mb has joined #openstack-infra | 22:49 | |
openstackgerrit | Paul Belanger proposed openstack-infra/zuul: Add attempts logic for jobs https://review.openstack.org/395056 | 22:52 |
armax | clarkb: thank you! | 22:53 |
openstackgerrit | Paul Belanger proposed openstack-infra/zuul: Add attempts logic for jobs https://review.openstack.org/395056 | 22:53 |
*** sree has joined #openstack-infra | 22:57 | |
*** gmann_ has joined #openstack-infra | 22:57 | |
*** mdrabe has quit IRC | 22:58 | |
*** gmann has quit IRC | 22:59 | |
*** wolverineav has joined #openstack-infra | 23:00 | |
*** sree has quit IRC | 23:01 | |
*** harlowja has joined #openstack-infra | 23:01 | |
armax | clarkb: one last favor of the week when you have a chance: https://review.openstack.org/#/c/396398/ | 23:01 |
clarkb | armax: maybe you want to make it experimental or its not important? | 23:03 |
armax | clarkb: no need | 23:03 |
clarkb | done | 23:04 |
armax | clarkb: if I end up regretting it, you’ll be the first one to know :) | 23:04 |
*** annegentle has quit IRC | 23:04 | |
*** wolverineav has quit IRC | 23:05 | |
jeblair | and the second to regret it? | 23:07 |
*** csomerville has quit IRC | 23:07 | |
*** ijw has quit IRC | 23:09 | |
*** ijw has joined #openstack-infra | 23:12 | |
openstackgerrit | Ramy Asselin proposed openstack-infra/puppet-jenkins: Enable a specific version of jenkins to be installed https://review.openstack.org/366803 | 23:12 |
asselin | clarkb, thanks, I updated to the version in system-config/modules.env and got it working ^^ | 23:13 |
*** csomerville has joined #openstack-infra | 23:13 | |
openstackgerrit | Merged openstack-infra/project-config: Remove gate-neutron-lbaasv2-dsvm-minimal from neutron check queue https://review.openstack.org/396398 | 23:14 |
*** walharthi has joined #openstack-infra | 23:15 | |
*** xyang1 has quit IRC | 23:15 | |
*** kzaitsev_mb has quit IRC | 23:15 | |
*** ijw has quit IRC | 23:16 | |
*** ijw has joined #openstack-infra | 23:16 | |
*** kzaitsev_mb has joined #openstack-infra | 23:16 | |
*** niska` has joined #openstack-infra | 23:18 | |
*** niska has quit IRC | 23:18 | |
*** pradk has quit IRC | 23:19 | |
openstackgerrit | Ben Nemec proposed openstack-infra/tripleo-ci: Always use cached images in updates job https://review.openstack.org/386713 | 23:20 |
*** mmandel has quit IRC | 23:21 | |
*** ijw has quit IRC | 23:22 | |
*** mmandel has joined #openstack-infra | 23:22 | |
openstackgerrit | Paul Belanger proposed openstack-infra/zuul: Add attempts logic for jobs https://review.openstack.org/395056 | 23:23 |
openstackgerrit | Paul Belanger proposed openstack-infra/zuul: Add attempts logic for jobs https://review.openstack.org/395056 | 23:25 |
*** baoli_ has quit IRC | 23:25 | |
*** mmandel has quit IRC | 23:27 | |
*** rbrndt has quit IRC | 23:29 | |
*** kzaitsev_mb has quit IRC | 23:31 | |
*** Jeffrey4l has joined #openstack-infra | 23:31 | |
*** rfolco has joined #openstack-infra | 23:33 | |
*** ssbarnea has quit IRC | 23:38 | |
*** ssbarnea has joined #openstack-infra | 23:38 | |
*** marst has quit IRC | 23:40 | |
*** ccamacho has quit IRC | 23:40 | |
*** ssbarnea has quit IRC | 23:41 | |
*** panda is now known as panda|Zz | 23:42 | |
*** Sukhdev has quit IRC | 23:42 | |
*** nicolasbock has quit IRC | 23:47 | |
*** rfolco has quit IRC | 23:48 | |
*** marst has joined #openstack-infra | 23:50 | |
*** ijw has joined #openstack-infra | 23:50 | |
*** wolverineav has joined #openstack-infra | 23:52 | |
*** Kiall has quit IRC | 23:54 | |
*** ijw has quit IRC | 23:55 | |
*** Kiall has joined #openstack-infra | 23:55 | |
*** wolverineav has quit IRC | 23:56 | |
jlvillal | Do grenade jobs support Depends-On? If I have a backport of a patch for stable/newton will the grenade use that if I have a Depends-On for that patch? | 23:56 |
clarkb | yes | 23:57 |
jlvillal | clarkb: Sweet :) | 23:57 |
jlvillal | Thanks | 23:57 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!