Wednesday, 2016-11-23

*** wolverineav has joined #openstack-infra00:01
fungiclarkb: if contents of /home/wildfly turn out to be important to maintain, we should either mount a cinder volume there or symlink into one00:01
clarkbfungi: ++00:01
clarkbfungi: part of me is also curious why the sysv compat layer in systemd isn't working. But I probably don't want to know00:02
fungidon't stare directly into the systemd00:03
*** pahuang has quit IRC00:03
fungiwhen you look into the systemd long enough, it begins to look back00:03
*** inc0 has quit IRC00:03
clarkbsupposedly if you try to start a systemd service and no unit file exists systemd checks to see if an init script lives in /etc/init.d/ with the same name00:04
clarkbbut that doesn't seem tp have happened here and it just errors00:04
*** sflanigan has quit IRC00:05
*** wolverineav has quit IRC00:06
clarkbhrm I wonder if you have to reload systemd's config after installing the init.d file00:08
clarkbbkero: ^ do you know?00:08
*** rbuzatu has quit IRC00:08
*** rbuzatu has joined #openstack-infra00:09
clarkbyup that appears to be it, locally, if I systemctl daemon-reload its happy00:12
*** wolverineav has joined #openstack-infra00:13
*** rbuzatu has quit IRC00:14
clarkbthat implies puppet isn't doing that before starting services? that seems annoying00:14
clarkbnibalizer: crinkle ^ any idea how puppet handles that?00:14
*** wolverineav has quit IRC00:14
*** kgiusti has joined #openstack-infra00:14
*** kgiusti has left #openstack-infra00:15
*** Sukhdev has quit IRC00:16
clarkbI have to say thats kind of annoying from a "compat" layer because its not compat unless you do the systemd specific thing first :00:17
clarkber :(00:17
*** pahuang has joined #openstack-infra00:20
EmilienMI'm failing to find why npm can't be found when building centos7 images for nodepool00:20
EmilienMI tried to install in my centos7 VM and could run npm out of the box00:21
EmilienMwhile it's failing in our infra, when trying to deploy stackviz00:21
*** sflanigan has joined #openstack-infra00:22
*** sflanigan has joined #openstack-infra00:22
clarkbEmilienM: it looks like it is installing it 2016-11-22 15:59:41,627 INFO nodepool.image.build.centos-7: installing npm from stackviz00:22
clarkbEmilienM: but npm isn't ending up in the PATH maybe00:22
*** wolverineav has joined #openstack-infra00:23
clarkbEmilienM: what does which npm say on your centos7 box?00:23
EmilienMclarkb: /usr/bin/npm00:24
EmilienMthat's why I'm confused00:24
EmilienMI'm downloading it from EPEL00:24
EmilienMversion: 1:3.10.8-1.6.9.1.1.el700:24
*** aeng has quit IRC00:25
EmilienMand it works fine on fedora00:27
*** wolverineav has quit IRC00:28
clarkbEmilienM: I would do a local build with vm centos stackviz elements and set a breakpoint right before the npm install command to see what is goign on00:30
clarkbEmilienM: you can just add `bash` to that element prior to the command and it should drop you into an interactive shell00:31
EmilienMclarkb: i'll try that00:32
*** wolverineav has joined #openstack-infra00:33
clarkbEmilienM: you will need to set an elements path to include stackviz since its not part of dib itself00:34
clarkbbut otherwise that should work well for debugging00:34
EmilienMyep it's in project-config iirc00:34
clarkbyup00:34
clarkbproject-config/nodepool/elements00:34
*** psilvad has joined #openstack-infra00:38
*** wolverineav has quit IRC00:38
*** Julien-zte has joined #openstack-infra00:43
*** tuanluong has joined #openstack-infra00:43
*** sdake has quit IRC00:43
*** ijw has quit IRC00:45
*** sdake has joined #openstack-infra00:45
clarkblooking at https://github.com/biemond/biemond-wildfly/blob/master/templates/wildfly.service.erb more closely its running the init script via the unit file which is something systemd is already supposed to have support for :(00:45
clarkbI don't even00:45
clarkbjeblair: where am I on my systemd quota?00:46
jeblairclarkb: i only count 2, but i wasn't fully paying attention!00:46
openstackgerritAdam Gandelman proposed openstack-infra/zuul: Re-enable test_success_pattern as test_success_url  https://review.openstack.org/40045500:48
*** mmandel has joined #openstack-infra00:50
*** Julien-zte has quit IRC00:50
*** Julien-z_ has joined #openstack-infra00:50
jeblairSotK, Zara: i deleted the orphan tasks (with no stories) from storyboard-dev  (this is the case that shouldn't happen now that the cascade change merged)00:52
clarkbEmilienM: when you are done tracking down that npm thing maybe you know why systemd + puppet behave this way?00:52
openstackgerritJames E. Blair proposed openstack/boartty: Add beginning of support for boards/worklists  https://review.openstack.org/40101500:53
EmilienMclarkb: sorry, what is the context?00:53
*** wolverineav has joined #openstack-infra00:54
*** mmandel has quit IRC00:54
ianwguess what the recent centos build failures seem to be about -- not pulling in systemd, and something's changed so that it gets missed00:54
openstackgerritMerged openstack/boartty: Add beginning of support for boards/worklists  https://review.openstack.org/40101500:54
clarkbEmilienM: putting a script in /etc/init.d/foo, tell puppet to ensure foo is enabled and started. This failes beacuse service foo start says there is no foo.service file, which is correct. Appears you need to do a systemctl daemon-reload so that systemd knows the sysv init script is there then it works00:55
*** wolverineav has quit IRC00:55
clarkbreading the systemd puppet provider it doesn't look like it has any concept of daemon-reload so not sure how any of this works with puppet (likely I am missing something important)00:56
*** yolanda has joined #openstack-infra00:56
EmilienMclarkb: there isn't, we have the same problem in tripleo and we shamelessly run an exec to reload it... :(00:56
*** mriedem has joined #openstack-infra00:57
clarkbEmilienM: basically have service resource require exec to daemon-reload?00:57
clarkband exec refresh-only on file resource?00:57
EmilienMclarkb: something like this, yes00:57
clarkbjeblair: see puppet service management is silly too :)00:57
clarkbEmilienM: thanks00:57
EmilienMclarkb: yes ^00:57
EmilienMit is... that's why I dislike doing it with puppet and fix packaging directly00:57
*** mdrabe has quit IRC00:57
jeblairwe should write a... no.00:58
clarkbwith that I think I need to step away from the computation device00:59
*** tovin07 has joined #openstack-infra00:59
*** tovin07 has joined #openstack-infra01:00
*** ijw has joined #openstack-infra01:00
openstackgerritJamie Lennox proposed openstack-infra/zuul: Skip individual test_requirements tests  https://review.openstack.org/40101801:01
openstackgerritJamie Lennox proposed openstack-infra/zuul: Re-enable requirement-newer-than tests  https://review.openstack.org/40101901:01
EmilienMjeblair: lol, say it!01:01
clarkbnow the really scary question is does puppet enterprise fix that/01:01
clarkbI don't want to know01:01
*** tovin07 has quit IRC01:01
*** Julien-zte has joined #openstack-infra01:01
*** tovin07 has joined #openstack-infra01:01
*** tovin07 has joined #openstack-infra01:02
*** Julien-z_ has quit IRC01:02
EmilienMclarkb: I don't see how it would fix that01:02
clarkbEmilienM: the systemd service provider should issue a daemon-reload if the unit is not listed but otherwise is required to accomplish some action01:03
clarkbEmilienM: then only fail if it still doesn't exist afterwards01:03
EmilienMclarkb: honestly, it should be fixed in packaging directly01:04
*** wolverineav has joined #openstack-infra01:04
clarkbEmilienM: no01:04
clarkbEmilienM: beacuse you can use systemd without packages01:04
EmilienMmanaging init scripts with puppet is terrible01:04
clarkbregardless01:04
EmilienM(we do it also)01:04
clarkbits a perfectly valid thing to do01:04
clarkbthere is nothing about service management that implies packaging01:04
clarkb(I think having packages that do the right thing is also a great idea, but it shouldn't be necessary)01:05
*** sdake has quit IRC01:05
clarkbthere are many reasons for this one of which is the git server in centos has a broken unit file01:05
clarkbso you have to provide your own and upstream wouldn't patch it because stable or something01:06
clarkbbut maybe that has since changed01:06
*** sdake has joined #openstack-infra01:06
clarkbbut systemd also allows for defniing user services and that doesn't fit with the system packaging model01:06
jeblairi just discovered '.mode line' in sqlite3.01:08
*** wolverineav has quit IRC01:09
jeblairyou can actually see the column names in the results of a select01:09
*** pvaneck has quit IRC01:09
ianychoiclarkb, thanks a lot for helping upgrade translate-dev.o.o. Now I acknowledge systemd problem but I do not have good knowledge on dealing with this..01:10
*** wolverineav has joined #openstack-infra01:14
openstackgerritJames E. Blair proposed openstack/boartty: Fix board sync errors  https://review.openstack.org/40102301:17
openstackgerritMerged openstack/boartty: Fix board sync errors  https://review.openstack.org/40102301:18
*** pahuang has quit IRC01:18
ianychoiclarkb, ah and have a good thanksgiving holiday! :)01:18
*** wolverineav has quit IRC01:18
*** zhurong has joined #openstack-infra01:19
*** pahuang has joined #openstack-infra01:21
*** newmember has quit IRC01:23
openstackgerritMerged openstack-infra/tripleo-ci: Stop using documentation network range  https://review.openstack.org/39552901:24
*** wolverineav has joined #openstack-infra01:24
*** sdake has quit IRC01:27
pabelangerjeblair: just seen your comment now after I left a comment on 400998.  I think we might have some issues with nodepool-launcher service being enabled on reboot01:27
pabelangerbut haven't tested yet01:27
pabelangerjeblair: but, we don't need common. And try your approach01:28
jeblairpabelanger: either way; was just thinking it might get us there faster01:28
jeblair(i'm sure we'll end up in the same place)01:28
*** wolverineav has quit IRC01:28
*** yanyanhu has joined #openstack-infra01:29
*** sdake has joined #openstack-infra01:29
*** wolverineav has joined #openstack-infra01:30
*** Alagar has joined #openstack-infra01:31
openstackgerritJames E. Blair proposed openstack/boartty: Support search by story number  https://review.openstack.org/40102601:31
pabelangerjeblair: Yup, I'm happy to give your patches a try.  And iterate forward if issues01:31
openstackgerritMerged openstack/boartty: Support search by story number  https://review.openstack.org/40102601:32
*** gildub has quit IRC01:33
*** dave-mccowan has joined #openstack-infra01:34
*** wolverineav has quit IRC01:35
openstackgerritJamie Lennox proposed openstack-infra/zuul: Re-enable requirement-newer-than tests  https://review.openstack.org/40101901:37
openstackgerritJamie Lennox proposed openstack-infra/zuul: Re-enable requirement-older-than tests  https://review.openstack.org/40102701:37
openstackgerritJamie Lennox proposed openstack-infra/zuul: Re-enable requirement-username tests  https://review.openstack.org/40102801:37
openstackgerritJamie Lennox proposed openstack-infra/zuul: Re-enable requirement-email tests  https://review.openstack.org/40102901:37
openstackgerritJames E. Blair proposed openstack/boartty: Support search by tag  https://review.openstack.org/40103001:40
openstackgerritMerged openstack/boartty: Support search by tag  https://review.openstack.org/40103001:40
jeblairokay, that ^ will let me see all the stories tagged 'zuulv3'01:40
*** wolverineav has joined #openstack-infra01:41
jeblair(and more importantly, make a dashboard out of it)01:41
*** wolverineav has quit IRC01:41
*** mtanino has joined #openstack-infra01:43
*** kaisers has quit IRC01:43
*** kaisers has joined #openstack-infra01:44
*** vaidy has joined #openstack-infra01:46
*** isviridov_away has joined #openstack-infra01:47
*** sdake has quit IRC01:50
*** sdake has joined #openstack-infra01:53
*** Goneri has quit IRC02:00
openstackgerritArmando Migliaccio proposed openstack-infra/project-config: Revise ACLs for networking-[onos|l2gw] projects  https://review.openstack.org/39979802:00
*** EricGonczer_ has quit IRC02:09
*** Goneri has joined #openstack-infra02:10
*** EricGonczer_ has joined #openstack-infra02:10
*** dave-mcc_ has joined #openstack-infra02:11
*** dave-mccowan has quit IRC02:12
*** dave-mccowan has joined #openstack-infra02:13
*** sdake has quit IRC02:14
*** sdake has joined #openstack-infra02:15
*** dave-mcc_ has quit IRC02:16
*** psilvad has quit IRC02:16
*** dave-mccowan has quit IRC02:18
*** tqtran has quit IRC02:21
*** sflanigan has quit IRC02:23
*** gongysh has joined #openstack-infra02:24
*** fguillot has quit IRC02:27
*** jascott1 has quit IRC02:28
*** jamielennox is now known as jamielennox|away02:30
*** thorst has joined #openstack-infra02:32
*** thorst has quit IRC02:32
*** thorst has joined #openstack-infra02:33
*** aeng has joined #openstack-infra02:33
*** sflanigan has joined #openstack-infra02:35
*** sdake has quit IRC02:36
*** sdake has joined #openstack-infra02:37
*** dave-mccowan has joined #openstack-infra02:39
*** thorst has quit IRC02:40
*** thorst has joined #openstack-infra02:41
*** wolverineav has joined #openstack-infra02:42
*** hurgleburgler has joined #openstack-infra02:42
bkeroclarkb: you need to systemd daemon-reload02:43
*** thorst has quit IRC02:45
*** asettle has joined #openstack-infra02:45
*** mriedem has quit IRC02:46
*** wolverineav has quit IRC02:46
*** dave-mccowan has quit IRC02:48
*** asettle has quit IRC02:50
*** yamamoto has joined #openstack-infra02:51
*** wolverineav has joined #openstack-infra02:52
*** Alagar has quit IRC02:52
*** yamamoto has quit IRC02:52
*** Alagar has joined #openstack-infra02:53
*** Alagar has quit IRC02:55
*** wolverineav has quit IRC02:56
*** sdake has quit IRC02:57
*** Alagar has joined #openstack-infra02:58
*** jamielennox|away is now known as jamielennox02:59
*** sdake has joined #openstack-infra02:59
*** mmandel has joined #openstack-infra03:02
*** wolverineav has joined #openstack-infra03:02
*** adriant has quit IRC03:03
*** zhurong has quit IRC03:04
*** wolverineav has quit IRC03:06
*** mmandel has quit IRC03:06
*** zhurong has joined #openstack-infra03:07
*** thorst has joined #openstack-infra03:09
*** thorst has quit IRC03:10
openstackgerritIan Wienand proposed openstack/diskimage-builder: Trace package install in package-installs-v2  https://review.openstack.org/40104803:11
*** Nrk9t1x has joined #openstack-infra03:12
*** wolverineav has joined #openstack-infra03:12
*** Nrk9t1x has quit IRC03:15
*** wolverineav has quit IRC03:16
*** Nrk9t1x has joined #openstack-infra03:17
*** sdake has quit IRC03:19
*** sdake has joined #openstack-infra03:21
*** wolverineav has joined #openstack-infra03:22
*** cschwede has quit IRC03:23
*** wolverineav has quit IRC03:26
*** chandankumar has joined #openstack-infra03:27
*** cschwede has joined #openstack-infra03:28
*** yamahata has quit IRC03:29
*** aeng has quit IRC03:31
*** wolverineav has joined #openstack-infra03:31
*** aeng has joined #openstack-infra03:32
*** sflanigan has quit IRC03:32
*** liusheng has quit IRC03:33
*** zhurong has quit IRC03:35
*** zhurong has joined #openstack-infra03:36
*** thorst has joined #openstack-infra03:36
*** csomerville has quit IRC03:36
*** wolverineav has quit IRC03:36
*** thorst has quit IRC03:37
*** adriant has joined #openstack-infra03:37
*** sdake has quit IRC03:41
*** wolverineav has joined #openstack-infra03:41
*** links has joined #openstack-infra03:42
*** sdake has joined #openstack-infra03:43
openstackgerritJamie Lennox proposed openstack-infra/zuul: Re-enable requirement-older-than tests  https://review.openstack.org/40102703:43
openstackgerritJamie Lennox proposed openstack-infra/zuul: Re-enable requirement-username tests  https://review.openstack.org/40102803:43
openstackgerritJamie Lennox proposed openstack-infra/zuul: Re-enable requirement-email tests  https://review.openstack.org/40102903:43
openstackgerritJamie Lennox proposed openstack-infra/zuul: Re-enable requirement-newer-than tests  https://review.openstack.org/40101903:43
*** EricGonczer_ has quit IRC03:45
*** wolverineav has quit IRC03:46
*** armax has quit IRC03:46
*** sflanigan has joined #openstack-infra03:49
*** wolverineav has joined #openstack-infra03:51
*** psachin has joined #openstack-infra03:52
*** pcrews has quit IRC03:53
*** wolverineav has quit IRC03:56
*** ijw has quit IRC03:56
*** wolverineav has joined #openstack-infra04:01
*** markvoelker has quit IRC04:02
*** sdake has quit IRC04:03
*** sdake has joined #openstack-infra04:05
*** wolverineav has quit IRC04:06
*** flwang1 has quit IRC04:08
*** gildub has joined #openstack-infra04:10
*** jgriffith is now known as jgriffith_away04:10
*** Julien-zte has quit IRC04:11
*** Goneri has quit IRC04:11
*** wolverineav has joined #openstack-infra04:11
*** wolverineav has quit IRC04:12
*** esikachev has joined #openstack-infra04:12
*** Julien-zte has joined #openstack-infra04:12
*** esikachev has quit IRC04:16
*** aeng is now known as aeng_mtg04:18
*** wolverineav has joined #openstack-infra04:21
*** yamamoto has joined #openstack-infra04:21
openstackgerritIan Wienand proposed openstack/diskimage-builder: Trace package install in package-installs-v2  https://review.openstack.org/40104804:22
*** yamamoto has quit IRC04:23
*** Alagar has quit IRC04:24
*** ijw has joined #openstack-infra04:24
*** sdake has quit IRC04:25
*** wolverineav has quit IRC04:25
*** sdake has joined #openstack-infra04:28
*** ijw has quit IRC04:29
*** yamahata has joined #openstack-infra04:29
*** wolverineav has joined #openstack-infra04:31
*** wolverineav has quit IRC04:35
*** mhayden has quit IRC04:38
*** wolverineav has joined #openstack-infra04:40
*** yamahata has quit IRC04:43
*** Alagar has joined #openstack-infra04:44
*** tlian has quit IRC04:44
*** wolverineav has quit IRC04:45
openstackgerritKhai Do proposed openstack-infra/infra-specs: Gerrit upgrade  https://review.openstack.org/38819004:47
*** sdake has quit IRC04:49
*** mhayden has joined #openstack-infra04:50
*** wolverineav has joined #openstack-infra04:50
*** EricGonczer_ has joined #openstack-infra04:51
openstackgerritAparna proposed openstack/diskimage-builder: Update hpssacli to ssacli in proliant-tools element  https://review.openstack.org/39650404:52
*** sdake has joined #openstack-infra04:53
*** yamamoto has joined #openstack-infra04:54
*** yamamoto has quit IRC04:54
*** wolverineav has quit IRC04:55
*** Nrk9t1x has quit IRC04:57
*** EricGonczer_ has quit IRC04:58
*** rbuzatu has joined #openstack-infra04:58
*** wolverineav has joined #openstack-infra05:00
*** jogo has joined #openstack-infra05:02
*** jogo has quit IRC05:02
*** jogo has joined #openstack-infra05:02
*** rbuzatu has quit IRC05:02
*** pahuang has quit IRC05:03
*** wolverin_ has joined #openstack-infra05:03
openstackgerritRenat Akhmerov proposed openstack-infra/project-config: Add mistral gate for mysql unit tests  https://review.openstack.org/40053505:04
*** sree has joined #openstack-infra05:04
*** wolverineav has quit IRC05:05
*** sflanigan has quit IRC05:05
openstackgerritIan Wienand proposed openstack/diskimage-builder: Trace package install in package-installs-v2  https://review.openstack.org/40104805:05
*** pahuang has joined #openstack-infra05:05
*** yamahata has joined #openstack-infra05:05
*** Jeffrey4l has quit IRC05:06
*** newmember has joined #openstack-infra05:08
*** aeng_mtg has quit IRC05:08
openstackgerritJamie Lennox proposed openstack-infra/zuul: Re-enable requirement-older-than tests  https://review.openstack.org/40102705:09
openstackgerritJamie Lennox proposed openstack-infra/zuul: Re-enable requirement-username tests  https://review.openstack.org/40102805:09
openstackgerritJamie Lennox proposed openstack-infra/zuul: Re-enable requirement-email tests  https://review.openstack.org/40102905:09
openstackgerritJamie Lennox proposed openstack-infra/zuul: Re-enable requirement-newer-than tests  https://review.openstack.org/40101905:09
openstackgerritJamie Lennox proposed openstack-infra/zuul: Re-enable requirement vote tests  https://review.openstack.org/40106105:09
openstackgerritJamie Lennox proposed openstack-infra/zuul: Re-enable requirement status tests  https://review.openstack.org/40106205:09
openstackgerritJamie Lennox proposed openstack-infra/zuul: Re-enable requirement reject tests  https://review.openstack.org/40106305:09
*** dingyichen has quit IRC05:10
*** wolverin_ has quit IRC05:12
*** aeng_mtg has joined #openstack-infra05:13
*** pgadiya has joined #openstack-infra05:13
*** dingyichen has joined #openstack-infra05:14
*** pcrews has joined #openstack-infra05:16
*** Alagar has quit IRC05:16
*** sflanigan has joined #openstack-infra05:17
*** sflanigan has joined #openstack-infra05:17
*** Alagar has joined #openstack-infra05:20
*** cshastri has joined #openstack-infra05:20
*** wolverineav has joined #openstack-infra05:22
*** jogo has quit IRC05:22
*** senk has joined #openstack-infra05:24
*** wolverineav has quit IRC05:27
*** senk_ has joined #openstack-infra05:28
*** vikrant has joined #openstack-infra05:30
*** sandanar has joined #openstack-infra05:30
*** senk has quit IRC05:31
*** sdake_ has joined #openstack-infra05:31
*** sandanar_ has joined #openstack-infra05:34
*** sdake has quit IRC05:35
*** senk has joined #openstack-infra05:37
*** hurgleburgler has quit IRC05:38
*** sandanar has quit IRC05:38
*** senk_ has quit IRC05:40
*** wolverineav has joined #openstack-infra05:42
*** wolverineav has quit IRC05:46
*** gongysh has quit IRC05:49
*** wolverineav has joined #openstack-infra05:52
*** Alagar has quit IRC05:52
*** wolverineav has quit IRC05:56
openstackgerritIan Wienand proposed openstack/diskimage-builder: Trace package install in package-installs-v2  https://review.openstack.org/40104805:58
*** chandankumar has quit IRC05:59
*** wolverineav has joined #openstack-infra06:01
*** adriant has quit IRC06:02
*** yamamoto has joined #openstack-infra06:02
*** markvoelker has joined #openstack-infra06:02
*** wolverineav has quit IRC06:06
*** liusheng has joined #openstack-infra06:07
*** GnomeKing has joined #openstack-infra06:07
*** markvoelker has quit IRC06:08
*** GnomeKing is now known as Bobba06:10
BobbaPlease could someone add os-xenapi-core as a member to os-xenapi-release (https://review.openstack.org/#/admin/groups/1650,members) thanks!06:10
*** wolverineav has joined #openstack-infra06:11
*** Alagar has joined #openstack-infra06:12
*** esikachev has joined #openstack-infra06:12
*** wolverineav has quit IRC06:16
*** Nrk9t1x has joined #openstack-infra06:17
*** esikachev has quit IRC06:17
*** aeng_mtg is now known as aeng_afk06:18
*** jogo has joined #openstack-infra06:20
*** jogo has quit IRC06:20
*** jogo has joined #openstack-infra06:20
*** wolverineav has joined #openstack-infra06:21
*** wolverineav has quit IRC06:26
openstackgerritIan Wienand proposed openstack/diskimage-builder: Trace package install in package-installs-v2  https://review.openstack.org/40104806:30
*** wolverineav has joined #openstack-infra06:31
*** tojuvone has quit IRC06:34
*** yamamoto has quit IRC06:34
*** wolverineav has quit IRC06:36
*** abregman has joined #openstack-infra06:36
*** nadya has joined #openstack-infra06:37
*** nadya has quit IRC06:38
*** esikachev has joined #openstack-infra06:38
*** wolverineav has joined #openstack-infra06:41
*** yamamoto has joined #openstack-infra06:43
*** yamamoto has quit IRC06:43
*** oanson has joined #openstack-infra06:43
*** wolverin_ has joined #openstack-infra06:44
*** hrubi has quit IRC06:44
*** wolverineav has quit IRC06:45
*** senk has quit IRC06:46
*** kzaitsev_mb has quit IRC06:48
*** wolverin_ has quit IRC06:49
*** yamamoto has joined #openstack-infra06:51
*** yamamoto has quit IRC06:57
*** wolverineav has joined #openstack-infra07:02
*** wolverineav has quit IRC07:06
*** gildub has quit IRC07:07
*** qwertyco has joined #openstack-infra07:08
*** tjones has quit IRC07:09
*** nadya has joined #openstack-infra07:12
*** Guest2_ has joined #openstack-infra07:12
*** nadya has quit IRC07:12
*** tesseract has joined #openstack-infra07:12
*** Alagar has quit IRC07:12
*** Alagar has joined #openstack-infra07:12
*** tesseract is now known as Guest5952807:13
*** senk has joined #openstack-infra07:14
*** wolverineav has joined #openstack-infra07:16
*** ccamacho has joined #openstack-infra07:17
openstackgerritIan Wienand proposed openstack/diskimage-builder: Trace package install in package-installs-v2  https://review.openstack.org/40104807:18
*** mmandel has joined #openstack-infra07:18
*** wolverineav has quit IRC07:20
*** mmandel has quit IRC07:22
*** e0ne has joined #openstack-infra07:24
*** isaacb has joined #openstack-infra07:25
*** wolverineav has joined #openstack-infra07:26
*** nadya has joined #openstack-infra07:27
*** gouthamr has joined #openstack-infra07:30
*** chandankumar has joined #openstack-infra07:31
*** wolverineav has quit IRC07:32
*** dingyichen has quit IRC07:35
*** yamahata has quit IRC07:39
*** rbuzatu_ has joined #openstack-infra07:42
*** drifterza has joined #openstack-infra07:44
*** e0ne has quit IRC07:45
*** jascott1 has joined #openstack-infra07:47
*** s-shiono has joined #openstack-infra07:47
*** Hal1 has joined #openstack-infra07:51
*** wolverineav has joined #openstack-infra07:52
*** matrohon has joined #openstack-infra07:56
AJaegerianw: could you review https://review.openstack.org/392940 and https://review.openstack.org/399667 , please?07:57
*** wolverineav has quit IRC07:57
*** s-shiono has quit IRC07:58
*** wolverineav has joined #openstack-infra07:59
*** nherciu has joined #openstack-infra08:01
*** wolverineav has quit IRC08:04
openstackgerritZhipeng Huang proposed openstack-infra/project-config: Rename project Nomad to Cyborg based upon team voting and consensus at https://etherpad.openstack.org/p/nomad-ocata-design-session  https://review.openstack.org/40111508:05
*** ad_rien_ has joined #openstack-infra08:06
*** yamamoto has joined #openstack-infra08:08
AJaegerWhy didn't they come up with that two days ago? ;( ^08:11
*** dimtruck is now known as zz_dimtruck08:11
*** rbuzatu_ has quit IRC08:11
*** berendt has joined #openstack-infra08:12
*** Guest2_ has quit IRC08:14
*** ihrachys has joined #openstack-infra08:14
*** s-shiono has joined #openstack-infra08:16
*** yamamoto has quit IRC08:19
*** maishsk has joined #openstack-infra08:19
*** maishsk has quit IRC08:19
*** nmagnezi has joined #openstack-infra08:20
*** senk has quit IRC08:20
*** ralonsoh has joined #openstack-infra08:20
*** jpena|off is now known as jpena08:20
*** derekjhyang has quit IRC08:21
*** senk has joined #openstack-infra08:21
*** wolverineav has joined #openstack-infra08:21
openstackgerritRob Cresswell proposed openstack-infra/project-config: Update Horizons selenium-headless test  https://review.openstack.org/39986808:21
openstackgerritMerged openstack-infra/system-config: Check number of meetbot channels  https://review.openstack.org/39294008:22
*** yamamoto has joined #openstack-infra08:23
openstackgerritIan Wienand proposed openstack/diskimage-builder: Trace package install in package-installs-v2  https://review.openstack.org/40104808:24
*** senk_ has joined #openstack-infra08:25
openstackgerritRob Cresswell proposed openstack-infra/project-config: Update Horizons selenium-headless test  https://review.openstack.org/39986808:26
*** wolverineav has quit IRC08:26
openstackgerritRob Cresswell proposed openstack-infra/project-config: Update Horizons selenium-headless test  https://review.openstack.org/39986808:26
robcresswellSorry for the noise, still failing to wrap my head around the various yaml changes.08:27
*** dtantsur|afk is now known as dtantsur08:27
*** e0ne has joined #openstack-infra08:28
*** senk has quit IRC08:28
*** yamamoto has quit IRC08:29
*** jaosorior has joined #openstack-infra08:29
*** yamamoto has joined #openstack-infra08:30
*** shardy has joined #openstack-infra08:30
*** jpich has joined #openstack-infra08:30
openstackgerritAndreas Jaeger proposed openstack-infra/project-config: Run checklang on all branches  https://review.openstack.org/39966708:31
openstackgerritZhipeng Huang proposed openstack-infra/project-config: Rename project Nomad to Cyborg based upon team voting and consensus  https://review.openstack.org/40111508:33
*** ssbarnea has joined #openstack-infra08:33
*** e0ne has quit IRC08:34
*** yamamoto has quit IRC08:35
*** dtardivel has joined #openstack-infra08:41
*** amoralej|off is now known as amoralej08:43
openstackgerritJuan Antonio Osorio Robles proposed openstack-infra/tripleo-ci: WIP TLS everywhere job  https://review.openstack.org/39173808:43
openstackgerritRob Cresswell proposed openstack-infra/project-config: Update Horizons selenium-headless test  https://review.openstack.org/39986808:44
*** ihrachys has quit IRC08:45
*** isaacb has quit IRC08:45
openstackgerritIan Wienand proposed openstack/diskimage-builder: Trace package install in package-installs-v2  https://review.openstack.org/40104808:47
openstackgerritIan Wienand proposed openstack/diskimage-builder: Special case dib-python in dib-lint  https://review.openstack.org/40112708:47
*** Alagar has quit IRC08:48
*** makowals has quit IRC08:49
*** makowals_ has joined #openstack-infra08:49
*** yuval has joined #openstack-infra08:51
*** rossella__ has joined #openstack-infra08:57
*** isaacb has joined #openstack-infra08:57
openstackgerritIan Wienand proposed openstack/diskimage-builder: Special case dib-python in dib-lint  https://review.openstack.org/40112708:59
openstackgerritIan Wienand proposed openstack/diskimage-builder: Trace package install in package-installs-v2  https://review.openstack.org/40104808:59
AJaegerianw, sorry, founda bug in 399667 and fixed it - could you review again, please? Thanks!08:59
*** zzzeek has quit IRC09:00
*** sree has quit IRC09:01
*** gongysh has joined #openstack-infra09:01
*** sree has joined #openstack-infra09:01
*** arxcruz has joined #openstack-infra09:01
*** zzzeek has joined #openstack-infra09:02
*** sree is now known as sreeram_v09:04
*** gouthamr has quit IRC09:04
*** asettle has joined #openstack-infra09:05
*** sreeram_v is now known as sree09:05
*** martinkopec has joined #openstack-infra09:08
*** sree is now known as sreeram_v09:10
*** rbuzatu has joined #openstack-infra09:11
*** ggnel_t has quit IRC09:17
*** tpsilva has joined #openstack-infra09:19
*** ihrachys has joined #openstack-infra09:20
*** ihrachys has quit IRC09:20
*** ihrachys has joined #openstack-infra09:20
openstackgerritMichal Dulko proposed openstack-infra/project-config: Fix Cinder's multibackend ZeroMQ job  https://review.openstack.org/40115009:21
dulekAJaeger, yolanda: Turns out the zmq job merged yesterday was using old envvar, that wasn't really working. Patch above should fix that. ^09:22
*** rbuzatu has quit IRC09:24
*** rbuzatu has joined #openstack-infra09:24
*** _degorenko|afk is now known as degorenko09:25
*** Hal1 has quit IRC09:25
*** sshnaidm|away is now known as sshnaidm09:26
*** wolverineav has joined #openstack-infra09:29
*** dizquierdo has joined #openstack-infra09:30
*** sreeram_v is now known as sree09:30
*** rossella__ has quit IRC09:31
*** lucas-afk is now known as lucasagomes09:31
*** rossella__ has joined #openstack-infra09:31
*** sree is now known as sreeram_v09:32
*** ggnel_t has joined #openstack-infra09:32
*** markvoelker has joined #openstack-infra09:32
*** lin_yang has quit IRC09:33
*** john-davidge has joined #openstack-infra09:34
*** Julien-zte has quit IRC09:34
*** markvoelker has quit IRC09:37
strigazi_AFKAJaeger, yolanda, Good Morning, we can merge this: https://review.openstack.org/#/c/400598/09:37
*** strigazi_AFK is now known as strigazi09:39
*** derekh has joined #openstack-infra09:41
*** yuval has quit IRC09:43
Qimingguys, I'm seeing some strange errors from gate jobs complaining that service endpoint not found, we haven't done any changes to gate jobs for quite a few weeks09:44
Qimingthis error is happening starting a few hours ago09:45
*** NBziouech has joined #openstack-infra09:45
Qimingis there any infra side change we should be aware of, e.g. adapt gate jobs accordingly?09:45
*** ccamacho is now known as ccamacho|afk09:47
therveQiming, Is it Heat related?09:47
therveIf it's using the heatclient, we got a regression in the latest release which is being worked on09:47
openstackgerritLee Yarwood proposed openstack-infra/elastic-recheck: Add query for grenade ssh key failure bug 1644150  https://review.openstack.org/40115609:47
*** pilgrimstack has joined #openstack-infra09:47
openstackbug 1644150 in grenade "Failed to connect to the host via ssh: Host key verification failed" [Undecided,New] https://launchpad.net/bugs/164415009:47
Qimingtherve, seems not09:49
Qimingwe were not able to get senlin public endpoint when calling tempest tests, not sure if something changed in tempest, infra, devstack ... ?09:50
Qimingthanks for asking, therve09:50
openstackgerritJuan Antonio Osorio Robles proposed openstack-infra/tripleo-ci: WIP TLS everywhere job  https://review.openstack.org/39173809:51
*** pilgrimstack1 has joined #openstack-infra09:51
*** pilgrimstack has quit IRC09:51
*** dtantsur is now known as dtantsur|bbl10:00
*** wolverineav has quit IRC10:00
*** zhurong has quit IRC10:01
AJaegerstrigazi: are you sure it works? Then I'll +2A10:01
AJaegerQiming: better ask on #openstack-qa10:01
*** ggnel_t has quit IRC10:02
AJaegerstrigazi: Ah, see your comment now - will +2A10:02
Qimingthanks, AJaeger, was doubting if any changes at infra side is making senlin jobs failing, will keep digging10:03
strigaziAJaeger, thanks10:03
*** gildub has joined #openstack-infra10:03
*** hashar has joined #openstack-infra10:07
AJaegerQiming, I'm not aware of anything - but I guesss you need to debug a bit first ;)10:08
QimingAJaeger, therve, have figured out the reason ... devstack has removed the definition of 'KEYSTONE_CATALOG_BACKEND' 8 hours ago, and that was (for unknown reasons) affecting senlin plugin setup at gate side, fixed...10:08
openstackgerritMerged openstack-infra/project-config: [magnum] Update fedora-atomic build job to 24  https://review.openstack.org/40059810:08
Qimingthanks anyway10:08
AJaegerQiming: glad to hear!10:08
*** yanyanhu has quit IRC10:11
*** electrofelix has joined #openstack-infra10:14
*** ggnel_t has joined #openstack-infra10:15
*** gongysh has quit IRC10:15
*** wolverineav has joined #openstack-infra10:20
*** jamielennox is now known as jamielennox|away10:21
*** esikachev has quit IRC10:23
*** sambetts|afk is now known as sambetts10:24
*** wolverineav has quit IRC10:25
*** ihrachys has quit IRC10:28
*** claudiub|2 has joined #openstack-infra10:29
*** tojuvone has joined #openstack-infra10:30
*** ldnunes has joined #openstack-infra10:31
openstackgerritAndy McCrae proposed openstack-infra/project-config: Fix OpenStack-Ansible xenial gate jobs  https://review.openstack.org/40118410:31
*** geguileo has joined #openstack-infra10:34
*** jascott1_ has joined #openstack-infra10:34
*** jascott1 has quit IRC10:35
*** pkoniszewski has quit IRC10:35
*** isq has quit IRC10:35
*** jmorgan1 has quit IRC10:35
geguileoHi, Cinder gate is kind of blocked, could we get another core to review https://review.openstack.org/394496?10:36
geguileoWe have over 1K failures a day on the multinode grenade job...10:36
geguileoThanks!10:36
*** newmember has quit IRC10:37
*** qwertyco has quit IRC10:40
*** tuanluong has quit IRC10:40
*** yolanda has quit IRC10:41
*** jascott1 has joined #openstack-infra10:41
*** panda|Zz is now known as panda10:43
*** jmorgan1 has joined #openstack-infra10:44
*** tosky has joined #openstack-infra10:44
*** pkoniszewski has joined #openstack-infra10:44
openstackgerritPascal Mazon proposed openstack-infra/project-config: Add 6WIND Virtual Accelerator Charm  https://review.openstack.org/40062110:44
*** mmoster_ has quit IRC10:44
*** jascott1_ has quit IRC10:45
*** ihrachys has joined #openstack-infra10:46
*** wolverineav has joined #openstack-infra10:48
*** ccamacho|afk is now known as ccamacho10:50
*** wolverineav has quit IRC10:53
*** ihrachys has quit IRC10:53
*** nadya has quit IRC10:53
openstackgerritJuan Antonio Osorio Robles proposed openstack-infra/tripleo-ci: WIP TLS everywhere job  https://review.openstack.org/39173810:55
openstackgerritVitaly Gridnev proposed openstack-infra/project-config: [sahara] finish transitioning scenario jobs to xenial  https://review.openstack.org/40081410:59
openstackgerritVitaly Gridnev proposed openstack-infra/project-config: [sahara] finish transitioning scenario jobs to xenial  https://review.openstack.org/40081410:59
*** igormarnat has quit IRC11:00
*** dteselkin has quit IRC11:00
*** katyafervent_awa has quit IRC11:01
*** asilenkov has quit IRC11:01
*** rakhmerov has quit IRC11:01
*** ativelkov has quit IRC11:01
*** ativelkov has joined #openstack-infra11:03
*** nadya has joined #openstack-infra11:04
openstackgerritIan Y. Choi proposed openstack-infra/system-config: Switch translate-dev to use openstackid  https://review.openstack.org/39340511:05
*** rakhmerov has joined #openstack-infra11:05
*** asilenkov has joined #openstack-infra11:05
*** katyafervent_awa has joined #openstack-infra11:06
*** dteselkin has joined #openstack-infra11:07
*** vikrant is now known as vikrant|T11:07
*** igormarnat has joined #openstack-infra11:07
*** wolverineav has joined #openstack-infra11:08
*** mmandel has joined #openstack-infra11:08
*** Hal1 has joined #openstack-infra11:09
*** yolanda has joined #openstack-infra11:11
*** wolverineav has quit IRC11:12
*** mmandel has quit IRC11:12
*** Jeffrey4l has joined #openstack-infra11:14
*** yuval has joined #openstack-infra11:15
*** yuval has quit IRC11:15
*** sreeram_v has quit IRC11:18
*** ad_rien_ has quit IRC11:18
*** sreeram_v has joined #openstack-infra11:19
openstackgerritGabriele Cerami proposed openstack-infra/tripleo-ci: DO NOT MERGE Transition to quickstart: simulate transition  https://review.openstack.org/39925711:21
openstackgerritGabriele Cerami proposed openstack-infra/tripleo-ci: Transition to quickstart: add toci_gate_oooq.sh and jobs configurations  https://review.openstack.org/39925611:21
*** sreeram_v has quit IRC11:23
*** wolverineav has joined #openstack-infra11:27
*** wolverineav has quit IRC11:31
openstackgerritRicardo Carrillo Cruz proposed openstack-infra/devstack-gate: WIP Add setup_host playbook  https://review.openstack.org/39151911:33
*** ccamacho is now known as ccamacho|lunch11:34
openstackgerritIsaac Beckman proposed openstack-infra/project-config: selective caching of git repos  https://review.openstack.org/32248711:35
*** dtantsur|bbl is now known as dtantsur11:36
openstackgerritMerged openstack-infra/project-config: Set Cinder multinode grenade on master to xenial  https://review.openstack.org/39449611:39
*** boden has joined #openstack-infra11:40
openstackgerritMerged openstack-infra/project-config: Fix Cinder's multibackend ZeroMQ job  https://review.openstack.org/40115011:42
openstackgerritMerged openstack-infra/project-config: Run checklang on all branches  https://review.openstack.org/39966711:43
openstackgerritMerged openstack-infra/project-config: Add mistral gate for mysql unit tests  https://review.openstack.org/40053511:43
openstackgerritMerged openstack-infra/project-config: networking-odl: disable rally job for pre-ocata release  https://review.openstack.org/39928311:43
openstackgerritMerged openstack-infra/project-config: retire django-openstack-auth-kerberos  https://review.openstack.org/39964911:43
openstackgerritMerged openstack-infra/project-config: Revise ACLs for networking-[onos|l2gw] projects  https://review.openstack.org/39979811:46
openstackgerritMerged openstack-infra/project-config: Fix different zmq configurations for functional tests  https://review.openstack.org/40082311:46
*** Nrk9t1x has quit IRC11:46
openstackgerritMerged openstack-infra/project-config: All Python35 issues should be fixed for MoltenIron  https://review.openstack.org/40082011:47
openstackgerritMerged openstack-infra/project-config: Remove duplicated Horizon test runs  https://review.openstack.org/40008411:47
openstackgerritMerged openstack-infra/project-config: [Manila] Adds job for Manila UI DevStack plugin  https://review.openstack.org/39976811:47
*** wolverineav has joined #openstack-infra11:47
amrithg'morning infra, is tarballs.openstack.org a single thing, or is it really distributed; one per CI cloud?11:47
openstackgerritMerged openstack-infra/project-config: tooz: make Python 3.5 job voting  https://review.openstack.org/39962411:48
openstackgerritMerged openstack-infra/project-config: [rally] switch all jobs to xenial and unblock gates  https://review.openstack.org/39895311:48
openstackgerritAndy McCrae proposed openstack-infra/project-config: Fix OpenStack-Ansible xenial gate jobs  https://review.openstack.org/40118411:50
*** psilvad has joined #openstack-infra11:50
*** e0ne has joined #openstack-infra11:50
amrithAJaeger, g'afternoon, would you know whether ^^11:51
*** wolverineav has quit IRC11:52
*** claudiub has joined #openstack-infra11:52
openstackgerritSergey Reshetnyak proposed openstack-infra/project-config: Add new project: fuel-ccp-rally  https://review.openstack.org/40122011:52
*** nicolasbock has joined #openstack-infra11:54
*** claudiub|2 has quit IRC11:54
*** ssbarnea_ has joined #openstack-infra11:55
openstackgerritIsaac Beckman proposed openstack-infra/puppet-jenkins: Customize jenkins.default by template  https://review.openstack.org/26278711:55
*** yolanda has quit IRC11:55
*** yolanda has joined #openstack-infra11:55
openstackgerritRicardo Carrillo Cruz proposed openstack-infra/devstack-gate: WIP Add setup_host playbook  https://review.openstack.org/39151911:56
openstackgerritGabriele Cerami proposed openstack-infra/tripleo-ci: DO NOT MERGE Transition to quickstart: simulate transition  https://review.openstack.org/39925711:58
openstackgerritGabriele Cerami proposed openstack-infra/tripleo-ci: Transition to quickstart: add toci_gate_oooq.sh and jobs configurations  https://review.openstack.org/39925611:58
*** ssbarnea has quit IRC11:58
*** mkoderer has joined #openstack-infra11:59
openstackgerritTuan Luong-Anh proposed openstack/diskimage-builder: Replace six.iteritems() with .items()  https://review.openstack.org/40051412:03
*** openstackgerrit has quit IRC12:03
*** openstackgerrit has joined #openstack-infra12:03
openstackgerritJuan Antonio Osorio Robles proposed openstack-infra/tripleo-ci: WIP TLS everywhere job  https://review.openstack.org/39173812:04
*** jascott1 has quit IRC12:04
openstackgerritRicardo Carrillo Cruz proposed openstack-infra/devstack-gate: WIP Add setup_host playbook  https://review.openstack.org/39151912:04
*** raildo has joined #openstack-infra12:05
*** wolverineav has joined #openstack-infra12:07
*** jcoufal has joined #openstack-infra12:09
*** gildub has quit IRC12:11
*** wolverineav has quit IRC12:11
openstackgerritRicardo Carrillo Cruz proposed openstack-infra/devstack-gate: WIP Add setup_host playbook  https://review.openstack.org/39151912:14
*** lseki has joined #openstack-infra12:14
*** ssbarnea has joined #openstack-infra12:14
*** gongysh has joined #openstack-infra12:15
*** jordanP has joined #openstack-infra12:16
*** gongysh has quit IRC12:17
*** ssbarnea_ has quit IRC12:18
openstackgerritSagi Shnaidman proposed openstack-infra/tripleo-ci: Full quickstart gate run on OVB  https://review.openstack.org/38109412:19
openstackgerritSagi Shnaidman proposed openstack-infra/tripleo-ci: DONT MERGE: Test quickstart experimental job  https://review.openstack.org/39760912:19
*** abregman is now known as abregman|mtg12:21
openstackgerritSagi Shnaidman proposed openstack-infra/tripleo-ci: Full quickstart gate run on OVB  https://review.openstack.org/38109412:21
openstackgerritSagi Shnaidman proposed openstack-infra/tripleo-ci: DONT MERGE: Test quickstart experimental job  https://review.openstack.org/39760912:21
openstackgerritRicardo Carrillo Cruz proposed openstack-infra/devstack-gate: WIP Add setup_host playbook  https://review.openstack.org/39151912:21
*** lucasagomes is now known as lucas-hungry12:21
lsekiguys, I have a question about zuul pipeline precedence12:22
lseki if there's a high priority pipeline that is triggered all the time, a lower precedence pipeline may never be started12:23
lsekiis that correct?12:23
openstackgerritGabriele Cerami proposed openstack-infra/tripleo-ci: DO NOT MERGE Transition to quickstart: simulate transition  https://review.openstack.org/39925712:25
openstackgerritGabriele Cerami proposed openstack-infra/tripleo-ci: Transition to quickstart: add toci_gate_oooq.sh and jobs configurations  https://review.openstack.org/39925612:25
*** rtheis has joined #openstack-infra12:26
*** rtheis has quit IRC12:26
*** pgadiya has quit IRC12:26
*** gouthamr has joined #openstack-infra12:32
dulekAll the gate-grenade-dsvm-cinder-multinode-ubuntu-xenial jobs in Cinder are hanging in queued state, even though some patches run for 1,5 hour. I'm scared I've broke something with https://review.openstack.org/#/c/394496/12:33
lseki@jeblair ^12:33
dulekCould anyone help me investigate?12:33
*** ssbarnea has quit IRC12:35
*** ssbarnea has joined #openstack-infra12:35
*** wolverineav has joined #openstack-infra12:36
*** nadya has quit IRC12:37
pabelangerlseki: yes, that is correct12:38
*** shardy is now known as shardy_lunch12:39
pabelangerlseki: you can setup a window-floor to help control how many changes to run at 1 time in a pipeline, we do this with gate as not to starve other pipelines12:39
*** ihrachys has joined #openstack-infra12:40
*** weshay_ has quit IRC12:40
*** mmoster_ has joined #openstack-infra12:40
pabelangerlseki: note, the pipeline needs to be a DependentPipelineManagers12:41
*** wolverineav has quit IRC12:41
openstackgerritRicardo Carrillo Cruz proposed openstack-infra/devstack-gate: Add role for fix_etc_hosts  https://review.openstack.org/38305212:45
*** nadya has joined #openstack-infra12:45
*** nadya has quit IRC12:46
*** oanson has quit IRC12:53
*** links has quit IRC12:54
*** wolverineav has joined #openstack-infra12:56
*** dprince has joined #openstack-infra12:56
*** sreeram_v has joined #openstack-infra12:57
*** ssbarnea has quit IRC12:58
*** ssbarnea has joined #openstack-infra12:58
*** wolverineav has quit IRC13:00
*** sparkiegeek has joined #openstack-infra13:02
*** sreeram_v has quit IRC13:02
sparkiegeekhi, apologies in advance if I'm asking in the wrong place. I'm trying to get a patch up for review, and had troubles signing the CLA - I did it through Gerrit, filled in my details (inc. mailing address) and got errors about saving contact information13:04
lseki@pabelanger great! I'll use it13:04
lsekithx13:04
*** nherciu_ has joined #openstack-infra13:04
sparkiegeekI tried several times, and consistently got errors, so then I tried without my mailing info and it went through. But now "git review" complains that it needs contact information :/13:05
*** wolverineav has joined #openstack-infra13:07
*** dkehn has quit IRC13:08
*** ccamacho|lunch is now known as ccamacho13:08
*** dkehn has joined #openstack-infra13:08
*** nherciu has quit IRC13:08
*** mtanino has quit IRC13:09
*** adarazs has quit IRC13:12
openstackgerritVitaly Gridnev proposed openstack-infra/project-config: [sahara] finish transitioning scenario jobs to xenial  https://review.openstack.org/40081413:13
*** ihrachys has quit IRC13:17
*** adarazs has joined #openstack-infra13:18
openstackgerritMike Kolesnik proposed openstack-infra/project-config: Fix functional tests for networking-odl  https://review.openstack.org/40125513:18
*** Guest59528 has quit IRC13:19
*** amoralej is now known as amoralej|lunch13:20
*** ad_rien_ has joined #openstack-infra13:21
*** ad_rien_ has quit IRC13:21
*** ad_rien_ has joined #openstack-infra13:22
*** ad_rien_ has quit IRC13:22
openstackgerritValeriy Ponomaryov proposed openstack-infra/project-config: [Manila] Fix new gate-manila-ui-dsvm-nv job  https://review.openstack.org/40125713:23
*** lucas-hungry is now known as lucasagomes13:23
*** NBziouech has quit IRC13:24
openstackgerritValeriy Ponomaryov proposed openstack-infra/project-config: [Manila] Fix new gate-manila-ui-dsvm-nv job  https://review.openstack.org/40125713:24
*** ad_rien_ has joined #openstack-infra13:24
*** yamamoto has joined #openstack-infra13:25
*** newmember has joined #openstack-infra13:26
*** NBziouech has joined #openstack-infra13:27
*** markvoelker has joined #openstack-infra13:28
*** shardy_lunch is now known as shardy13:28
*** yolanda has quit IRC13:29
*** charlledaniel has joined #openstack-infra13:34
*** Julien-zte has joined #openstack-infra13:34
*** abregman|mtg is now known as abregman13:35
*** dkehn has quit IRC13:35
*** dkehn has joined #openstack-infra13:35
openstackgerritIgor Belikov proposed openstack-infra/jenkins-job-builder: Add Pipeline job type and deprecate Workflow  https://review.openstack.org/32374413:35
charlledanielGood Morning OpenStack. Does anyone know any admin from https://review.openstack.org? I have two accounts there and I wanted to delete one of them, but I don't know how.13:36
*** xyang1 has joined #openstack-infra13:36
dulekAll the gate-grenade-dsvm-cinder-multinode-ubuntu-xenial jobs in Cinder are hanging in queued state, even though some patches run for 1,5 hour. I'm scared I've broke something with https://review.openstack.org/#/c/394496/13:41
dulekCould anyone help with investigation?13:41
*** baoli has joined #openstack-infra13:43
*** baoli has quit IRC13:43
*** baoli has joined #openstack-infra13:43
*** jamesdenton has joined #openstack-infra13:44
*** jpena is now known as jpena|lunch13:45
*** dmsimard|away is now known as dmsimard13:45
*** snarwade has quit IRC13:45
*** mdrabe has joined #openstack-infra13:46
*** nadya has joined #openstack-infra13:46
openstackgerritTung Doan proposed openstack-infra/project-config: Tacker changes to xenial node  https://review.openstack.org/40078013:48
*** esikachev has joined #openstack-infra13:48
*** tlian has joined #openstack-infra13:49
*** hrubi has joined #openstack-infra13:50
*** derekh is now known as derekh_afk13:51
*** nadya has quit IRC13:51
*** trash has quit IRC13:52
*** jamesdenton has quit IRC13:55
*** abregman has quit IRC13:55
fungidulek: it looks like there are no workers registered to run that job since roughly when https://review.openstack.org/394496 got applied. i'm still digging to find the cause13:56
*** gordc has joined #openstack-infra13:57
dulekfungi: Thanks! In the same time ubuntu-xenial-2-node jobs from Neutron are working just fine.13:57
* sparkiegeek 's issue was due to mis-matches in email addresses between my www.openstack.org account and review.openstack.org account - now resolved13:57
openstackgerritIgor Belikov proposed openstack-infra/jenkins-job-builder: Add Pipeline job type and deprecate Workflow  https://review.openstack.org/32374413:58
*** sparkiegeek has left #openstack-infra13:58
*** ramishra has quit IRC13:59
*** ramishra has joined #openstack-infra14:01
*** kgiusti has joined #openstack-infra14:02
*** Zara has quit IRC14:04
*** yankcrime has quit IRC14:04
*** SotK has quit IRC14:04
*** jascott1 has joined #openstack-infra14:04
*** fguillot has joined #openstack-infra14:05
fungiwe have 24 ubuntu-xenial-2-node workers running jobs, with reasonable runtimes14:05
*** SotK has joined #openstack-infra14:05
fungilooking at gearman registrations, i see build:gate-grenade-dsvm-neutron-multinode-ubuntu-xenial:ubuntu-xenial-2-node and build:gate-grenade-dsvm-neutron-multinode-ubuntu-xenial in neutron's case14:06
*** _nick has joined #openstack-infra14:07
*** abregman has joined #openstack-infra14:07
fungibut in cinder's case only build:gate-grenade-dsvm-cinder-multinode-ubuntu-xenial is registered14:07
fungiso for some reason the node-specific registration isn't present14:07
*** thorst has joined #openstack-infra14:08
*** jascott1 has quit IRC14:09
*** Zara has joined #openstack-infra14:09
openstackgerritAndy McCrae proposed openstack-infra/project-config: Fix OpenStack-Ansible xenial gate jobs  https://review.openstack.org/40118414:10
*** ijw has joined #openstack-infra14:10
*** pcaruana has quit IRC14:14
*** ijw has quit IRC14:15
*** jamesdenton has joined #openstack-infra14:15
openstackgerritJakub Libosvar proposed openstack-infra/elastic-recheck: Add query for grenade multinode failure, bug 1643485  https://review.openstack.org/40127914:15
openstackbug 1643485 in neutron "Stable Newton grenade multinode jobs fail with "Failed to connect to the host via ssh: Host key verification failed."" [Critical,New] https://launchpad.net/bugs/164348514:15
*** jlibosva has joined #openstack-infra14:15
dulekfungi: Hm, I've tried to write the patch the same way as Neutron one.14:15
fungidulek: yeah, i see that. i'm not immediately spotting anything wrong with the patch but i'm checking out how it actually parses at this point14:16
dulekfungi: Okay, I'll try looking through the patch again.14:17
*** mhickey has joined #openstack-infra14:18
openstackgerritGabriele Cerami proposed openstack-infra/tripleo-ci: logging: extract journal to compressed text file, before gathering  https://review.openstack.org/40081714:19
*** abregman is now known as abregman|mtg14:19
*** thorst has quit IRC14:19
*** annegentle has joined #openstack-infra14:19
*** yolanda has joined #openstack-infra14:21
*** vikrant|T has quit IRC14:21
*** amoralej|lunch is now known as amoralej14:22
*** cshastri has quit IRC14:22
*** thorst has joined #openstack-infra14:22
*** mriedem has joined #openstack-infra14:23
openstackgerritTung Doan proposed openstack-infra/project-config: Tacker changes to xenial node  https://review.openstack.org/40078014:23
*** nadya has joined #openstack-infra14:24
*** jamesdenton has quit IRC14:24
*** psilvad has quit IRC14:25
*** EricGonczer_ has joined #openstack-infra14:25
openstackgerritSagi Shnaidman proposed openstack-infra/project-config: WIP: always clone quickstart extras with quickstart  https://review.openstack.org/40128214:26
*** pcrews has quit IRC14:26
*** psachin has quit IRC14:26
*** pcrews has joined #openstack-infra14:28
*** thorst has quit IRC14:31
*** nmagnezi has quit IRC14:31
*** tesseract has joined #openstack-infra14:32
*** tesseract is now known as Guest4865314:33
*** ihrachys has joined #openstack-infra14:33
openstackgerritMerged openstack-infra/zuul: Skip individual test_requirements tests  https://review.openstack.org/40101814:35
*** rbuzatu_ has joined #openstack-infra14:38
openstackgerritTung Doan proposed openstack-infra/project-config: Tacker changes to xenial node  https://review.openstack.org/40078014:39
*** Guest48653 has quit IRC14:39
*** tesseract- has joined #openstack-infra14:39
fungidulek: i think the difference you spotted is right on the money: http://paste.openstack.org/show/590216/14:39
funginote the list brackets14:40
dulekfungi: Aww…14:40
fungii'm testing now to confirm14:41
*** yamamoto has quit IRC14:42
*** rbuzatu has quit IRC14:42
*** ssbarnea_ has joined #openstack-infra14:43
*** rbuzatu_ has quit IRC14:43
*** yamamoto has joined #openstack-infra14:44
*** yamamoto has quit IRC14:45
*** mmoster_ has quit IRC14:46
*** ssbarnea has quit IRC14:46
*** derekh_afk is now known as derekh14:47
ihrachysany ideas why grenade fails on trusty on ssh verification? https://bugs.launchpad.net/grenade/+bug/164348514:49
openstackLaunchpad bug 1643485 in grenade "Stable Newton grenade multinode jobs fail with "Failed to connect to the host via ssh: Host key verification failed."" [Critical,New]14:49
dulekfungi: I have the commit changing that to single value notation ready.14:49
ihrachysit breaks newton neutron gate and earlier, and I suspect even more, all trusty jobs14:49
ihrachys*grenade14:49
dulekihrachys: It's failing only on osic/rax nodes.14:49
fungidulek: yeah, i'm so far failing to actually get that alteration to take effect14:49
*** tesseract- has quit IRC14:49
dulekfungi: So you suppose it could be something else?14:50
ihrachysdulek: ok. is there any fix/people working on it/ideas why the failure?14:50
dulekihrachys: I've pinged #osic-ops on the issue, no movement from their side yet.14:50
*** flepied1 has joined #openstack-infra14:50
dulekihrachys: You can nag them too. ;)14:51
cloudnulldulek: mind dropping something in #osic-clouds assuming you suspect its something wrong with the cloud14:51
fungidulek: i'm so far still trying to rule out that something has caused the zuul launchers to not actually read configuration updates, or is preventing them from registering new jobs into gearman14:51
*** jpena|lunch is now known as jpena14:51
*** hurgleburgler has joined #openstack-infra14:51
fungibut it's also possible that my manual attempt to update this on one of the zuul launchers is based on poor assumptions on my part14:51
cloudnullif you think its a gate issue there's little we can do from an infra side (osic infra that is).14:51
dulekcloudnull: To be honest I'm not sure, but key error on Ansible side suggests it is cloud's fault.14:52
*** andymaier has joined #openstack-infra14:52
cloudnullwe're talking about the missing host key right ?14:52
*** rbuzatu has joined #openstack-infra14:53
fungidulek: what key error? in a job log?14:53
*** jaosorior has quit IRC14:53
*** flepied has quit IRC14:53
dulekfungi: That's another thread - trusty jobs failing on OSIC and RAX nodes.14:54
fungiunless it's a multi-node job, jobs shouldn't be sshing over the network to other nodes14:54
*** jaosorior has joined #openstack-infra14:54
*** anilvenkata has joined #openstack-infra14:54
dulekfungi: It is happening for multinode jobs.14:54
anilvenkataDinaBelova, Hi14:54
*** yamamoto has joined #openstack-infra14:54
fungidulek: oh, only multi-node? and it's at the step where the primary node tries to ssh to the subnode?14:54
dulekfungi: That's why we've pushed to switch the Cinder multinode grenade to xenial - to get over it failing on OSIC's trusty.14:54
dulekfungi: I'm not really sure, but here's the logstash for this one: http://logstash.openstack.org/#/dashboard/file/logstash.json?query=message:%5C%22Failed%20to%20connect%20to%20the%20host%20via%20ssh:%20Host%20key%20verification%20failed%5C%22&from=864000s14:55
*** nherciu_ has quit IRC14:55
fungiwell, there's nothing within the cloud provider that should make ssh between nodes of one distro release fail and between another work14:55
*** jkilpatr_ has joined #openstack-infra14:55
cloudnull++ ^14:56
fungiso i have a very strong feeling any provider-specific behavior differences you'14:56
fungire seeing on that behavior will come down to nodepool having managed to update images in some providers and not others, and something on newer images is broken14:56
fungiwhen did it start?14:56
*** jkilpatr has quit IRC14:56
*** Goneri has joined #openstack-infra14:56
dulekfungi: Cool, thanks for clarifying. :) My apologies cloudnull!14:57
dulekfungi: logstash shows 21th.14:57
fungialso, seriously hoping another infra-root happens along and can take over. i'm actually supposed to be cooking and cleaning before my inlaws arrive in a few hours14:57
fungihaven't even had my coffee yet14:58
openstackgerritSagi Shnaidman proposed openstack-infra/project-config: WIP: Run oooq ha and nonha jobs for quickstart  https://review.openstack.org/40129814:58
pabelangerfungi: o/14:58
pabelangerdon't mind helping14:58
fungioh. pabelanger!14:58
pabelangerlet me catch up on backscroll14:58
openstackgerritCarlos Camacho proposed openstack-infra/tripleo-ci: Add Panko to scenario001  https://review.openstack.org/40129914:59
cloudnullfungi: wait for the inlaws to arrive, then make them clean :)14:59
fungipabelanger: two current issues. for some reason the change to switch cinder's grenade multinode jobs to xenial didn't register a node-specific entry in gearman so the gate is backed up waiting for nodes to run those jobs for several hours. also the impetus for them switching is because ssh between subnodes on trusty seems to have been broken for a couple days15:00
cloudnullit can be forced family fun15:00
*** john-davidge has quit IRC15:00
*** Julien-zte has quit IRC15:00
fungiokay! problem 1 is solved15:00
*** john-davidge has joined #openstack-infra15:00
pabelangerfungi: ack15:01
fungidulek: my ministrations proved effective, i just didn't wait long enough for the launcher to finish reloading the modified job config15:01
fungidulek: go ahead and push up your proposed change for that and i'll approve it15:01
*** abregman_ has joined #openstack-infra15:01
*** Julien-zte has joined #openstack-infra15:01
fungipabelanger: if you can look into the trusty multinode problem with ssh between subnodes, that would be a huge help15:02
*** Julien-zte has quit IRC15:02
pabelangerfungi: sure, let me see if i can hold some nodes15:02
*** oanson has joined #openstack-infra15:02
*** Julien-zte has joined #openstack-infra15:02
*** Julien-zte has quit IRC15:03
pabelangerOh15:03
pabelangerneat, I cannot ssh into it either15:03
pabelangerUnable to negotiate with 162.242.232.36 port 22: no matching host key type found. Their offer: ssh-dss15:03
*** Julien-zte has joined #openstack-infra15:03
*** Julien-zte has quit IRC15:03
pabelangerlooks like a side affect of our recent change to runtime-ssh-host-keys15:03
fungipabelanger: i suspect the fix for the dib release has broken something on trusty, but that's just a hunch15:04
fungiyeah, that15:04
*** Julien-zte has joined #openstack-infra15:04
*** Julien-zte has quit IRC15:04
fungiit apparently only started breaking on the 21st, which is roughly when the fix for host key regeneration went in15:04
*** claudiub|2 has joined #openstack-infra15:04
*** Julien-zte has joined #openstack-infra15:05
pabelangeryup15:05
fungior at least when we started building and uploading new images for it15:05
*** abregman|mtg has quit IRC15:05
*** thorst has joined #openstack-infra15:05
*** Julien-zte has quit IRC15:05
*** john-davidge has quit IRC15:05
pabelangerssh -oHostKeyAlgorithms=+ssh-dss 162.242.232.36 is my fix15:05
pabelangerbut let me see which keys are generated15:05
*** panda is now known as panda|brb15:05
*** Julien-zte has joined #openstack-infra15:06
*** Julien-zte has quit IRC15:06
*** Julien-zte has joined #openstack-infra15:06
openstackgerritMichal Dulko proposed openstack-infra/project-config: Fix Cinder multinode grenade job  https://review.openstack.org/40130415:06
*** mmandel has joined #openstack-infra15:07
*** Julien-zte has quit IRC15:07
*** claudiub has quit IRC15:07
dulekfungi, pabelanger: ^^15:07
*** dizquierdo has quit IRC15:08
*** mpaolino has joined #openstack-infra15:08
*** ihrachys has quit IRC15:08
*** jaosorior has quit IRC15:09
pabelangerfungi: Yup, we are missing ssh-rsa keys15:10
*** jaosorior has joined #openstack-infra15:10
pabelangerhost keys*15:10
openstackgerritStéphane Albert proposed openstack-infra/project-config: Add specs repository for CloudKitty  https://review.openstack.org/40130515:10
*** abregman_ has quit IRC15:11
*** abregman has joined #openstack-infra15:11
Jeffrey4lanyone can explain more about cross project testing? http://docs.openstack.org/infra/zuul/gating.html#cross-project-testing   i am confused with the second table.15:12
*** rossella__ has quit IRC15:12
*** thorst has quit IRC15:12
*** ihrachys has joined #openstack-infra15:12
pabelangerfungi: Hmm, I think we had pipefail issues on trusty too15:12
*** senk has joined #openstack-infra15:12
pabelangerlogic there to generate rsa keys, but didn't happen15:12
anilvenkataI have posted a question regarding osprofiler https://answers.launchpad.net/osprofiler/+question/40433415:12
anilvenkatacan someone help?15:13
*** wolverineav has quit IRC15:13
openstackgerritTung Doan proposed openstack-infra/project-config: Tacker-Xenial  https://review.openstack.org/40130615:13
pabelangerI'll delete those images now15:13
*** senk_ has quit IRC15:14
*** rossella_s has joined #openstack-infra15:15
*** senk_ has joined #openstack-infra15:15
pabelangerclarkb: so, ya, we did see pipefail issues with non systemd thing15:15
pabelangeronly noticed it now15:15
*** pcrews has quit IRC15:16
*** thorst has joined #openstack-infra15:16
fungianilvenkata: you probably want to ask in #openstack-neutron or #openstack-oslo15:16
openstackgerritMerged openstack-infra/project-config: Fix Cinder multinode grenade job  https://review.openstack.org/40130415:17
*** inc0 has joined #openstack-infra15:17
fungianilvenkata: the community infrastructure sysadmin team doesn't really do anything with osprofiler as far as i'm aware15:17
fungiit's more of a library used by openstack projects15:17
*** panda|brb is now known as panda15:17
anilvenkatafungi, yes, it was a mistake. thanks Jeremy15:18
*** senk has quit IRC15:18
*** sandanar_ has quit IRC15:19
*** zz_dimtruck is now known as dimtruck15:19
pabelangerdulek: fungi: AJaeger: won't be an issue in zuulv3, but we should consider improving our JJB validation tools to error on a single item list.  re: 40130415:20
pabelangercould poke at that on the train today15:20
*** thorst has quit IRC15:20
openstackgerritEmilien Macchi proposed openstack-infra/tripleo-ci: WIP - Deploy TripleO with Puppet 4  https://review.openstack.org/37120915:22
openstackgerritStéphane Albert proposed openstack-infra/project-config: Add specs repository for CloudKitty  https://review.openstack.org/40130515:22
*** hongbin has joined #openstack-infra15:22
*** wolverineav has joined #openstack-infra15:23
openstackgerritEmilien Macchi proposed openstack-infra/tripleo-ci: WIP - Deploy TripleO with Puppet 4  https://review.openstack.org/37120915:23
*** tosky has quit IRC15:24
pabelangerfungi: dulek: broken ubuntu-trusty images should be removed from all clouds. We should have enough coverage in infra-cloud, osic-cloud1-disk and ovh today until replacements uploaded15:24
fungipabelanger: oh, so were those older images that hadn't been replaced?15:25
pabelangernever15:25
pabelangeruploaded yesterday15:25
pabelangeranything 2+ days was broken15:25
*** chlong has joined #openstack-infra15:25
fungigot it15:25
*** tosky has joined #openstack-infra15:25
fungithanks!15:25
pabelangerhappy to help :)15:26
pabelangernext up is fedora-24 images, we've been having some issues with them recently15:27
*** martinkopec has quit IRC15:27
*** drifterza_ has joined #openstack-infra15:27
*** wolverineav has quit IRC15:27
*** jamesdenton has joined #openstack-infra15:29
*** drifterza has quit IRC15:30
pabelangerokay, fedora-24 should be cleaned up now too15:33
*** wolverineav has joined #openstack-infra15:33
*** EricGonc_ has joined #openstack-infra15:34
*** chlong has quit IRC15:34
*** ihrachys has quit IRC15:35
*** pcrews has joined #openstack-infra15:35
anilvenkataclarkb, ping15:35
*** EricGonczer_ has quit IRC15:36
*** charlledaniel has left #openstack-infra15:37
*** wolverineav has quit IRC15:38
vgridnevdoes someone know where is the source of truth for this file: https://github.com/openstack/python-neutronclient/blob/master/tools/tox_install.sh ?15:40
fungivgridnev: no idea what you mean with that question, but maybe you're looking for https://review.openstack.org/317909 ?15:42
fungithat's the point of origin of that file as far back as i can track it in the repo anyway15:42
EmilienMinc0, fungi: it's sad to see a duplicate effort here https://review.openstack.org/#/c/399171/15:43
EmilienMinc0, fungi: it looks like someone already created this module https://github.com/cristifalcas/puppet-docker_distribution15:43
pabelangercloudnull: we are seeing a large amount of nodes in the delete state for osic-cloud1, do you mind looking into it?15:43
inc0EmilienM, not really, this module is for centos only15:43
pabelangercloudnull: look to be over 4 hours old15:44
EmilienMand? we could make it work on ubuntu/debian15:44
EmilienMwhy creating a new module from scratch?15:44
inc0yeah, but it's really simple to run docker registry15:44
vgridnevfungi, actually I guess that this file was copied from some place, so I'm looking for that place15:44
inc0I could write ansible for it in 10min15:44
*** berendt has quit IRC15:44
fungivgridnev: in that case, you'd need to ask the author15:44
inc0I just struggle because I don't know first thing about puppet15:44
EmilienMinc0: it's doesn't explain why we duplicate a module15:44
EmilienMwe should rather add missing bits and consume it15:45
inc0EmilienM, fork->ubuntuize can be harder15:45
EmilienMI'm not sure Infra wants to manage yet another module15:45
inc0someone has to manage it anyway15:45
EmilienMinc0: why that? you could send a PR to the repo15:45
inc0this doesn;t have community15:45
inc0it's single person effort15:46
inc0and we're banking Kolla's gate on it15:46
*** rbuzatu has quit IRC15:46
fungiEmilienM: inc0: yeah, i should have asked if there was prior research into an existing module to do this (though really we just need to puppet install of a package and conffile_15:46
EmilienMfungi: for now, who knows how it will evolve15:46
inc0https://review.openstack.org/#/c/401003/ <- these are conf files and everythong15:46
inc0we need for now15:47
inc0and I don't expect needing anything more in forseeable future15:47
inc0what I need from this PS is puppetize it and make secrets managable15:47
fungiEmilienM: yep, i agree. we didn't want to embed the package/file resource into our system-config repo, but should have looked to see if there was already one out there15:47
inc0again, centos only15:47
fungieven if it's overkill and needs patching to work for our use case15:48
EmilienMthat's not a good pretex15:48
inc0with 3 commits total15:48
*** panda is now known as panda|brb15:48
pabelangerI still say you could update your jobs today, to use an image downloaded from tarballs.o.o, stand up a local docker-registry and not be blocked by this effort to add a docker-registry to infra15:48
pabelangerif kolla jobs are blocked today15:48
EmilienMinc0: Puppet OpenStack modules support both debian/redhat families, creating a new project just because a distro is not supported is not a valid pretext15:49
inc0pabelanger, we don't have any place to host these images15:49
fungiEmilienM: inc0: i don't have time to discuss it today, but we should look into combining efforts on cristifalcas/puppet-docker_distribution and retiring the openstack-infra one15:49
*** chlong has joined #openstack-infra15:49
pabelangerinc0: tarballs.o.o15:49
pabelangerthat is where you host them15:49
inc0pabelanger, we don't host *images* there15:50
inc0built15:50
pabelangerbut download them each time the job starts, import into local docker-registry15:50
pabelangerinc0: right, but you can15:50
pabelangerinc0: add a publisher to your post pipeline job15:50
inc0but we need to build -> tarball and host15:50
pabelangeryes, other projects do this today15:50
inc0which will multiply amount of data transfered/consumer couple times15:50
pabelangereg: tripleo, trove, etc15:50
inc02 gigs will turn into 100s probably15:50
EmilienMfungi: I agree.15:50
fungiinc0: technically we _do_ host some images there, for example https://tarballs.openstack.org/trove/images/ and https://tarballs.openstack.org/ironic-python-agent/coreos/15:51
pabelangerinc0: I don't see how that will change once infra has a docker-registry15:51
pabelangerit will be the same about of data15:51
* fungi needs to go afk for a while and get non-openstack things done15:52
inc0pabelanger, docker registry understands deduplication of layers15:52
*** EricGonc_ has quit IRC15:52
inc0it reuses shared stuff15:52
pabelangerI feel, we are rushing into running a docker-registry in infra, because of the false statement that kolla jobs are blocked. Where is there a way we can unblock them today and maybe slow down on standing up the registry until everybody understands the steps needed15:53
*** nadya has quit IRC15:53
inc0pabelanger, trust me, we would use something else if we could15:53
*** wolverineav has joined #openstack-infra15:53
pabelangerinc0: yes, I am saying run that locally for now, on the vm in the gate.15:53
inc0docker registry is infrastructure meant to serve purpose we need15:53
*** EricGonczer_ has joined #openstack-infra15:53
*** nadya has joined #openstack-infra15:54
inc0it's more than just http server for files15:54
pabelangerI am not disputing that, I am suggesting your kolla jobs launch it each time for now15:54
pabelangerrather then rushing to stand one up in infra15:54
pabelangerjob launches, download image from tarballs.o.o, start docker-registry, image said image, have your jobs use http://localhost to access docker-registry15:55
pabelangerimport said image*15:55
inc0pabelanger, issue is that we want to have standing registry15:55
openstackgerritStéphane Albert proposed openstack-infra/project-config: Add specs repository for CloudKitty  https://review.openstack.org/40130515:55
*** andymaier has quit IRC15:56
inc0to have access to built images in different gates15:56
inc0not build it locally at all15:56
*** nadya has quit IRC15:56
inc0that will allow us to have voting gates15:56
*** nadya_ has joined #openstack-infra15:56
pabelangerhow will the way I am suggesting not give voting gates?15:56
cloudnullpabelanger: looking into it now15:56
pabelangeryou still only build once15:56
openstackgerritJames E. Blair proposed openstack-infra/puppet-openstackci: Add a nodepool_builder manifest  https://review.openstack.org/40099815:56
pabelangercloudnull: thanks15:57
*** xarses has joined #openstack-infra15:57
*** drifterza__ has joined #openstack-infra15:57
inc0pabelanger, ok, another question15:57
*** drifterza__ is now known as drifterza15:57
*** nadya_ has quit IRC15:57
inc0can we have afs share?15:57
inc0that we mount to gates on given path?15:57
*** nadya has joined #openstack-infra15:58
*** abregman is now known as abregman|mtg15:58
*** wolverineav has quit IRC15:58
pabelangertechnically yes, we don't have jobs that do it today.15:58
*** panda|brb is now known as panda15:58
pabelangerI know there has been some speed concerns from jeblair in the past15:58
inc0brb weekly meeting15:58
jeblairinc0: we have avoided putting afs itself on the test nodes, because it's kind of heavy-weight (it changes a lot about the test nodes) -- plus -- since the test nodes are ephemeral, you don't get the caching benefit15:58
jeblairinc0: however....15:59
openstackgerritMerged openstack-infra/puppet-openstackci: Use nodepool::builder for nodepool  https://review.openstack.org/40099315:59
inc0jeblair, pabelanger we could use shared fs and bind local registry to it each time15:59
*** makowals has joined #openstack-infra15:59
inc0ro for most of gates, rw when we want to build new stuff15:59
*** isaacb has quit IRC16:00
jeblairinc0: for either the case of the docker registry server, or pabelanger's suggestion of hosting image files and using a local docker server, we *can* put those in afs and the worker nodes can transfer the images from a nearby mirror16:00
inc0but I feel that's going to be harder than jsut hosting single registry somewher16:00
inc0e16:00
*** senk_ has quit IRC16:01
*** Sukhdev_ has joined #openstack-infra16:01
*** drifterza_ has quit IRC16:01
*** jascott1 has joined #openstack-infra16:01
pabelangerI actually think the download image from tarballs.o.o / local registry is the faster way. Which is why I am suggesting it to fix your voting gates, until we properly setup the docker-registry infra on our side.16:01
pabelangerwe already have the post publishers in place16:02
*** nadya has quit IRC16:02
jeblairinc0: yeah, i think i see what you're asking -- and i think i would recommend against running afs on the worker nodes themselves because there will be no cache, and the files will be transferred from a remote server (possibly DFW->CDG) over UDP; it won't be very fast.  we've found the best approach is to have long-running afs clients in each region serving things to workers in that region.  that way those clients act as a cache.16:02
pabelangeryou just need to add wget container and start registry to your jobs16:02
*** makowals_ has quit IRC16:02
inc0guys, I'll be back here in 1 hr16:03
inc0thanks!16:03
jeblairinc0: (your idea *would* work -- the speed is the only issue)16:03
*** ad_rien_ has quit IRC16:03
inc0jeblair, I'd still have central registry somewhere tbh16:03
*** strigazi is now known as strigazi_AFK16:04
*** anilvenkata has quit IRC16:05
jeblairpabelanger: i do like your idea, btw.  i think it will solve the problem quickly with minimal infrastructure.16:05
jeblairpabelanger: i think i will land 400998... do you want to continue work in a followup change?16:06
pabelangerjeblair: yes, quick fix, while we churn on our infra needs.16:06
pabelangerjeblair: yes, +216:06
*** EricGonc_ has joined #openstack-infra16:07
*** rbuzatu has joined #openstack-infra16:07
*** EricGonczer_ has quit IRC16:08
openstackgerritJuan Antonio Osorio Robles proposed openstack-infra/tripleo-ci: WIP TLS everywhere job  https://review.openstack.org/39173816:09
*** armax has joined #openstack-infra16:09
*** mpaolino has quit IRC16:09
openstackgerritMerged openstack-infra/puppet-openstackci: Add a nodepool_builder manifest  https://review.openstack.org/40099816:11
pabelanger\o/16:11
*** gouthamr has quit IRC16:12
*** wolverineav has joined #openstack-infra16:13
*** gouthamr has joined #openstack-infra16:13
*** pcrews has quit IRC16:15
*** wolverineav has quit IRC16:18
*** Apoorva has joined #openstack-infra16:19
*** makowals has quit IRC16:23
*** wolverineav has joined #openstack-infra16:24
*** fguillot has quit IRC16:24
*** Sukhdev_ has quit IRC16:24
*** jgriffith_away is now known as jgriffith16:25
*** fguillot has joined #openstack-infra16:26
*** andymaier has joined #openstack-infra16:27
*** dkehn__ has joined #openstack-infra16:28
*** mmandel has quit IRC16:28
*** wolverineav has quit IRC16:28
openstackgerritStéphane Albert proposed openstack-infra/project-config: Add specs repository for CloudKitty  https://review.openstack.org/40130516:30
*** wolverineav has joined #openstack-infra16:30
*** daemontool has joined #openstack-infra16:32
*** Apoorva has quit IRC16:32
*** dprince has quit IRC16:33
*** ramishra has quit IRC16:34
*** wolverineav has quit IRC16:35
*** lbeliveau has quit IRC16:36
*** senk has joined #openstack-infra16:37
*** weshay is now known as weshay_lunch16:37
*** thorst has joined #openstack-infra16:38
openstackgerritJames E. Blair proposed openstack-infra/puppet-openstackci: Add mysql passwords to nodepool builder  https://review.openstack.org/40134416:38
jeblairpabelanger: ^16:38
*** thorst has quit IRC16:39
*** pcrews has joined #openstack-infra16:40
*** allanice001 has joined #openstack-infra16:40
pabelangerjeblair: +216:41
*** ccamacho has quit IRC16:41
*** annegentle has quit IRC16:41
*** yamahata has joined #openstack-infra16:42
*** ramishra has joined #openstack-infra16:43
*** nadya has joined #openstack-infra16:43
*** yamamoto has quit IRC16:45
*** ad_rien_ has joined #openstack-infra16:47
*** wolverineav has joined #openstack-infra16:50
*** hashar has quit IRC16:50
cloudnullpabelanger: all of the instances in "deleting" have been cleared out.16:51
cloudnulllet me know if you see something like that again.16:52
pabelangercloudnull: for sure, thanks again16:52
*** mtanino has joined #openstack-infra16:52
*** dankolbrs has quit IRC16:54
openstackgerritJames E. Blair proposed openstack-infra/system-config: Add nodepool builder nodes  https://review.openstack.org/40099916:54
cloudnulllooking into the root cause however it looks like gremlins. a couple of the conductor nodes we're getting connection resets to the DB and after a restart all looks to be happy again. so idk why it was pissed off. maybe residual issues from our ssl misshap16:54
*** Kiall has joined #openstack-infra16:54
*** dankolbrs has joined #openstack-infra16:54
cloudnullrather, compounded issues from our ssl mishap.16:54
cloudnullthough that could be a red herring.16:55
*** mmandel has joined #openstack-infra16:55
*** wolverineav has quit IRC16:55
*** drifterza has quit IRC16:55
cloudnullidk. its almost eat till i pass out time so the brain is not firing on the regular 1.25 cylinders16:56
*** andymaier has quit IRC16:56
*** ad_rien_ has quit IRC16:56
pabelangercloudnull: We started accumulating deletes about the same time as the SSL outage, according to grafana.o.o16:56
pabelangerso, that does seem to make sense16:56
cloudnullI'm keeping an eye on it for a bit to see if it comes back but otherwise it looks like we're back in business.16:57
*** rhallisey_ has joined #openstack-infra16:57
*** dprince has joined #openstack-infra16:58
openstackgerritMerged openstack-infra/puppet-openstackci: Add mysql passwords to nodepool builder  https://review.openstack.org/40134416:58
*** ccamacho has joined #openstack-infra16:59
clarkbis ssl outage code for letsencrypt updates?16:59
cloudnullclarkb: yup17:00
cloudnullwe thought we nailed down the schedule17:00
cloudnullwe were wrong17:00
clarkbfungi dulek re that jjb confog thing that is probably a zuul launcher behavior17:00
cloudnullit17:00
cloudnull* it'd be easy if we were using something like haproxy which can run certbot17:01
cloudnullbut we have an f5 and certbot is a no go there. (we dont want to run it there)17:01
*** cody-somerville has joined #openstack-infra17:02
cloudnullso we're stuck doing the API calls manually and it would seem that the expire date was forgotten again17:02
fungisimilarly, the thread on debian-devel about how the acme protocol and clients like certbot are evolving too fast in non-backward-compatible ways to be suitable for stable distros gives me pause17:02
*** xarses has quit IRC17:02
pabelangeransible recently added a letsencrypt task to core17:03
pabelangerthis week17:03
*** xarses has joined #openstack-infra17:03
cloudnulloh, that's cool17:03
pabelangerhttps://docs.ansible.com/ansible/letsencrypt_module.html17:03
*** SergK has quit IRC17:03
* fungi files all this away in his little black book of why he'll give letsencrypt a few years to mature and then check in on it later17:03
*** SergK has joined #openstack-infra17:04
pabelangerplan to try it with some ansible things shortly17:04
cloudnullI have it  running on a few sites I manage. it works well, and its free.17:04
cloudnullbut running it in an env that requires external gear is a nightmare.17:04
* pabelanger nods17:04
*** chandankumar has quit IRC17:05
cloudnullbut its a free nightmare. so we'll continue causing ourselves headache ever few months, because free.17:05
cloudnullunless irtermite gets us a real multi-domain cert ;)17:06
*** makowals has joined #openstack-infra17:06
* cloudnull holds my breath17:06
openstackgerritMikhail S Medvedev proposed openstack-infra/irc-meetings: Remove third-party-ci working group meeting  https://review.openstack.org/40135217:06
*** thorst has joined #openstack-infra17:06
mmedvedekrtaylor: lennyb: fyi ^17:07
*** thorst_ has joined #openstack-infra17:07
*** sdake_ is now known as sdake17:09
notmynamewe've got some questions in swift about using the upper constraints in tox.ini. There's an inline comment on https://review.openstack.org/#/c/354291/ that is beyond my knowledge to answer17:09
clarkbnotmyname: looking17:10
notmynameclarkb: thanks :-)17:10
*** ggnel_t has quit IRC17:10
*** thorst has quit IRC17:11
*** senk has quit IRC17:11
*** thorst_ has quit IRC17:11
openstackgerritErlon R. Cruz proposed openstack-infra/project-config: Adds new experimental Cinder migration job  https://review.openstack.org/38173717:11
*** annegentle has joined #openstack-infra17:12
*** rhallisey_ has quit IRC17:12
*** rhallisey_ has joined #openstack-infra17:12
*** panda is now known as panda|bbl17:13
*** flepied1 has quit IRC17:14
openstackgerritJames E. Blair proposed openstack-infra/puppet-openstackci: Add missing required args to nodepool_builder  https://review.openstack.org/40135717:14
openstackgerritJames E. Blair proposed openstack-infra/system-config: Add nodepool builder nodes  https://review.openstack.org/40099917:14
inc0pabelanger, jeblair I'm back, sooo technically we could tar-gz directory with all the images17:14
inc0and on gate setup download-untar-run registry17:15
*** jaosorior has quit IRC17:15
inc0and on successful merge in kolla - upload tar to tarballs.o.o17:15
clarkbnotmyname: posted17:16
jlibosvaclarkb: hi17:17
notmynameclarkb: thanks again17:17
*** yamahata has quit IRC17:17
clarkbjlibosva: hi17:17
jlibosvaclarkb: we're experiencing some likely an infra issue that blocks some patches that we need to backport to Newton in order to switch to Xenial17:18
*** rbuzatu has quit IRC17:18
jlibosvaclarkb: do you have any good contacts that can help with https://bugs.launchpad.net/grenade/+bug/1643485 ?17:18
openstackLaunchpad bug 1643485 in grenade "Stable Newton grenade multinode jobs fail with "Failed to connect to the host via ssh: Host key verification failed."" [Critical,New]17:18
fungijlibosva: i believe pabelanger just fixed it an hour or so ago17:18
fungithough he can confirm17:18
jlibosvareally? those are best news today17:18
fungisounded like we were stuck on old trusty images in a bunch of places17:19
*** tjones has joined #openstack-infra17:19
jlibosvafungi: does it mean we're safe to recheck now?17:19
clarkbnotmyname: and one more comment explaining virtauelvn specific things17:19
jlibosvafungi: do you know if there is a bug that is solved so I can close the one I sent as dup?17:19
clarkbjlibosva: yes I think its safe to recheck now17:19
fungijlibosva: sounded like it to me, but i'd give pabelanger an opportunity to confirm first. he seems to still be around17:19
clarkbpabelanger had said all the bad images were removed17:20
pabelangerclarkb: jlibosva: fungi: yes, I have removed the bad ubuntu-trusty images from our clouds. So, we should be good. However, if there is still failures, I may have missed a cloud.17:20
*** e0ne has quit IRC17:20
pabelangerwe should start uploads shortly for images from today17:20
fungijlibosva: as i understand it, the bug was in an older diskimage-builder release, fixed a few days ago but not updated in all our providers17:20
*** knangia has joined #openstack-infra17:20
jlibosvafungi: clarkb pabelanger cool, thanks guys for fixing it :)17:21
pabelangeryes, that is correct17:21
fungii don't know what the bug filed against dib was, if tehre was one17:21
fungito clarify... i know the gist of the problem it had, but don't know if anyone filed a bug report about it formally17:22
clarkbI didn't file a bug17:22
pabelangerno, we didn't file a bug (that I know of)17:22
Jeffrey4lfungi, could u help me on setting up kolla and kolla-ansible cross project testing?  i wrote  something in ml  http://lists.openstack.org/pipermail/openstack-dev/2016-November/107847.html  ( sorry for the bad format )17:22
openstackgerritMathieu Rohon proposed openstack-infra/project-config: Make net-bgpvpn jobs run on trusty for mitaka and older  https://review.openstack.org/39711117:22
pabelangerwe should try to do that in the future17:23
jlibosvaok, so I'll close that one as expired or invalid17:23
*** jlibosva has quit IRC17:23
pabelangerI'll make a better effort to do that17:23
clarkbmy brain had stopped working by that point as evidenced by my failures to debug17:24
pabelangerinc0: I think the first step would be to publish your images, from post, to tarballs.o.o. I can help with that17:24
*** jordanP has quit IRC17:25
inc0pabelanger, publishing all of them as tar will be super hard17:25
inc0as tars will squash images and turn it into 100s of gigabytes17:25
*** Apoorva has joined #openstack-infra17:25
pabelangerinc0: what are they now?17:25
*** mmandel has quit IRC17:26
fungiJeffrey4l: possibly next week, but i'm not really around much for the rest of this week. it's a major holiday here17:26
openstackgerritJames E. Blair proposed openstack-infra/system-config: Add nodepool builder nodes  https://review.openstack.org/40099917:27
fungiJeffrey4l: the short answe is that if the job checks out all the repos it needs using zuul-cloner or devstack-gate then cross-repo testing should "just work"17:27
Jeffrey4lfungi, ok. or is it possible to give some example link for this? which project is using such feature?17:27
Jeffrey4lkolla and kolla-ansible using zuul-cloner right now. ( but i am not sure the cross project testing works )17:28
inc0pabelanger, less than 10gigs17:28
*** jamesde__ has joined #openstack-infra17:28
*** abregman|mtg has quit IRC17:28
*** hogepodge has joined #openstack-infra17:28
*** aviau has quit IRC17:28
fungiJeffrey4l: you should be able to tell if you add a depends-on header in a kolla-ansible change to a kolla change id and then look at the job logs where zuul-cloner says what refs it's checking out17:29
*** aviau has joined #openstack-infra17:29
*** allanice001 has quit IRC17:29
jeblairJeffrey4l: do you have a link to a log from a cross-testing job?17:29
Jeffrey4ljeblair, fungi yep. let me find it.17:29
fungiJeffrey4l: if the job in question testing kolla-ansible consumes kolla via git refs checked out by zuul-cloner then i would expect it to work fine17:30
*** matrohon has quit IRC17:30
*** sambetts is now known as sambetts|afk17:30
*** jamesdenton has quit IRC17:30
fungiif it uses some other mechanism to get kolla installed, then there is probably still work to be done17:30
Jeffrey4lOK.  let me check it.17:31
pabelangerinc0: where are the images stored on disk in your build images?17:32
*** xarses has quit IRC17:32
*** xarses has joined #openstack-infra17:32
inc0pabelanger, /var/lib/docker in general, but that depends on storage driver17:32
inc0but in registry you can specify directory where to keep them17:33
*** lucasagomes is now known as lucas-hungry17:33
*** lucas-hungry is now known as lucas-afk17:33
inc0and that's storage-driver independeny17:33
*** hogepodge has quit IRC17:33
*** rbuzatu has joined #openstack-infra17:34
openstackgerritJames E. Blair proposed openstack-infra/system-config: Add nodepool builder nodes  https://review.openstack.org/40099917:35
*** pdomin has joined #openstack-infra17:36
*** esikachev has quit IRC17:37
clarkbfungi: do you happen to have a debian instance with facter installed available to you? if so what are operatingsystemrelease and lsbdistrelease facts there?17:38
inc0also another thing - if we actually run local registry, it wont keep base OS image there, just deltas above17:38
inc0again - huge disk savings17:38
clarkbinc0: where will it keep the base image?17:38
*** rbuzatu has quit IRC17:38
clarkb(seems like it should have a copy of that too)17:38
inc0clarkb, dockerhub17:38
*** NBziouech has quit IRC17:39
inc0dockerhub is fine17:39
clarkbthat seems broken if the intent is to cache things for reliability17:39
clarkb(eg if dockerhub is fine for the base image why isn't dockerhub fine for your deltas)17:39
fungiclarkb: installed facter temporarily on my workstation... operatingsystemrelease=stretch/sid lsbdistrelease=unstable17:40
inc0clarkb, ubuntu base image isn't changing that often, uploading to dockerhub of all our images takes hours17:40
fungiwant details from a stable (jessie) machine?17:40
inc0imagine doing that every build17:40
clarkbfungi: ty17:41
jeblairinc0: *can* it keep a copy of the base image?17:41
clarkbfungi: no trying to figure out if I can use >= comparison on all debuntu or just ubuntu distros17:41
clarkbfungi: looks like just ubuntu17:41
inc0jeblair, ofc, just don't see much value in this17:41
inc0but it sure can17:41
fungiclarkb: on jessie i have operatingsystemrelease=8.6 lsbdistrelease=8.617:42
fungiso not very consistent between stable and testing/unstable17:42
clarkbfungi: huh, I will just restrict to ubuntu for now17:42
clarkbsince thats simple17:42
*** weshay_lunch is now known as weshay17:42
jeblairinc0: generally we like to avoid going out over the internet in jobs if possible, so when we start running a registry in each of our regions, those jobs will be able to get everything they need from a nearby server17:42
*** claudiub|2 has quit IRC17:42
*** shardy has quit IRC17:43
*** mkoderer has quit IRC17:43
*** hogepodge has joined #openstack-infra17:43
jeblairpabelanger: it looks like https://review.openstack.org/400999 and https://review.openstack.org/401357 are ready17:44
inc0jeblair, ok, we can host it in registry17:44
inc0but let's get registry first;)17:45
*** mhickey has quit IRC17:45
*** yamamoto has joined #openstack-infra17:45
*** daemontool has quit IRC17:46
*** matrohon has joined #openstack-infra17:46
openstackgerritBen Nemec proposed openstack-infra/tripleo-ci: Deploy network envs appropriate for the job  https://review.openstack.org/34750317:47
openstackgerritBen Nemec proposed openstack-infra/tripleo-ci: Test with bonded public interface  https://review.openstack.org/38556217:47
openstackgerritClark Boylan proposed openstack-infra/puppet-zanata: Hack to support service on xenial  https://review.openstack.org/40136317:49
clarkbfungi: pabelanger pleia2 lets see if the puppet noop apply job likes ^17:49
*** chlong has quit IRC17:50
*** degorenko is now known as _degorenko|afk17:50
openstackgerritMiles Gould proposed openstack/diskimage-builder: Allow installing proliant tools from an OS package  https://review.openstack.org/34421417:52
*** derekh has quit IRC17:52
*** yamamoto has quit IRC17:52
*** csomerville has joined #openstack-infra17:54
*** jamesde__ has quit IRC17:54
*** sdake has quit IRC17:54
Jeffrey4lfungi, jeblair seems it works as expect. magic ;)17:54
*** dave-mccowan has joined #openstack-infra17:56
*** cody-somerville has quit IRC17:57
*** dave-mccowan has quit IRC17:57
*** ralonsoh has quit IRC18:00
*** amoralej is now known as amoralej|off18:02
*** hashar has joined #openstack-infra18:03
mgagneIs there a way to permanently update the path to clouds.yaml in Nodepool? You can set OS_CLIENT_CONFIG_FILE in upstart or systemd but it won't be used by CLI.18:03
*** hashar is now known as hasharAway18:04
*** nadya has quit IRC18:04
inc0pabelanger, jeblair so out of all ideas we had so far, tar-gz of registry per base distro and uploading it to tarballs.o.o is best18:04
inc0besides ofc of having dedicated registry18:04
*** nadya has joined #openstack-infra18:04
inc0pabelanger, let say we'd like to tar-gz dir and upload it to tarballs.o.o every time change to kolla successfully merges to repo18:05
inc0how would we do this?18:05
*** senk has joined #openstack-infra18:05
mordredinc0: I apologize that I have been AFK more than normal over the last week - did we hit a blocker on having a registry? or are you just looking for solutions in the meantime?18:05
inc0mordred, blocker - no18:05
inc0it's super straightforward18:06
inc0mordred, all it takes (including auth) is this https://review.openstack.org/#/c/401003/18:06
pabelangerinc0: you'd create a publisher, like we do today for tarballs.  jenkins/jobs/macros.yaml in project-config18:06
inc0(after a fashion)18:06
pabelangertarget would be specific to kolla18:06
*** mdrabe has quit IRC18:06
mordredinc0: http://git.openstack.org/cgit/openstack-infra/project-config/tree/jenkins/jobs/macros.yaml#n1115 is an example of the one we did for debian packages18:07
pabelangerand the new publisher would be attached to a job-template that runs in the post pipeline18:07
pabelangeryup, deb-pkgs is a good example too18:07
mordredinc0: http://git.openstack.org/cgit/openstack-infra/project-config/tree/jenkins/jobs/deb-build-pkg.yaml#n34 is using that publisher macros18:08
*** nadya has quit IRC18:08
inc0mordred, we are examining how to achieve registry functionality without changing infra18:09
*** drifterza has joined #openstack-infra18:09
*** tosky has quit IRC18:09
*** chandankumar has joined #openstack-infra18:11
inc0seems straightforward:)18:12
inc0publisher part18:12
*** senk has quit IRC18:13
*** senk has joined #openstack-infra18:14
*** jpena is now known as jpena|off18:15
mgagnemordred: is there a way to override the path to clouds.yaml in Nodepool? I find the auto-detection used by os-client-config to be suboptimal for nodepool context. It assumes that you will be running CLI as nodepool user (so it finds config in $HOME) or it assumes your config is global in /etc/openstack which is not something I'm willing to do.18:15
pabelangerfedora-24 doesn't appears to be setting up networking correctly18:16
pabelangerianw: ^ you know if the issue?18:17
*** senk has quit IRC18:17
pabelangermgagne: OS_CLIENT_CONFIG_FILE is how I choose a specific clouds.yaml file18:18
mgagnepabelanger: right but you can understand how it's suboptimal18:19
*** sreeram_v has joined #openstack-infra18:20
*** xarses has quit IRC18:20
pabelangermgagne: agreed, today I use the nodepool user to run all my commands.18:20
pabelangerwe store ours in nodepool/.config/openstack today18:21
*** xarses has joined #openstack-infra18:22
*** dtantsur is now known as dtantsur|afk18:24
*** sreeram_v has quit IRC18:24
*** tqtran has joined #openstack-infra18:28
mordredmgagne: it's a good point - I think we can likely add something to the nodepool command to look for it somewhere else ...18:28
mgagnemordred: would there be a way to put that in nodepool.yaml so CLI and daemon can benefit from it?18:29
mordredmgagne: currently exporting OS_CLIENT_CONFIG_FILE is the best bet - but I totally see what you're saying18:29
*** chandankumar has quit IRC18:29
mordredmgagne: yah - I think so18:29
*** wolverineav has joined #openstack-infra18:29
mgagneI don't mind exporting OS_CLIENT_CONFIG_FILE in /etc/environment but that's a huge hack to me18:30
pabelangerI'm starting to think we need some sort of nodepool.conf file, where we can store things like this.  Today, we are using CLI args (eg: --upload-workers) but the list is starting to grow.  And I'm not sure nodepool.yaml makes the most sense for some of these things, cc clarkb18:30
jeblairi don't see why this one couldn't go in nodepool.yaml18:30
*** annegentle has quit IRC18:31
mgagnepabelanger: true. but I also feel like there are too many config files18:31
jeblairnodepool.yaml *is* the config file for nodepool :)18:31
mgagnesecure.conf,nodepool.yaml and clouds.yaml18:31
mgagneand now nodepool.conf18:31
pabelangerjeblair: clarkb has some objections with --upload-worker / build-worker settings in the past, hence why we only did CLI args18:31
openstackgerritMiles Gould proposed openstack/diskimage-builder: Allow installing proliant tools from an OS package  https://review.openstack.org/34421418:31
jeblairpabelanger: i think those are okay as cli args18:31
jeblair(or could go in a defaults file)18:32
mordredjeblair: yah - I agree - I think an optional clouds_yaml_location (or something) in nodepool.yaml that points to a clouds.yaml would make perfect sense18:32
pabelangerjeblair: Yup, that's what I do today18:32
*** electrofelix has quit IRC18:33
jeblair(the clouds.yaml config is needed to understand the nodepool config, so it makes sense to be able to 'include by reference' as it were)18:33
jeblairpabelanger: can you +3 https://review.openstack.org/401357 and https://review.openstack.org/400999 ?18:34
*** wolverin_ has joined #openstack-infra18:34
pabelangerlooking18:34
mgagneclouds-config, clouds-config-file, clouds-file, os-client-config are names I'm thinking about18:34
*** ihrachys has joined #openstack-infra18:35
*** markvoelker has quit IRC18:35
clarkbI would use clouds-config-file I think18:36
clarkbpabelanger: my concern with putting the thread config in nodepool.yaml was that nodepool.yaml should be portable, however thread selection likely isn't based on available bandwidth, io, cpu etc18:36
clarkbpabelanger: so I didn't want to tie a performance optimization toggle to a portable config file18:37
pabelangerclarkb: ack18:37
*** wolverineav has quit IRC18:38
openstackgerritMerged openstack-infra/puppet-openstackci: Add missing required args to nodepool_builder  https://review.openstack.org/40135718:41
*** flwang1 has joined #openstack-infra18:41
*** jgriffith is now known as jgriffith_away18:42
openstackgerritMiles Gould proposed openstack/diskimage-builder: Allow installing proliant tools from an OS package  https://review.openstack.org/34421418:42
clarkbgreppign for wildfly-systemd-daemon-reload in http://logs.openstack.org/63/401363/1/check/gate-infra-puppet-apply-ubuntu-xenial/3f45747/puppetapplytest63.final.out seems to show that working as expected18:42
clarkbpabelanger: fungi pleia2 maybe we can get quick review on 401363 and we can try to build the translate-dev replacement on xenial again18:42
openstackgerritMerged openstack-infra/system-config: Add nodepool builder nodes  https://review.openstack.org/40099918:43
openstackgerritAndrey Kurilin proposed openstack-infra/project-config: [rally] improvements of devstack-rally-gate jobs  https://review.openstack.org/40138918:48
andreykurilinAJaeger: hi! I finally made a patch as you suggested(with right {node} params) - https://review.openstack.org/40138918:49
*** dave-mccowan has joined #openstack-infra18:49
*** rhallisey_ has quit IRC18:49
jeblairpabelanger: i think we may want to add authn/z to our nodepool zk config soon -- since we're about to have a remote host connecting to it18:49
jeblairpabelanger: i think for the moment, i'll just manually open an iptables port so we can proceed with testing18:50
*** newmember has quit IRC18:50
inc0jeblair, pabelanger mordred sooo...how do we go with decision? do we make infra registry or hack around tarballs and publishers?18:51
inc0for what is worth, I'd rather run registry in infra, less hacky18:52
*** xarses has quit IRC18:53
AJaegeramrith: do you have time to discuss https://review.openstack.org/398689 ?18:54
*** wolverin_ has quit IRC18:55
*** yamahata has joined #openstack-infra18:55
*** wolverineav has joined #openstack-infra18:55
jeblairinc0: i'm not involved enough to advocate for a decision one way or the other18:55
clarkbjeblair: after a quick zk docs read on how to set up ssl I think thats probably for the best currently. None of the data is actually private so we don't need encryption until we auth18:56
openstackgerritAndrey Kurilin proposed openstack-infra/project-config: [rally] improvements of devstack-rally-gate jobs  https://review.openstack.org/40138918:56
*** xarses has joined #openstack-infra18:56
clarkb(looks like you have to change from NIO to netty and configure a bunch of java ssl store stuff that I bet we get wrong the first time or two if trying to jam it in today)18:56
jeblairclarkb: oh nice.  then yes.  :)18:56
inc0jeblair, fair enough:) thanks for help anyway18:57
jeblairinc0: np.  btw, did you see my comments on your change?18:57
inc0fungi, ^ couple lines above18:57
AJaegerandreykurilin: great!18:57
inc0yeah, if we decide to run registry in infra I'll need to find someone who will puppetize this anyway18:57
clarkbjeblair: https://cwiki.apache.org/confluence/display/ZOOKEEPER/ZooKeeper+SSL+User+Guide18:58
inc0as it's by no means ready to merge18:58
clarkbwhat is a .jks?18:58
inc0we need some mechanism for secrets and well, make it puppet-working18:58
jeblairclarkb: key store?18:58
pabelangerclarkb: +218:58
clarkbjeblair: ya I think its some special java key thing18:58
jeblairclarkb, pabelanger: 4G or 8G instance?18:59
*** dave-mcc_ has joined #openstack-infra18:59
pabelangerclarkb: jeblair: is there a different is upload speeds?18:59
clarkbjeblair: sicne we can't use tmpfs anyways, I don't think we need a ton of memory18:59
clarkboh but ya there is a difference in network bw18:59
pabelangerI think 4g is enough, but if 8gb is the faster network we should do that19:00
*** wolverineav has quit IRC19:00
clarkbmy local build VM is a 1cpu 2GB ram machine and it does ok. Most of the bottleneck is in disk iop19:00
jeblairhuh, i don't see network stuff in 'openstack flavor list'19:00
clarkbwhere you can see memory help dib is if your image is small enough to build in a tmpfs (ours are not)19:01
*** cathy_ has joined #openstack-infra19:01
openstackgerritAndrey Kurilin proposed openstack-infra/project-config: [rally] improvements of devstack-rally-gate jobs  https://review.openstack.org/40138919:01
jeblairbtw, i just noticed this in flavor-list:19:01
jeblair| container1-128M         | 128 MB Container                  |    128 |    2 |         0 |    12 | N/A       |19:01
*** ad_rien_ has joined #openstack-infra19:01
*** dave-mccowan has quit IRC19:02
pabelanger:)19:02
jeblairah, rxtx factor is in --long19:02
cathy_hi, could anyone help us get a channel "networking-sfc" registered for networking-sfc project discussion?19:02
jeblair800 vs 160019:03
AJaegercathy_: let me get you a link...19:03
openstackgerritMerged openstack-infra/project-config: Run {pipeline}-tempest-dsvm-networking-calico on Xenial  https://review.openstack.org/40097519:03
AJaegercathy_: http://docs.openstack.org/infra/system-config/irc.html19:03
openstackgerritMerged openstack-infra/project-config: Enable Nimble tempest plugin test  https://review.openstack.org/40053919:04
cathy_AJaeger: thanks. will take a look19:04
jeblairclarkb, pabelanger: okay, how do we decipher that value again?  given rxtx==1600, what's our max up/down throughput?19:05
AJaegerpabelanger: there's a grafana change that I'm not sure whether it's correct - could you put it on your low-prio review queue, please? https://review.openstack.org/40065419:05
jeblairhttps://www.rackspace.com/cloud/public-pricing/#cloud-servers is not helping on account of meteor showers or something19:07
clarkbjeblair: I think its half that for public internets19:07
clarkbjeblair: in megabits per second19:07
jeblairclarkb: we seem to be topping out at 400mbps on our 8g server which has rxtx=160019:07
jeblairclarkb: so we're only using half?19:08
*** ad_rien_ has quit IRC19:08
clarkbit might be half 1600 = 800 then half 800 for up and down?19:09
pabelangerhttps://developer.rackspace.com/docs/user-guides/infrastructure/cloud-config/compute/cloud-servers-product-concepts/create-server/#rxtx-factor says 40%19:10
pabelangeris 640Mb/s19:10
jeblairso if we went with 4g, we would be limited to 320, which is less than what we are pushing today19:11
pabelangerYa, we can try it19:11
pabelangerI have no objections19:11
jeblairwell, we are most concerned with upload speed, right?  are we sure we want to do that?19:11
*** nherciu has joined #openstack-infra19:12
jeblairi'm leaning toward 8g so we can keep upload parity19:12
clarkbya I think if we want to also host the images publicly then we will want more bw19:12
clarkb++ to 8G19:12
pabelangersure, I was saying we could try 4GB, get stats, if the upload speed is not enough, rebuild as 8GB.  I'm open to both.19:13
jeblairxenial or trusty?19:13
pabelangerxenial would be nice19:14
clarkbwe are trusty today, both should work (though puppeting xenial is my new nemesis due to systemd)19:14
*** jgriffith_away is now known as jgriffith19:14
*** sourav has joined #openstack-infra19:14
jeblairi accidentally launched it as trusty.  i may just leave it that way for now.  :)19:14
clarkbjeblair: I did that too yesterday19:15
clarkbthe launch node readme doesn't tell you to set an image for servers19:16
clarkband default is trusty19:16
openstackgerritStéphane Albert proposed openstack-infra/project-config: Add specs repository for CloudKitty  https://review.openstack.org/40130519:16
openstackgerritsebastian marcet proposed openstack-infra/puppet-openstackid: Puppet script upgrade to LV 5.X  https://review.openstack.org/39925319:16
jeblairyep; i guess we should change the default19:16
*** lin_yang has joined #openstack-infra19:17
*** asettle has quit IRC19:19
*** sourav has quit IRC19:21
*** esikachev has joined #openstack-infra19:21
jeblairwhat does $group in puppet do?19:22
clarkbjeblair: its what tells puppet what its hiera group is19:22
clarkbjeblair: on the ansible side we set the group for ansible grouping, and in puppet we set $group to map between them ensuring the correct hiera file are copied onto the host19:22
jeblairclarkb: i think the ansible group.txt ensures the file is copied.... do we also need to set it in puppet to use the file after it's copied?19:23
clarkbjeblair: yes, so that puppet knows where to look for the file19:23
jeblairgot it19:23
jeblair<sigh>19:23
clarkbjeblair: if you look in our hiera config file it uses the group var as part of the path lookup19:23
jeblairwe should be able to remove that19:24
openstackgerritIsaku Yamahata proposed openstack-infra/project-config: networking-odl: graph for unit test in gate queue  https://review.openstack.org/40139819:24
*** dtardivel has quit IRC19:24
*** jamesdenton has joined #openstack-infra19:25
*** mmandel has joined #openstack-infra19:26
*** smarcet has joined #openstack-infra19:27
*** ad_rien_ has joined #openstack-infra19:27
pabelangerexcitement for nb01.o.o mounts19:28
*** makowals has quit IRC19:29
openstackgerritJames E. Blair proposed openstack-infra/system-config: Add nodepool hiera group  https://review.openstack.org/40139919:29
openstackgerritMerged openstack-infra/storyboard: Fix install instructions for MySQL  https://review.openstack.org/39734119:30
*** mmandel has quit IRC19:30
jeblairclarkb, pabelanger: https://review.openstack.org/40139919:30
smarcetfungi:yolanda: afternoon , when u have a chance please review https://review.openstack.org/#/c/399253/4, upgrades openstackid puppet to use laravel 5.x and mantains backguard compatiblity with laravel 4.x ( production version) i would like to test it first only on dev, any chance to pause the puppet agent for openstackid production in order to test it ?19:30
*** abregman has joined #openstack-infra19:31
*** jamesdenton has quit IRC19:31
clarkbjeblair: +2 with a comment on where to pu the group hiera yaml file19:32
pabelanger+319:32
jeblairclarkb: yeah, i just copied the fqdn to that file; will remove the fqdn once this lands19:32
clarkbjeblair: ++ thats what I did for translate-dev19:32
pabelangerwill be dismounting train shortly, if pings to me go unanswered for a bit19:33
inc0pabelanger, fungi mordred so ad tarball.o.o we just had discussion in kolla19:33
inc0and if we could rsync instead of pack tarball19:34
inc0we'd save *a lot* of network traffic19:34
*** flwang1 has quit IRC19:34
inc0or...well registry;)19:34
*** pmalik has left #openstack-infra19:35
*** smarcet has quit IRC19:35
openstackgerritMerged openstack-infra/puppet-zanata: Hack to support service on xenial  https://review.openstack.org/40136319:36
*** abregman is now known as abregman|afk19:38
amrithAJaeger, PING19:38
AJaegerHi amrith !19:39
amrithJUST SAW YOUR EMAIL (SORRY, CAPS LOCK IS STUCK)19:39
amrithok, different PC, works better19:39
amrithwill you be around for a couple of minutes?19:39
AJaegeramrith: looking at https://review.openstack.org/#/c/398689/ : I would expect in that change the following:19:39
AJaegeramrith: http://docs.openstack.org/infra/manual/drivers.html#remove-project-from-infrastructure-systems and I would expect a governance change http://docs.openstack.org/infra/manual/drivers.html#remove-repository-from-the-governance-repository19:40
AJaegerwhich parts of the project-config change are not clear?19:40
*** hasharAway is now known as hashar19:40
AJaegerI see only a change for gerritbot/channels.yaml but that section lists several other files you need to touch19:41
AJaegerIMHO that's the step you need to do now to *finish* retiring the repo19:41
AJaegeramrith: still with me on your caps-lock less PC? ;)19:42
amrithyes19:42
amrithone second19:42
AJaegersure...19:42
openstackgerritMerged openstack-infra/system-config: Add nodepool hiera group  https://review.openstack.org/40139919:42
openstackgerritSujitha proposed openstack-infra/devstack-gate: Do not merge: Patch to test multi api setup  https://review.openstack.org/39465919:42
amrithAJaeger, I have done http://docs.openstack.org/infra/manual/drivers.html#end-project-gating and http://docs.openstack.org/infra/manual/drivers.html#remove-project-content19:43
amrithI think the commit you see is https://review.openstack.org/#/c/398689/4 which is http://docs.openstack.org/infra/manual/drivers.html#end-project-gating19:43
amrithOnce this merges, and https://review.openstack.org/#/c/399697/ has merged19:44
amrithI will push another change with the http://docs.openstack.org/infra/manual/drivers.html#remove-project-from-infrastructure-systems and beyond19:44
AJaegeramrith: that document explains two steps - the first step to enable 399697 to merge and thene the final retirement.19:44
AJaegerYou can merge those two steps in one.19:44
*** smarcet has joined #openstack-infra19:44
AJaegeramrith: 399697 has merged. So, enhance your change with the description from http://docs.openstack.org/infra/manual/drivers.html#remove-project-from-infrastructure-systems19:45
*** jamesdenton has joined #openstack-infra19:45
clarkbok puppetmaster should update puppet-zanata module shortly, will try booting a new translate-dev01 once that is in place19:45
clarkbthen I need to go start doing food prep19:46
AJaegeramrith: no need for two changes... If you really insist, go for it - but your description in the commit message of 398689 makes it really final. And that's why I'll stay with my -1. If you merge them, then the commit message is fine. I only see that single change with a very final commit message - and just seeing that, I'll stay with my -1. Does that explain it?19:47
*** panda|bbl is now known as panda19:49
amrithOK, I'll push one change with the steps of project config19:49
AJaegerthanks, amrith19:49
*** dave-mcc_ has quit IRC19:49
*** betherly_ has joined #openstack-infra19:50
*** lbeliveau has joined #openstack-infra19:51
openstackgerritVitaly Gridnev proposed openstack-infra/project-config: [sahara] finish transitioning scenario jobs to xenial  https://review.openstack.org/40081419:56
*** ad_rien_ has quit IRC19:56
*** nadya has joined #openstack-infra19:56
*** smarcet has quit IRC19:57
*** wolverineav has joined #openstack-infra20:00
*** cathy_ has quit IRC20:02
*** jpich has quit IRC20:03
*** smarcet has joined #openstack-infra20:05
*** rods has quit IRC20:05
*** wolverin_ has joined #openstack-infra20:05
openstackgerritMerged openstack-infra/storyboard-webclient: Update Angular from 1.3.13 to 1.5.8  https://review.openstack.org/38453220:07
*** wolverineav has quit IRC20:07
*** rods has joined #openstack-infra20:07
*** ihrachys has quit IRC20:07
mgagneIs there a way to get a resolution on this review? It adds the ability for jeepyb to manage All-Projects: https://review.openstack.org/#/c/248130/20:08
*** lseki has quit IRC20:08
openstackgerritamrith proposed openstack-infra/project-config: Get rid of the trove-image-builder project  https://review.openstack.org/39868920:08
clarkbhrm puppet still broken, I think I may have to call it a week20:08
amrithAJaeger, I think this is the one-step-everything in project-config.20:09
clarkbwildfly wins this one20:09
*** jamesdenton has quit IRC20:09
openstackgerritMerged openstack-infra/storyboard-webclient: Make subheading more succint  https://review.openstack.org/39919520:09
*** oanson has quit IRC20:09
amrithand to all in the US, a happy long holiday weekend.20:10
*** ijw has joined #openstack-infra20:11
*** drifterza has quit IRC20:11
*** jamesdenton has joined #openstack-infra20:13
*** tjones has left #openstack-infra20:13
*** ihrachys has joined #openstack-infra20:13
*** wolverineav has joined #openstack-infra20:13
*** ihrachys has quit IRC20:14
*** wolverineav has quit IRC20:14
*** ihrachys has joined #openstack-infra20:14
*** wolverineav has joined #openstack-infra20:15
*** wolverineav has quit IRC20:16
*** inc0 has quit IRC20:16
clarkbdoesn't look like the daemon-reload exec ran at all, wonder if the initial module install failed for some reason20:16
clarkbwill have to pick up on monday20:16
*** ldnunes has quit IRC20:16
*** wolverin_ has quit IRC20:17
*** abregman|afk has quit IRC20:21
*** allanice001 has joined #openstack-infra20:21
*** e0ne has joined #openstack-infra20:22
openstackgerritCarlos Camacho proposed openstack-infra/tripleo-ci: Add Panko to scenario001  https://review.openstack.org/40129920:22
*** wolverineav has joined #openstack-infra20:23
*** wolverineav has quit IRC20:27
*** wolverineav has joined #openstack-infra20:27
*** wolverin_ has joined #openstack-infra20:29
*** wolverineav has quit IRC20:29
*** wolverin_ has quit IRC20:30
*** wolverineav has joined #openstack-infra20:31
*** wolverineav has quit IRC20:33
pabelangerback home now20:33
*** nicolasbock has quit IRC20:33
*** e0ne has quit IRC20:34
*** wolverineav has joined #openstack-infra20:35
pabelangerJeffrey4l: inc0: we do use rsync today for publisher, even thought it is listed as scp for JJB.  So, you'll get some network savings.20:35
*** vaidy has quit IRC20:36
*** Sukhdev has joined #openstack-infra20:36
*** isviridov_away has quit IRC20:36
openstackgerritThomas Herve proposed openstack-infra/project-config: Add a amqp1 job for Heat  https://review.openstack.org/40079920:37
*** wolverin_ has joined #openstack-infra20:37
*** flwang1 has joined #openstack-infra20:39
*** wolveri__ has joined #openstack-infra20:40
*** wolverineav has quit IRC20:40
*** betherly_ is now known as betherly20:41
*** wolverin_ has quit IRC20:42
*** armax has quit IRC20:43
*** wolveri__ has quit IRC20:44
*** armax has joined #openstack-infra20:45
*** armax has quit IRC20:45
*** csomerville has quit IRC20:45
*** dprince has quit IRC20:46
*** newmember has joined #openstack-infra20:47
*** gouthamr has quit IRC20:50
*** nadya has quit IRC20:50
*** baoli has quit IRC20:51
openstackgerritJames E. Blair proposed openstack-infra/puppet-nodepool: Conditionally set mysql max connections  https://review.openstack.org/40141720:51
*** baoli has joined #openstack-infra20:51
openstackgerritJames E. Blair proposed openstack-infra/system-config: Fix nodepool builder branch name  https://review.openstack.org/40141920:52
jeblairpabelanger: ^ can you look at those two?20:52
*** flaper87 has quit IRC20:52
pabelangersure20:53
*** cody-somerville has joined #openstack-infra20:53
*** cody-somerville has quit IRC20:53
*** cody-somerville has joined #openstack-infra20:53
jeblairpabelanger: we pull all the data from the node to the launcher regardless (even though we use rsync, the target is always empty for that stage of the process)20:53
*** sdake has joined #openstack-infra20:54
pabelangerjeblair: +220:54
pabelangerjeblair: that is true20:54
jeblairThis message is to inform you that our monitoring systems have detected a problem with the server which hosts your Cloud Block Storage device 'static.openstack.org/main05' at 20:41 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 'static.openstack.org/main05' during this process.20:55
jeblairinfra-root: ^20:55
jeblair(from 14 minutes ago)20:56
*** baoli has quit IRC20:56
jeblair#status log received at 20:41:09 UTC: This message is to inform you that our monitoring systems have detected a problem with the server which hosts your Cloud Block Storage device 'static.openstack.org/main05' at 20:41 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 'static.openstack.org/main05' during this process.20:57
openstackstatusjeblair: finished logging20:57
jeblairindeed, static is throwing errors about /dev/xvdg20:59
*** esikachev has quit IRC21:00
jeblairand it's been remounted read-only21:00
jeblairand zuul is reporting post_failures21:00
*** wolverineav has joined #openstack-infra21:01
*** Guest2 has joined #openstack-infra21:02
*** Guest2 has quit IRC21:02
jeblairstatus alert Due to a problem with the cinder volume backing the log server, jobs are failing with POST_FAILURE.  Please avoid issuing 'recheck' commands until the issue is resolved.21:02
jeblairhow does that look?21:03
*** wolverineav has quit IRC21:04
*** wolverineav has joined #openstack-infra21:05
*** Guest2 has joined #openstack-infra21:05
jeblair#status alert Due to a problem with the cinder volume backing the log server, jobs are failing with POST_FAILURE.  Please avoid issuing 'recheck' commands until the issue is resolved.21:05
openstackstatusjeblair: sending alert21:05
*** wolverineav has quit IRC21:06
*** ihrachys has quit IRC21:06
-openstackstatus- NOTICE: Due to a problem with the cinder volume backing the log server, jobs are failing with POST_FAILURE. Please avoid issuing 'recheck' commands until the issue is resolved.21:07
*** ChanServ changes topic to "Due to a problem with the cinder volume backing the log server, jobs are failing with POST_FAILURE. Please avoid issuing 'recheck' commands until the issue is resolved."21:07
*** wolverineav has joined #openstack-infra21:08
*** wolverin_ has joined #openstack-infra21:09
*** wolveri__ has joined #openstack-infra21:10
openstackstatusjeblair: finished sending alert21:11
*** ad_rien_ has joined #openstack-infra21:11
*** wolverineav has quit IRC21:13
*** inc0 has joined #openstack-infra21:13
*** wolverin_ has quit IRC21:14
inc0fungi, around?21:14
*** wolveri__ has quit IRC21:15
*** wolverineav has joined #openstack-infra21:15
*** rbuzatu has joined #openstack-infra21:16
*** Apoorva has quit IRC21:16
*** jamesdenton has quit IRC21:18
*** wolverineav has quit IRC21:20
*** rbuzatu has quit IRC21:20
mnaserwould anyone know where i can find sample uses of this?  https://github.com/openstack-infra/ansible-role-puppet21:20
mnasermore around how to make it find the hiera data in the right places21:21
rcarrillocruzmnaser: you should check the system-config repo21:21
rcarrillocruzthere you'll find the hiera used21:21
jeblairmnaser: http://git.openstack.org/cgit/openstack-infra/system-config/tree/playbooks21:21
*** wolverineav has joined #openstack-infra21:22
*** jkilpatr_ has quit IRC21:22
*** jamielennox|away is now known as jamielennox21:22
mnaserokay great, thank you!  we'll try to adopt this in a way of using ansible while maintaining all of our puppet stuff (and getting rid of our master as well)21:22
jeblairmnaser: re hiera specifically -- http://git.openstack.org/cgit/openstack-infra/system-config/tree/playbooks/group_vars/all.yaml21:22
mnaserhm, that looks like it copies all hieradata.. does that mean every VM has all of the hieradata of everything in the infra?21:23
mnaseri was hoping of a way so that only the role specific ones get shipped21:23
*** fguillot has quit IRC21:24
jeblairmnaser: no, our setup copies common hiera, hiera matching the fqdn, and uses ansible groups to copy group hiera21:24
mnaseroh yeah, i was just looking at it and that sounds ideal21:24
*** csomerville has joined #openstack-infra21:24
jeblairyeah, what you described is exactly what we wanted -- masterless puppet, but still scoped secrets21:24
*** wolverineav has quit IRC21:25
*** wolverineav has joined #openstack-infra21:25
*** csomerville has quit IRC21:25
*** csomerville has joined #openstack-infra21:25
jeblairmnaser: here's the default path it looks in: https://github.com/openstack-infra/ansible-role-puppet/blob/master/defaults/main.yml21:26
jeblairmnaser: so you'll want to set those vars21:26
*** wolverin_ has joined #openstack-infra21:26
jeblairmnaser: and here's the code that gets the actual files: https://github.com/openstack-infra/ansible-role-puppet/blob/master/library/puppet_get_hiera_file_list#L4221:27
*** armax has joined #openstack-infra21:27
*** cody-somerville has quit IRC21:28
jeblairmnaser: so it will fetch $puppet_hiera_datadir/common.yaml, $puppet_hiera_datadir/fqdn/$fqdn.yaml, $puppet_hiera_datadir/group/$group.yaml21:28
jheskethMorning21:28
mnaserjeblair: probably like to follow along what you do for as much as we can.  if i can bother you for a few more questions .. how are you handling external modules (ex: Puppetfile-like stuff?) .. and I assume you have another repo to store all the hiera secrets21:28
jeblairjhesketh: morning.  cinder failure on static.  see topic.21:28
jheskethyeah, just saw that21:28
jheskethjeblair: are you poking at it?21:29
jeblairjhesketh: still waiting for resolution from rax21:29
jheskethhmm okay21:30
mnaser(and as silly as that sounds, system-config is the repo for your .. system-config, for sakes of name convention, what's the name of choice for your hiera one?)21:30
*** wolverineav has quit IRC21:30
jeblairmnaser: the secrets are local-only on our "puppetmaster" (the host we run this ansible from)21:30
*** cody-somerville has joined #openstack-infra21:30
*** cody-somerville has joined #openstack-infra21:30
*** allanice001 has quit IRC21:30
jeblairmnaser: and we have a script to install all the puppet modules (which the role will copy over)21:30
mnaseri see, so some sort of bastion host where you kick ansible off-of21:30
jeblairyep21:30
*** rossella_s has quit IRC21:31
mnasermakes sense!  i guess we can just write a small script to install r10k and reuse our existing puppetfile in that case21:31
*** wolverin_ has quit IRC21:31
*** rossella_s has joined #openstack-infra21:32
jeblairmnaser: this is the entrypoint for the whole thing: http://git.openstack.org/cgit/openstack-infra/system-config/tree/run_all.sh21:32
*** csomerville has quit IRC21:32
mnaserand is that manually kicked off at the moment or is it cobbled up to CI so once things merge it just calls it (in an ideal world we could reach that..)21:33
jeblairmnaser: which runs this playbook http://git.openstack.org/cgit/openstack-infra/system-config/tree/playbooks/update_puppet.yaml which runs this script to install modules: http://git.openstack.org/cgit/openstack-infra/system-config/tree/install_modules.sh21:34
*** ijw has quit IRC21:34
jeblairmnaser: it's a cronjob (puppet for our 'puppetmaster' configures the cronjob :)21:34
mnasergotcha21:34
jeblairmnaser: in zuulv3, we will probably have zuul run it21:34
openstackgerritRicardo Carrillo Cruz proposed openstack-infra/devstack-gate: Add role for fix_etc_hosts  https://review.openstack.org/38305221:34
*** Jeffrey4l has quit IRC21:35
jeblairjhesketh: at least, i haven't gotten a followup email from rax, and static.o.o is still spewing read io errors21:35
jeblairso i assume it's still broken21:35
*** Jeffrey4l has joined #openstack-infra21:35
*** xarses has quit IRC21:36
*** xarses has joined #openstack-infra21:37
*** ijw has joined #openstack-infra21:37
*** jkilpatr_ has joined #openstack-infra21:38
*** rbuzatu has joined #openstack-infra21:40
*** esikachev has joined #openstack-infra21:40
*** pradk has quit IRC21:43
jheskethjeblair: that's a fair assumption21:43
openstackgerritRicardo Carrillo Cruz proposed openstack-infra/devstack-gate: Add gather_host_info playbook and role  https://review.openstack.org/40145421:47
*** thorst_ has joined #openstack-infra21:47
*** acoles has joined #openstack-infra21:49
acolesclarkb: thanks for your replies on https://review.openstack.org/#/c/354291/21:50
*** yolanda has quit IRC21:50
*** kgiusti has left #openstack-infra21:51
*** wolverineav has joined #openstack-infra21:54
*** jcoufal has quit IRC21:55
*** aeng_afk has quit IRC21:58
*** aeng has joined #openstack-infra21:58
*** esikachev has quit IRC21:58
*** aeng has quit IRC21:58
*** wolverineav has quit IRC21:59
*** xarses has quit IRC21:59
*** xarses has joined #openstack-infra22:00
*** wolverineav has joined #openstack-infra22:01
*** boden has quit IRC22:02
*** Guest2 has quit IRC22:03
*** tpsilva has quit IRC22:05
*** wolverineav has quit IRC22:05
*** wolverineav has joined #openstack-infra22:06
ianwsorry, running late today ... let me know if i can help22:08
*** e0ne has joined #openstack-infra22:09
jeblairstill no okay email, and still seeing read errors.  the rax status page has been green the whole time.22:09
*** hashar has quit IRC22:10
*** acoles is now known as acoles_22:11
*** ccamacho has quit IRC22:11
*** wolverineav has quit IRC22:11
ianw"Please do not access or modify 'static.openstack.org/main05' during this process." i'm guessing we have about zero chance of unmounting it22:12
jeblairianw: we probably could, but the kernel helpfully remounted it ro for us a while ago22:13
jeblairso we're certainly not modifying it22:13
openstackgerritRicardo Carrillo Cruz proposed openstack-infra/devstack-gate: WIP Add setup_host playbook  https://review.openstack.org/39151922:13
*** rbuzatu_ has joined #openstack-infra22:14
ianwoh, read errors, cool22:14
openstackgerritRicardo Carrillo Cruz proposed openstack-infra/devstack-gate: WIP Add setup_host playbook  https://review.openstack.org/39151922:15
*** rbuzatu has quit IRC22:17
*** adriant has joined #openstack-infra22:17
*** xarses has quit IRC22:18
*** slagle has quit IRC22:18
jeblairoh hey syslog got quieter22:19
*** chlong has joined #openstack-infra22:19
*** thorst_ has quit IRC22:20
jeblairjhesketh, ianw: lack of read errors suggests maybe rax fixed the cinder host?22:21
*** saibarspeis has joined #openstack-infra22:21
*** sreeram_v has joined #openstack-infra22:21
*** saibarspeis has quit IRC22:21
openstackgerritamrith proposed openstack-infra/infra-manual: update the drivers.rst for project retirement steps  https://review.openstack.org/40145922:21
*** aeng has joined #openstack-infra22:22
openstackgerritamrith proposed openstack-infra/project-config: Get rid of the trove-image-builder project  https://review.openstack.org/39868922:22
openstackgerritamrith proposed openstack-infra/infra-manual: update the drivers.rst for project retirement steps  https://review.openstack.org/40145922:23
*** sreeram_v has quit IRC22:26
jeblairjhesketh, ianw: no okay email yet... should we wait a bit more for that, or assume we can proceed with fsck, etc?22:27
ianwjeblair: yeah, my simultaneous "for i in /srv/static/logs/*; do find $i & ; done" didn't raise any errors after a minute or so, that seems like it would be pretty stressful22:27
ianwwas all xvdg22:28
*** chlong has quit IRC22:30
jheskethjeblair: if all the volumes are there etc, and with ianw's checking, I'd assume fsck is okay, but I'm not 100% sure22:31
jeblairjhesketh, ianw: it looks like docs-draft and tarballs are the only filesystems that went read-only22:31
jeblairshall i unmount them, fsck, and remound?22:32
ianwjeblair: that might make sense, the errors were on xvdg? say for a random sector22:32
ianw201396888 * 512 / (4096 * 1024)22:32
ianw= 2458422:32
ianw Physical extent 0 to 51199:22:32
ianw    Logical volume/dev/main/tarballs22:32
ianw    Logical extents0 to 5119922:32
ianwwhich puts it in tarballs22:33
ianwanyway, yeah, i say try the fsck22:33
jeblair++22:33
jeblairi'll start with docs-draft22:33
*** matrohon has quit IRC22:33
*** gildub has joined #openstack-infra22:33
jeblairamrith: i left some comments on your changes22:34
*** Julien-zte has joined #openstack-infra22:34
amrithjeblair, thx22:34
amrithlet me look22:34
amrithjeblair, with that section in place, the ci job was failing; I had to remove it to make it pass.22:35
amrithhence the doc update as well.22:35
amrithso maybe both are wrong?22:35
*** panda is now known as panda|zZ22:35
openstackgerritPaul Belanger proposed openstack-infra/project-config: Create experimental kolla-publish-image-jobs  https://review.openstack.org/40146222:36
pabelangerinc0: ^ is the experimental job22:36
inc0many thanks!22:36
pabelangerinc0: I've set it up to only use the build target22:36
openstackgerritArmando Migliaccio proposed openstack-infra/project-config: Use xenial as default node for gate-tempest-dsvm-neutron-src-neutron-lib  https://review.openstack.org/39740122:37
pabelangerwhich, I think it correct22:37
jeblairamrith: huh.  i think that check is wrong.  we should consult with AJaeger on this.22:37
jeblairhttp://logs.openstack.org/89/398689/5/check/gate-project-config-layout/2ee33d7/console.html#_2016-11-23_20_15_26_819965  <-- that one22:37
*** wolverineav has joined #openstack-infra22:38
amrithjeblair, please see http://logs.openstack.org/89/398689/5/check/gate-project-config-layout/2ee33d7/22:38
amrithah, yes ... that one22:38
amrithI was going based on that failure.22:38
*** e0ne has quit IRC22:39
amrithso, would you please also put a -0.5 on https://review.openstack.org/401459. I think half of that change is still valid :)22:39
jeblairamrith: it may have been written with adding a project in mind, but without consideration of retiring one (which happens much less often)22:39
inc0pabelanger, if I read it correctly, all build jobs will publish images to tarballs?22:39
amriththanks jeblair will ping AJaeger about it tomorrow; he doesn't get thanksgiving (nor do i)22:40
*** nherciu has quit IRC22:40
*** cody-somerville has quit IRC22:40
jeblairamrith: k.  i'll write my comments in the change too for better context22:40
amrithok, thanks!22:41
ianwpabelanger: i know you've spent a bit of time with tracing subprocesses for ansible, wouldn't mind if you took a look at https://review.openstack.org/#/c/401048/22:42
ianwi realised though, we're still building centos6 images.  which means it has to be python2.6 compatible :/22:42
*** wolverineav has quit IRC22:42
fungiinc0: not really around, sorry. entertaining family and cooking a lot22:42
ianwbut, we also build xenial images that only have python322:43
inc0fungi, np, we moved on thanks to pabelanger :)22:43
fungipabelanger: is awesome22:43
inc0sorry to bother you before holiday22:43
fungino apologies needed. i'm just sorry i can't be around more at the moment22:43
inc0we all need some rnr I think22:44
*** gildub_ has joined #openstack-infra22:44
inc0speaking of which, I think I'll start my holiday too;) talk to you all next week, and have a delicious turkey22:45
jeblair#status log This message is to inform you that your Cloud Block Storage device static.openstack.org/main05 has been returned to service.22:45
openstackstatusjeblair: finished logging22:45
jeblairhttp://paste.openstack.org/show/590266/22:45
*** smarcet has quit IRC22:46
*** isviridov_away has joined #openstack-infra22:46
jeblairremounted docs-draft22:46
jeblairfsck tarballs now22:46
*** vaidy has joined #openstack-infra22:46
pabelangerinc0: yup, all build jobs. Is that right?22:46
jeblairhttp://paste.openstack.org/show/590267/22:46
jeblairianw, jhesketh: i think i can send status ok now. agree?22:47
inc0pabelanger, yeah, just thinking how to find out which one has to build tarballs22:47
*** gildub has quit IRC22:47
inc0but I guess I'll just do it everywhere for now22:47
ianwjeblair: yep.  give thanks to the anonymous rackspace operator who had to get up, wander into the server room and pull a drive out :)22:47
pabelangerinc0: maybe we should start with one, to make sure others don't overwrite the contents of another job22:48
inc0pabelanger, we can keep it like that22:48
jeblairianw: we should send them pie22:49
inc0we won't use it anyway before it works22:49
inc0and when it works, we need it for all;)22:49
pabelangerianw: looking22:49
jeblair#status ok The affected filesystems on the log server are repaired.  Please leave 'recheck' comments on any changes which failed with POST_FAILURE.22:49
openstackstatusjeblair: sending ok22:49
inc0anyway, talk to you guys later, happy thanksgiving22:50
ianwpabelanger: so centos-minimal failures to build seem to be that systemd isn't brought in any more.  i think that something changed in dependencies that package-installs was bringing it in before, but not any more22:50
*** wolverineav has joined #openstack-infra22:50
jheskethjeblair: yep, sounds good to me (sorry catching up)22:50
openstackgerritArmando Migliaccio proposed openstack-infra/project-config: Switch gate-neutronclient-test-dsvm-functional-adv-svcs to xenial  https://review.openstack.org/40147222:51
pabelangerianw: okay22:51
*** inc0 has quit IRC22:51
ianwof course, it took about a day of yak shaving to realise that :)22:51
*** ChanServ changes topic to "Discussion of OpenStack Developer and Community Infrastructure | docs http://docs.openstack.org/infra/ | bugs https://storyboard.openstack.org/ | source https://git.openstack.org/cgit/openstack-infra/ | channel logs http://eavesdrop.openstack.org/irclogs/%23openstack-infra/"22:52
-openstackstatus- NOTICE: The affected filesystems on the log server are repaired. Please leave 'recheck' comments on any changes which failed with POST_FAILURE.22:52
*** ad_rien_ has quit IRC22:53
pabelangerianw: did something in DIB change or a RPM dependency? If DIB, surprised testing didn't catch it22:54
ianwpabelanger: i think an rpm dependency, and i think that we don't really test dib-init-system.  and since we don't boot the images we build ...22:55
*** wolverineav has quit IRC22:55
ianwat least in the "functional" tests22:55
fungi#status log Configuration management updates are temporarily disabled for openstackid.org in preparation for validating change 399253.22:55
openstackstatusjeblair: finished sending ok22:56
openstackstatusfungi: finished logging22:56
openstackgerritMerged openstack-infra/puppet-nodepool: Conditionally set mysql max connections  https://review.openstack.org/40141722:56
pabelangerianw: Ya, I'd like to maybe enhance https://review.openstack.org/#/c/399865/ for diskimage-builder jobs.  Not only build and launch them with nodepool, but SSH into them and do some basic audit of the image22:56
pabelangerto help catch breakages before nodepool-builder does22:56
openstackgerritArmando Migliaccio proposed openstack-infra/project-config: Switch gate-neutronclient-test-dsvm-functional-adv-svcs to xenial  https://review.openstack.org/40147222:57
openstackgerritArmando Migliaccio proposed openstack-infra/project-config: Switch gate-neutronclient-test-dsvm-functional to xenial  https://review.openstack.org/40147322:57
openstackgerritRicardo Carrillo Cruz proposed openstack-infra/devstack-gate: WIP Add setup_host playbook  https://review.openstack.org/39151922:57
ianwpabelanger: yeah, cool.  we do run the nodepool dsvm for dib changes, but not building a centos image there.  might be good to add that for variety22:57
pabelangerianw: yes, agree. we need to do some rework to expand the images for DIB jobs, but not nodepool patches. Might hack on that next week22:58
*** dimtruck is now known as zz_dimtruck22:59
*** xyang1 has quit IRC22:59
openstackgerritIan Wienand proposed openstack/diskimage-builder: yum-minimal: add systemd to initial install  https://review.openstack.org/40150423:00
*** wolverineav has joined #openstack-infra23:00
*** rbuzatu_ has quit IRC23:00
*** rbuzatu has joined #openstack-infra23:02
*** annegentle has joined #openstack-infra23:03
openstackgerritIan Wienand proposed openstack/diskimage-builder: Catch errors in DIB_INIT_SYSTEM export  https://review.openstack.org/40054223:04
*** wolverineav has quit IRC23:05
*** rlandy is now known as rlandy|bbl23:06
openstackgerritMerged openstack-infra/system-config: Fix nodepool builder branch name  https://review.openstack.org/40141923:08
*** wolverineav has joined #openstack-infra23:08
*** mtanino has quit IRC23:12
*** wolverineav has quit IRC23:12
*** wolverineav has joined #openstack-infra23:18
markmcclaingetting a strange error on a job POST_FAILURE23:19
markmcclainthe log file of the job says the task was a success23:19
*** sreeram_v has joined #openstack-infra23:19
markmcclainwhere's the best place to start digging into this?23:20
markmcclainpabelanger: ^^^23:21
*** wolverineav has quit IRC23:22
markmcclainok... poking around the job's ansible logs looks like rsync is failing23:24
openstackgerritRicardo Carrillo Cruz proposed openstack-infra/devstack-gate: Add gather_host_info playbook and role  https://review.openstack.org/40145423:24
*** sreeram_v has quit IRC23:24
markmcclainnevermind... didn't have previous status message in my scrollback23:24
jeblairmarkmcclain: if it happened between 20:40 ... yeah :)23:25
*** wolverineav has joined #openstack-infra23:28
openstackgerritRyan Beisner proposed openstack-infra/project-config: Update charm job definitions  https://review.openstack.org/39929923:29
openstackgerritArmando Migliaccio proposed openstack-infra/project-config: Switch neutronclient functional jobs to xenial  https://review.openstack.org/40179123:29
*** dkehn__ has quit IRC23:29
openstackgerritRyan Beisner proposed openstack-infra/project-config: Update charm job definitions  https://review.openstack.org/39929923:30
*** wolverineav has quit IRC23:32
fungimarkmcclain: there's also https://wiki.openstack.org/wiki/Infrastructure_Status where we archive them all (reverse chronological order, so most recent at the top)23:34
markmcclainfungi: learned something new... I'll bookmark it23:37
*** sdake has quit IRC23:37
*** wolverineav has joined #openstack-infra23:38
openstackgerritRicardo Carrillo Cruz proposed openstack-infra/devstack-gate: Add setup_host playbook  https://review.openstack.org/39151923:38
*** Julien-zte has quit IRC23:38
*** gildub_ has quit IRC23:39
rcarrillocruzjeblair: heya, following the d-g ansible refactor chat we had, does ^ look better now?23:39
rcarrillocruzmordred: ^23:39
rcarrillocruzthe idea is to pull out stuff from setup_host function into playbooks/roles, then invoke them from setup_host.yaml playbook23:40
*** sdake has joined #openstack-infra23:40
*** sdake has quit IRC23:40
*** sdake has joined #openstack-infra23:40
*** mriedem has quit IRC23:41
*** wolverineav has quit IRC23:42
markmcclainfungi, jeblair: so just got a POST_FAILURE (23:31:53)23:42
*** dingyichen has joined #openstack-infra23:43
*** shashank_hegde has joined #openstack-infra23:45
*** tlian2 has joined #openstack-infra23:46
ianwhmm, yeah, me too for a job23:47
ianwchecking static again...23:47
*** wolverineav has joined #openstack-infra23:48
*** tlian has quit IRC23:48
ianwyeah, looks like same disk is unhappy again23:49
*** jamesdenton has joined #openstack-infra23:50
ianwyeah, and everything is r/o23:50
ianw#status alert Due to a problem with the cinder volume backing the log server, jobs are failing with POST_FAILURE.  Please avoid issuing 'recheck' commands until the issue is resolved.23:50
*** tlian2 has quit IRC23:51
ianwahh, i probably can't do that, not sure i ever added perms23:51
*** jamesdenton has quit IRC23:52
*** wolverineav has quit IRC23:53
*** wolverineav has joined #openstack-infra23:53
openstackgerritRyan Beisner proposed openstack-infra/project-config: Update charm job definitions  https://review.openstack.org/39929923:54
*** wolverineav has quit IRC23:54
*** wolverineav has joined #openstack-infra23:55
*** wolverineav has quit IRC23:56
ianwok, at 9:47am there was another outage alert, and 10:40 AM AEDT a restore alert (i.e. 10 minutes ago)23:56
*** newmember has quit IRC23:57
markmcclainianw: thanks for checking23:59
*** tlian has joined #openstack-infra23:59

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