Thursday, 2018-03-15

clarkbpabelanger: it might help to find the error on the executor side too00:00
clarkbjust to confirm which exact code path did it00:00
pabelangerclarkb: no much help sadly, 1 sec00:00
openstackgerritMerged openstack-infra/irc-meetings master: Change of day and channel for bi-weekly meetings for Public Cloud WG.  https://review.openstack.org/55302200:01
ianwpersia: do you want me to provide a patch?  i forget exactly but there's a couple of tweaks to the debian/* files00:01
pabelangerclarkb: http://paste.openstack.org/show/701006/00:01
pabelangerclarkb: I'm going to see if I can write a quick unit test to expose the failure00:01
clarkbpabelanger: _is_safe_path is my guess00:02
clarkbwhich you should be able to execute on its own just passing in a little data00:03
clarkbone thing that it could be is a symlink in the repo00:03
*** dingyichen has joined #openstack-infra00:03
pabelangerk00:04
pabelangernot sure if we use a symlink for src_root00:04
*** dingyichen has quit IRC00:04
clarkbshouldn't be for src_root, but if there is a symlink in the repo itself trying to get out that should be caught by this00:04
pabelangeroh, maybe00:05
clarkbpabelanger: what repo is it trying to sync?00:05
clarkbor I guess it could be more than one repo00:05
pabelangerclarkb: nodepool, zuul, diskimage-builder, gear: http://logs.openstack.org/00/553100/1/check/windmill-ubuntu-xenial/4d1b0a0/zuul-info/inventory.yaml00:05
pabelangershade00:05
*** olaph1 has joined #openstack-infra00:06
*** dizquierdo has joined #openstack-infra00:06
clarkbso if any of them have a symlink out of the repo this would trap on that00:06
*** yamamoto has joined #openstack-infra00:07
clarkboh wait00:07
clarkbzuul itself has this problem right?00:07
clarkbbwahahaha00:07
*** olaph has quit IRC00:07
clarkbthis will be pretty epic if the cause00:07
pabelangerdon't understand question00:08
*** dingyichen has joined #openstack-infra00:08
clarkbpabelanger: as part of fixing this bug tests were added with real symlinks to things like /opt/assemble00:08
clarkbthose symlinks are now breaking your tests because they would copy inappropriate things from the test node00:08
clarkbcorvus: tobiash ^00:09
pabelangerOh, haha, nice00:09
pabelangerI can test it quickly00:09
clarkbif this is the case then I think the code fix is working properly00:09
clarkbwe've just wedged ourselves in a fun way by having tests that are too good :P00:09
corvusclarkb: iiuc, there is not a systemic problem with zuul, just a problem with windmill doing things with zuul's wacky test symlinks?00:10
corvusie, this is not affecting anything that isn't actually operating on the zuul source code repo itself, right?00:10
clarkbcorvus: ya, though its possible we would have problems with syncing zuul repo for zuul jobs now?00:10
corvusclarkb: we git push, so i don't think it'd be a prob00:11
pabelangerwell, we no longer use syncronize of repos from executor to nodes, we git clone --mirror them00:11
clarkboh yes correct00:11
*** katkapilatova has quit IRC00:11
pabelangerbut, that can't be run in an untrusted context00:11
clarkbso ya this would be windmills weirdness and I think zuul is doing the correct thing here00:11
clarkbpabelanger: couldn't you make zuul a required project for windmill jobs?00:11
corvusthis doesn't seem critical, so i'm going to eod now; happy to help tomorrow00:11
clarkbya I think the scope of this is small00:12
clarkband the good news is the bug fix seems to be working :P00:12
pabelangerclarkb: I do, but the use case is I'm only copying git repos to a single node (in multi node job). Today our base jobs mirror to all nodes00:13
clarkbpabelanger: that is an optimization though right?00:13
pabelangerthere is a way we can fix it with negative host filters, but haven't worked on that yet00:13
clarkblike it won't really hurt anything to have zuul on more than one node00:13
pabelangerclarkb: well, in the case of my inventory file, I can't actually use a base job because of race conditions00:14
pabelangerUsually serial does work, but we need to patch zuul to support extra-vars00:14
pabelangerclarkb: the issue is, this nodeset: http://git.openstack.org/cgit/openstack/windmill/tree/.zuul.d/jobs.yaml#n6200:15
pabelangerto ansible is it multiple hosts, but really a single node from nodepool00:15
pabelangerand our base playbooks / roles setup to work that way. And will fail due to race conditions between the hosts00:16
*** rlandy has quit IRC00:16
pabelangerso, I've been able to create a base playbook, atop of base-minimal which was working until today: http://git.openstack.org/cgit/openstack/windmill/tree/tests/base-minimal.yaml00:17
pabelangerI think if our playbook / role were more idempotent it might also help00:17
pabelangerbut, would need to be tested more00:18
pabelangerclarkb: I think your logic is correct, dropping zuul from synchronize gets job passed the failure00:19
*** eernst has quit IRC00:20
pabelangerhttp://git.openstack.org/cgit/openstack-infra/zuul-jobs/tree/roles/prepare-workspace/tasks/main.yaml would also be broken for zuul users in untrusted context (required-project of zuul)00:20
*** eernst has joined #openstack-infra00:21
*** xinliang has quit IRC00:22
clarkbpabelanger: ya we could have the update role check if the repos already exist and what their git HEAD is00:22
clarkb(to avoid resyncing if not necessary)00:22
*** dizquierdo has quit IRC00:25
pabelangerclarkb: as for zuul and /opt symlinks, could those be create a job runtime and avoid the need from sourcing them intree?00:26
clarkbpabelanger: probably, thats something to talk to tobias about00:26
pabelangerwfm00:27
pabelangerfor now, I can work around the failure00:27
*** diablo_rojo has quit IRC00:28
*** odyssey4me has quit IRC00:29
*** odyssey4me has joined #openstack-infra00:29
*** eernst has quit IRC00:29
*** diablo_rojo has joined #openstack-infra00:31
*** xinliang has joined #openstack-infra00:34
pabelangerclarkb: http://git.openstack.org/cgit/openstack-infra/zuul/tree/tests/fixtures/config/remote-action-modules/git/org_project/playbooks/roles/copy-test/files/symlink will be the issue00:34
pabelangerso yay, out safe_path logic is working :)00:34
clarkbpabelanger: ya there is more than one of them too00:34
pabelangeryah00:35
pabelangerso, should be able to create them at runtime, but will have tobiash first confirm00:35
clarkbalso we may need that idempotency for status nodes anyways00:39
clarkbso probably a good thing to fix00:39
clarkb*static00:39
*** HeOS has quit IRC00:40
*** s-shiono has joined #openstack-infra00:41
*** stakeda has joined #openstack-infra00:44
*** wolverin_ has quit IRC00:46
*** wolverineav has joined #openstack-infra00:46
ianwanyone know off hand what copies in /etc/puppet/hieradata/production ?  i'm having trouble launching mirror-update01.o.o00:46
*** diablo_rojo has quit IRC00:47
pabelangeransible-role-puppet I think00:47
ianwoh, i know what it is00:48
*** r-daneel has quit IRC00:48
openstackgerritIan Wienand proposed openstack-infra/system-config master: Match numbered mirror-update servers  https://review.openstack.org/55311100:49
ianwpabelanger: ^ that, if you don't mind a review :)00:49
*** wolverineav has quit IRC00:51
pabelanger+200:51
ianwdoes it need a ~ before it?  what does that mena00:52
*** diablo_rojo has joined #openstack-infra00:53
pabelangeroh, maybe? I'm not sure what it does. I've added it because of copypasta00:53
openstackgerritIan Wienand proposed openstack-infra/system-config master: Match numbered mirror-update servers  https://review.openstack.org/55311100:53
ianwheh, well now that has it too :000:53
*** dprince has quit IRC00:58
*** dave-mccowan has joined #openstack-infra01:05
persiaianw: Sorry: was called away.  No worries, I'm fine playing with debdiff to see what you've done.01:07
*** bobh has joined #openstack-infra01:10
*** bobh has quit IRC01:11
openstackgerritmegan guiney proposed openstack-infra/subunit2sql master: Add ability to grab stream processing variables from kwargs  https://review.openstack.org/54383601:14
*** mriedem has quit IRC01:24
*** nicolasbock has quit IRC01:29
*** cshastri has joined #openstack-infra01:30
*** andreas_s has joined #openstack-infra01:33
*** r-daneel has joined #openstack-infra01:37
*** andreas_s has quit IRC01:37
openstackgerritTristan Cacqueray proposed openstack-infra/zuul master: web: add /{tenant}/jobs/{job_name} route  https://review.openstack.org/55097801:39
openstackgerritTristan Cacqueray proposed openstack-infra/zuul master: web: add /{tenant}/projects routes  https://review.openstack.org/55097901:39
*** cshastri has quit IRC01:39
openstackgerritTristan Cacqueray proposed openstack-infra/zuul master: web: add /{tenant}/pipelines route  https://review.openstack.org/54152101:39
openstackgerritTristan Cacqueray proposed openstack-infra/zuul master: Rename javascript package to zuul-dashboard  https://review.openstack.org/55199901:40
openstackgerritTristan Cacqueray proposed openstack-infra/zuul master: dashboard: add /{tenant}/job.html page to display job details  https://review.openstack.org/53554501:40
openstackgerritTristan Cacqueray proposed openstack-infra/zuul master: dashboard: add /{tenant}/projects.html web page  https://review.openstack.org/53787001:40
*** cshastri has joined #openstack-infra01:40
openstackgerritTristan Cacqueray proposed openstack-infra/zuul master: Fix indentation and renable the eslint rule  https://review.openstack.org/54567101:41
*** nicolasbock has joined #openstack-infra01:41
openstackgerritZhao Chao proposed openstack-infra/project-config master: Use -python35-jobs-horizon for trove-dashboard  https://review.openstack.org/55311601:42
openstackgerritTristan Cacqueray proposed openstack-infra/zuul master: Shift html templates into components  https://review.openstack.org/55132701:43
*** yamahata has quit IRC01:43
*** iyamahat has quit IRC01:46
openstackgerritMerged openstack-infra/system-config master: Match numbered mirror-update servers  https://review.openstack.org/55311101:46
*** hongbin has joined #openstack-infra01:46
*** claudiub|2 has quit IRC01:55
*** harlowja has quit IRC01:59
*** salv-orl_ has joined #openstack-infra02:04
*** rosmaita has quit IRC02:04
*** namnh has joined #openstack-infra02:05
*** salv-orlando has quit IRC02:07
*** r-daneel has quit IRC02:15
*** r-daneel has joined #openstack-infra02:16
*** luzC has joined #openstack-infra02:18
*** david-lyle has quit IRC02:21
dmsimardianw: btw I replied on https://review.openstack.org/#/c/552707/02:28
*** zhurong has joined #openstack-infra02:29
ianwdmsimard: why not just update it all?  i don't care that much though02:30
*** xarses_ has joined #openstack-infra02:30
*** xarses has quit IRC02:31
dmsimardianw: I followed your linaro patches fwiw :p02:32
dmsimardianw: I just figured I wouldn't touch nodepool until the mirror was ready in case I screw up and nodepool starts building images or firing images :p02:33
ianwyeah, and i forgot it in my patches, which is why i called it out :)02:34
ianwthat won't happen until there's config, which i agree comes after02:34
dmsimardI tagged my patches with the same topic on purpose, I'll try and document the process a little bit02:38
openstackgerritMerged openstack-infra/grafyaml master: Support formatting.  https://review.openstack.org/55004502:46
*** psachin has joined #openstack-infra02:46
*** wolverineav has joined #openstack-infra02:49
ianw#status log mirror-update.o.o upgraded to xenial host mirror-update01.o.o.  mirror-update turned into a cname for 01.  old server remains at mirror-update-old.o.o but turned off, so as not run conflicting jobs; will clean up later02:54
openstackstatusianw: finished logging02:54
openstackgerritMerged openstack-infra/grafyaml master: Add gauge caps for singlestat panel.  https://review.openstack.org/55047402:56
ianwurgh, our puppet might not be as good at importing pgp keys as it should be ...03:00
*** olaph1 has quit IRC03:06
*** olaph has joined #openstack-infra03:07
*** wolverineav has quit IRC03:10
*** eernst has joined #openstack-infra03:10
*** sree has joined #openstack-infra03:10
*** wolverineav has joined #openstack-infra03:10
openstackgerritIan Wienand proposed openstack-infra/system-config master: Add debian security gpg key  https://review.openstack.org/55312503:11
*** dave-mccowan has quit IRC03:14
*** germs has quit IRC03:14
*** wolverineav has quit IRC03:15
*** germs has joined #openstack-infra03:15
*** germs has quit IRC03:15
*** germs has joined #openstack-infra03:15
*** germs has quit IRC03:16
*** germs has joined #openstack-infra03:17
*** germs has quit IRC03:17
*** germs has joined #openstack-infra03:17
openstackgerritTristan Cacqueray proposed openstack-infra/zuul master: web: add jobs graph rendering  https://review.openstack.org/53786903:18
openstackgerritTristan Cacqueray proposed openstack-infra/zuul master: web: add project pipeline rendering  https://review.openstack.org/53787103:18
*** annp has joined #openstack-infra03:26
*** nicolasbock has quit IRC03:27
openstackgerritIan Wienand proposed openstack-infra/system-config master: Add debian security gpg key  https://review.openstack.org/55312503:30
openstackgerritIan Wienand proposed openstack-infra/system-config master: Add second Ubuntu signing key  https://review.openstack.org/55313003:30
*** felipemonteiro_ has joined #openstack-infra03:32
*** tojuvone_ is now known as tojuvone03:32
*** chrisyang_0660 has joined #openstack-infra03:33
*** felipemonteiro__ has joined #openstack-infra03:33
*** janki has joined #openstack-infra03:34
*** ramishra has quit IRC03:35
*** ramishra has joined #openstack-infra03:35
*** felipemonteiro_ has quit IRC03:36
*** links has joined #openstack-infra03:41
*** felipemonteiro__ has quit IRC03:45
*** felipemonteiro__ has joined #openstack-infra03:46
*** ramishra has quit IRC03:49
*** ramishra has joined #openstack-infra03:50
*** hongbin has quit IRC03:52
*** zhurong has quit IRC03:53
openstackgerritMerged openstack-infra/system-config master: Add debian security gpg key  https://review.openstack.org/55312504:07
*** germs has quit IRC04:09
*** harlowja has joined #openstack-infra04:11
*** Swami has quit IRC04:14
openstackgerritTristan Cacqueray proposed openstack-infra/zuul master: web: add project pipeline rendering  https://review.openstack.org/53787104:21
openstackgerritIan Wienand proposed openstack-infra/system-config master: Fix debian key typo  https://review.openstack.org/55313704:26
*** eernst has quit IRC04:31
*** andreas_s has joined #openstack-infra04:31
*** iyamahat_ has joined #openstack-infra04:33
*** dhajare has joined #openstack-infra04:34
*** gyee has quit IRC04:35
*** andreas_s has quit IRC04:36
*** jamesmcarthur has quit IRC04:41
openstackgerritMerged openstack-infra/system-config master: Add second Ubuntu signing key  https://review.openstack.org/55313004:43
*** lpetrut has joined #openstack-infra04:46
*** harlowja has quit IRC04:50
*** VW has joined #openstack-infra04:50
*** yamahata has joined #openstack-infra04:50
*** vivsoni has joined #openstack-infra05:00
*** felipemonteiro__ has quit IRC05:01
*** VW has quit IRC05:06
*** VW has joined #openstack-infra05:07
openstackgerritMerged openstack-infra/system-config master: Fix debian key typo  https://review.openstack.org/55313705:07
*** vivsoni has quit IRC05:08
*** ykarel|afk has joined #openstack-infra05:10
*** ykarel|afk is now known as ykarel05:10
*** pgadiya has joined #openstack-infra05:11
*** lpetrut has quit IRC05:11
*** alexchadin has joined #openstack-infra05:11
*** VW has quit IRC05:11
*** _jbadiapa has quit IRC05:12
*** udesale has joined #openstack-infra05:13
*** rossella_s has quit IRC05:14
*** alexchadin has quit IRC05:17
*** rossella_s has joined #openstack-infra05:17
*** alexchadin has joined #openstack-infra05:17
*** agopi has joined #openstack-infra05:22
adriantis something wrong with gerrit?05:25
adriantI can't do "git review" for my patch right now05:25
adriantIt works for our internal company gerrit, but not the openstack one.05:26
adriantit's not even giving me errors, just doing nothing.05:26
*** agopi has quit IRC05:34
openstackgerritTristan Cacqueray proposed openstack-infra/zuul master: model: freeze parent playbooks  https://review.openstack.org/55314405:37
ianwadriant: not that i know of ... are the packets getting out of your company?05:44
openstackgerritTristan Cacqueray proposed openstack-infra/zuul master: Revert "Don't store references to secret objects from jobs"  https://review.openstack.org/55314705:45
*** claudiub|2 has joined #openstack-infra05:48
*** madhuvishy has left #openstack-infra05:53
*** rossella_s has quit IRC06:04
*** rossella_s has joined #openstack-infra06:05
*** rossella_s has quit IRC06:10
*** rossella_s has joined #openstack-infra06:11
*** jbadiapa has joined #openstack-infra06:18
*** iyamahat_ has quit IRC06:28
*** yamahata has quit IRC06:28
*** dbecker has quit IRC06:32
*** aeng has quit IRC06:34
*** olaph1 has joined #openstack-infra06:34
*** olaph has quit IRC06:35
*** rossella_s has quit IRC06:36
*** rossella_s has joined #openstack-infra06:36
*** dhajare has quit IRC06:39
*** rossella_s has quit IRC06:42
*** rossella_s has joined #openstack-infra06:42
openstackgerritOpenStack Proposal Bot proposed openstack-dev/hacking master: Updated from global requirements  https://review.openstack.org/55144706:43
openstackgerritOpenStack Proposal Bot proposed openstack-dev/pbr master: Updated from global requirements  https://review.openstack.org/55144806:43
*** dbecker has joined #openstack-infra06:46
*** jcoufal has joined #openstack-infra06:51
openstackgerritOpenStack Proposal Bot proposed openstack/diskimage-builder master: Updated from global requirements  https://review.openstack.org/55231606:52
*** namnh has quit IRC06:53
*** aviau has quit IRC07:11
*** jbadiapa has quit IRC07:12
*** aviau has joined #openstack-infra07:14
*** alexchadin has quit IRC07:14
*** aviau has quit IRC07:19
*** aviau has joined #openstack-infra07:19
*** alexchadin has joined #openstack-infra07:19
*** dsariel has joined #openstack-infra07:21
*** gridinv has quit IRC07:21
fricklerinfra-root: I'm seeing strange POST_FAILUREs that look like they might be related to recent zuul patches, e.g. http://logs.openstack.org/86/547986/7/check/tempest-full-py36/6e6bb4f/job-output.txt.gz#_2018-03-15_03_03_39_41325907:25
AJaegerfrickler: related to https://review.openstack.org/553147 ?07:25
fricklerAJaeger: hmm, not sure. lots of others are simple cut off while uploading logs http://logs.openstack.org/86/547986/7/check/tempest-full/1338109/job-output.txt.gz#_2018-03-15_04_30_32_43297907:27
*** andreas_s has joined #openstack-infra07:27
*** dhajare has joined #openstack-infra07:29
AJaegerfrickler: just a shot in the dark - no time for investigation07:30
*** kjackal has quit IRC07:36
*** apetrich has quit IRC07:36
adriantianw: worked now. I'll blame solar flares.07:37
*** armaan has joined #openstack-infra07:41
*** alexchadin has quit IRC07:41
*** alexchadin has joined #openstack-infra07:42
fricklerseems all tempest-* jobs are affected starting around 20:00 yesterday07:43
AJaegertobiash: any ideas? ^07:44
openstackgerritOpenStack Proposal Bot proposed openstack/os-testr master: Updated from global requirements  https://review.openstack.org/53399307:45
tobiashfrickler, AJaeger: that might be caused by the no_log fix07:46
tobiashlooks like it strips a bit too much07:46
tobiashdo you need no_log on this task?07:46
tobiashfrickler, AJaeger: it seems that no_log now strips the stat from the result variable of http://logs.openstack.org/86/547986/7/check/tempest-full-py36/6e6bb4f/job-output.txt.gz#_2018-03-15_03_03_36_62402607:48
*** apetrich has joined #openstack-infra07:48
*** pcaruana has joined #openstack-infra07:48
*** lpetrut has joined #openstack-infra07:49
*** pcaruana has quit IRC07:50
*** pcaruana has joined #openstack-infra07:50
fricklertobiash: so we should remove the no_log as a workaround?07:50
*** pcaruana is now known as pcaruana|wfh|07:53
*** AJaeger has quit IRC07:56
*** hashar has joined #openstack-infra07:56
*** e0ne has joined #openstack-infra07:57
*** ykarel is now known as ykarel|lunch07:57
*** kjackal has joined #openstack-infra08:01
*** olaph has joined #openstack-infra08:03
*** olaph1 has quit IRC08:04
*** dingyichen has quit IRC08:06
*** HeOS has joined #openstack-infra08:08
*** witek has quit IRC08:11
*** witek_ has joined #openstack-infra08:11
tobiashfrickler: if this task doesn;t deal with secrets, yes remove it08:12
*** zoli is now known as zoli|gone08:17
*** zoli|gone is now known as zoli08:17
*** AJaeger has joined #openstack-infra08:20
*** ramishra has quit IRC08:20
*** ramishra has joined #openstack-infra08:21
*** tesseract has joined #openstack-infra08:24
*** tmorin has joined #openstack-infra08:25
*** bhavik1 has joined #openstack-infra08:26
*** ykarel|lunch is now known as ykarel08:26
*** bhavik1 has quit IRC08:29
*** _alastor_ has quit IRC08:35
*** tosky has joined #openstack-infra08:40
*** jpena|off is now known as jpena08:43
tobiashfrickler: after thinking about that combining register with no_log in ansible feels kinda scary to me08:47
*** ralonsoh has joined #openstack-infra08:52
*** rcernin has quit IRC09:00
*** jpich has joined #openstack-infra09:03
*** ispp is now known as burned09:04
*** rossella_s has quit IRC09:05
*** rossella_s has joined #openstack-infra09:06
*** r-daneel has quit IRC09:07
openstackgerritMatthieu Huin proposed openstack-infra/zuul master: zuul autohold: allow operator to specify nodes TTL  https://review.openstack.org/54340309:11
*** lucas-afk is now known as lucasagomes09:12
*** alexchadin has quit IRC09:12
*** alexchadin has joined #openstack-infra09:13
*** dbecker_ has joined #openstack-infra09:13
*** alexchadin has quit IRC09:13
*** dbecker_ has left #openstack-infra09:14
*** dbecker has quit IRC09:14
*** alexchadin has joined #openstack-infra09:14
*** dbecker has joined #openstack-infra09:14
*** alexchadin has quit IRC09:14
*** alexchadin has joined #openstack-infra09:15
*** alexchadin has quit IRC09:15
*** alexchadin has joined #openstack-infra09:15
*** alexchadin has quit IRC09:16
*** zoli is now known as zoli|wfh09:16
*** zoli|wfh is now known as zoli09:16
*** alexchadin has joined #openstack-infra09:16
*** alexchadin has quit IRC09:16
*** dbecker has quit IRC09:22
*** dbecker has joined #openstack-infra09:22
*** shardy has joined #openstack-infra09:25
*** nicolasbock has joined #openstack-infra09:27
*** janki has quit IRC09:28
*** jbadiapa has joined #openstack-infra09:30
*** claudiub|2 is now known as claudiub09:32
*** alexchadin has joined #openstack-infra09:32
*** witek_ has quit IRC09:33
*** amoralej|off is now known as amoralej09:34
*** witek has joined #openstack-infra09:38
*** derekh has joined #openstack-infra09:40
*** efoley has joined #openstack-infra09:40
alexchadinhi. I'd like to put to job-output only logs about tempest run. for example, from this point http://logs.openstack.org/90/551790/24/check/watcher-tempest-zuulv3/a0143d5/job-output.txt.gz#_2018-03-15_09_04_25_62083409:43
*** dizquierdo has joined #openstack-infra09:44
alexchadindo I need some post playbook?09:44
*** florianf has joined #openstack-infra09:50
*** s-shiono has quit IRC09:53
openstackgerritMatthieu Huin proposed openstack-infra/nodepool master: Add separate modules for management commands  https://review.openstack.org/53630309:54
toskyuhm, did anyone notice POST_FAILURES in some (devstack-based) jobs? https://review.openstack.org/#/c/553268/09:54
fricklertosky: yes, see my discussion with tobiash earlier. reason not clear yet, we will probably need to wait for some US people to look into it09:56
toskyups, I was not connected, thanks, I will recheck the logs09:57
tobiashfrickler: did you try the workaround?09:57
fricklertobiash: no, as I'm not certain whether there might be secrets involved09:58
alexchadintosky: +1, the same problem09:58
dulekfrickler: Had you noticed that it fails on "apache-logs-conf : Create hard links"?10:02
dulekfrickler: And seems like in logs for this task we only have "Output suppressed because no_log was given"10:03
fricklerdulek: ansible seems to fail in various tasks with the log simply ending mid-task. the common theme I'm seeing is that they are executed directly after a task that has "no_log: True"10:05
*** electrofelix has joined #openstack-infra10:05
dulekfrickler: Okay. So I guess it's another day with broken gates for Kuryr. ;)10:06
*** stakeda has quit IRC10:10
*** pbourke has joined #openstack-infra10:11
*** rossella_s has quit IRC10:12
*** sree has quit IRC10:13
*** sree has joined #openstack-infra10:14
*** rossella_s has joined #openstack-infra10:14
*** shardy has quit IRC10:18
*** sree has quit IRC10:19
*** shardy has joined #openstack-infra10:19
openstackgerritTobias Henkel proposed openstack-infra/zuul master: Generate symlinks during tests  https://review.openstack.org/55331610:21
fricklerinfra-root: who wants to look after backup jobs? cron job on zuul01.o.o produces "/bin/sh: 1: bup: not found"10:23
dmelladotosky: yeah10:26
dmelladoseems that is affecting all jobs10:26
dmelladoanother tough day in the infra world10:26
*** rossella_s has quit IRC10:28
*** florianf has quit IRC10:30
*** pblaho has joined #openstack-infra10:31
*** cshastri has quit IRC10:31
*** rossella_s has joined #openstack-infra10:31
openstackgerritMatthieu Huin proposed openstack-infra/nodepool master: webapp: add optional admin endpoint  https://review.openstack.org/53631910:35
*** rossella_s has quit IRC10:38
*** rossella_s has joined #openstack-infra10:40
*** olaph1 has joined #openstack-infra10:45
*** olaph has quit IRC10:46
*** alexchadin has quit IRC10:46
tobiashfrickler: if that's blocking too much you also could do a local revert of the executors to the change before the no_log fix10:51
*** erlon has joined #openstack-infra10:54
*** gongysh has joined #openstack-infra10:54
openstackgerritTobias Henkel proposed openstack-infra/zuul master: Generate symlinks during tests  https://review.openstack.org/55331610:55
openstackgerritMatthieu Huin proposed openstack-infra/zuul master: zuul web: add admin endpoint, enqueue & autohold commands  https://review.openstack.org/53900410:55
*** rossella_s has quit IRC10:56
openstackgerriteldad marciano proposed openstack-infra/grafyaml master: Add datasource to template schema.  https://review.openstack.org/54836510:58
*** rossella_s has joined #openstack-infra11:00
fricklertobiash: technically yes, but I wouldn't feel confident enough to do so on my own. hoping either fungi, clarkb or corvus wake up early today ;)11:00
tobiashok11:01
AJaegerfrickler: thanks to day light saving, it'S one hour earlier than usual ;)11:04
*** yamamoto has quit IRC11:04
tobiashfrickler, AJaeger: looking at the job failure the reason is this: http://git.openstack.org/cgit/openstack-dev/devstack/tree/roles/devstack-project-conf/tasks/main.yaml#n1111:04
tobiashand that task doesn't look like it's dealing with secrets11:04
tobiashit uses the variable zuul.projects (the zuul var never contains secrets)11:04
tobiashand outputs stats of the dir /etc/<project name>11:05
tobiashso imho it should be safe to remove no_log there11:05
tobiashwhich would at least unbreak that11:06
tobiashno idea if there are further occurrences of that pattern11:06
*** armaan_ has joined #openstack-infra11:09
*** armaan has quit IRC11:10
tobiashAJaeger, frickler, pabelanger: https://review.openstack.org/55332911:11
tobiashthe no_log was just added to reduce noise so it's definitely safe to remove it11:11
tobiashandreaf: ^11:12
*** armaan has joined #openstack-infra11:13
*** adarazs is now known as adarazs_lunch11:14
*** udesale has quit IRC11:15
*** liuyulong has quit IRC11:16
*** armaan_ has quit IRC11:17
*** gongysh has quit IRC11:17
*** dtruong_ has joined #openstack-infra11:18
*** lpetrut_ has joined #openstack-infra11:18
*** lpetrut has quit IRC11:18
*** snapiri- has joined #openstack-infra11:18
*** andreas_s has quit IRC11:18
*** ianychoi_ has joined #openstack-infra11:19
*** andreas_s has joined #openstack-infra11:19
*** pbourke_ has joined #openstack-infra11:20
*** Kevin_Zheng_ has joined #openstack-infra11:20
*** jungleboyj_ has joined #openstack-infra11:20
*** zaro__ has joined #openstack-infra11:20
*** signed8bit has joined #openstack-infra11:20
*** vabada2 has joined #openstack-infra11:20
*** mnaser_ has joined #openstack-infra11:20
openstackgerritMatthieu Huin proposed openstack-infra/nodepool master: webapp: add optional admin endpoint  https://review.openstack.org/53631911:21
*** jokke__ has joined #openstack-infra11:22
*** lpetrut has joined #openstack-infra11:22
*** vipuls has joined #openstack-infra11:22
*** zara_the1lemur__ has joined #openstack-infra11:22
*** dosaboy_ has joined #openstack-infra11:22
*** igormarnat_ has joined #openstack-infra11:23
*** rodrigod` has joined #openstack-infra11:23
*** gema_ has joined #openstack-infra11:23
*** frickler_ has joined #openstack-infra11:23
*** Anticime1 has joined #openstack-infra11:23
*** jog0 has joined #openstack-infra11:23
*** andreas_s has quit IRC11:24
*** timrchavez_ has joined #openstack-infra11:25
*** arxcruz has joined #openstack-infra11:26
*** slaweq_ has joined #openstack-infra11:27
*** pbourke has quit IRC11:27
*** pcaruana|wfh| has quit IRC11:27
*** diablo_rojo has quit IRC11:27
*** kaisers1 has quit IRC11:27
*** bandini has quit IRC11:27
*** dtruong has quit IRC11:27
*** igormarnat has quit IRC11:27
*** michaelxin has quit IRC11:27
*** arxcruz|off has quit IRC11:27
*** snapiri has quit IRC11:27
*** vipul has quit IRC11:27
*** bkero- has quit IRC11:27
*** jogo has quit IRC11:27
*** rodrigods has quit IRC11:27
*** dosaboy has quit IRC11:27
*** Kevin_Zheng has quit IRC11:27
*** zaro_ has quit IRC11:27
*** jungleboyj has quit IRC11:27
*** mnaser has quit IRC11:27
*** zara_the_lemur__ has quit IRC11:27
*** timrc has quit IRC11:27
*** frickler has quit IRC11:27
*** jokke_ has quit IRC11:27
*** Anticimex has quit IRC11:27
*** kzaitsev_pi has quit IRC11:27
openstackgerritMatthieu Huin proposed openstack-infra/zuul master: zuul web: add admin endpoint, enqueue & autohold commands  https://review.openstack.org/53900411:27
*** igormarnat_ is now known as igormarnat11:27
*** jungleboyj_ is now known as jungleboyj11:27
*** mnaser_ is now known as mnaser11:27
*** sshnaidm_ has joined #openstack-infra11:27
*** jlk` has joined #openstack-infra11:27
*** gfidente^2nd has joined #openstack-infra11:28
*** SergeyLukjanov2 has joined #openstack-infra11:28
*** jokke__ has quit IRC11:28
*** jokke__ has joined #openstack-infra11:28
*** pcaruana|wfh| has joined #openstack-infra11:28
*** jokke__ is now known as jokke_11:28
*** _ari_ has quit IRC11:28
*** Marx314 has quit IRC11:28
*** signed8bit_Zzz has quit IRC11:28
*** vtapia has quit IRC11:28
*** jgr has quit IRC11:28
*** ianychoi has quit IRC11:28
*** gfidente has quit IRC11:28
*** liusheng has quit IRC11:28
*** SergeyLukjanov has quit IRC11:28
*** krtaylor has quit IRC11:28
*** gema has quit IRC11:28
*** kzaitsev1pi has joined #openstack-infra11:28
*** diablo_rojo_ has joined #openstack-infra11:28
*** lpetrut_ has quit IRC11:28
*** sshnaidm has quit IRC11:28
*** slaweq has quit IRC11:28
*** vabada has quit IRC11:28
*** jlk has quit IRC11:28
*** jgr has joined #openstack-infra11:28
*** _ari_ has joined #openstack-infra11:28
*** liusheng has joined #openstack-infra11:28
*** krtaylor has joined #openstack-infra11:28
*** Kevin_Zheng_ has quit IRC11:28
*** Kevin_Zheng_ has joined #openstack-infra11:28
*** mnaser has quit IRC11:28
*** mnaser has joined #openstack-infra11:28
*** jungleboyj has quit IRC11:28
*** jungleboyj has joined #openstack-infra11:28
*** zaro__ has quit IRC11:28
*** zaro__ has joined #openstack-infra11:28
*** SergeyLukjanov2 is now known as SergeyLukjanov11:28
*** kaisers1 has joined #openstack-infra11:28
*** yee379 has quit IRC11:29
*** bandini has joined #openstack-infra11:30
*** bkero- has joined #openstack-infra11:30
*** michaelxin has joined #openstack-infra11:31
*** frickler_ is now known as frickler11:35
*** kjackal has quit IRC11:38
*** annp has quit IRC11:48
*** vtapia has joined #openstack-infra11:48
*** armaan_ has joined #openstack-infra11:49
*** dmellado has quit IRC11:50
*** pgadiya has quit IRC11:51
*** armaan has quit IRC11:52
*** stevebaker has quit IRC11:52
*** ldnunes has joined #openstack-infra11:53
*** gothicmindfood has joined #openstack-infra11:53
*** dmellado has joined #openstack-infra11:58
*** amoralej is now known as amoralej|lunch12:00
*** zoli is now known as zoli|lunch12:02
*** zoli|lunch is now known as zoli12:02
*** efoley has quit IRC12:02
*** kjackal has joined #openstack-infra12:03
openstackgerritWitold Bedyk proposed openstack-infra/project-config master: Set openstack-tox-cover as voting for monasca-ui  https://review.openstack.org/55336812:04
*** yamamoto has joined #openstack-infra12:04
*** trown|outtypewww is now known as trown|ruck12:04
*** dtantsur|afk is now known as dtantsur12:04
*** dmellado has quit IRC12:05
openstackgerritWitold Bedyk proposed openstack-infra/project-config master: Add horizon to required-projects  https://review.openstack.org/55013012:05
*** odyssey4me has quit IRC12:05
*** odyssey4me has joined #openstack-infra12:05
*** yamamoto has quit IRC12:09
*** pcaruana|wfh| is now known as pcaruana12:14
*** edmondsw has joined #openstack-infra12:15
*** dprince has joined #openstack-infra12:15
*** yamamoto has joined #openstack-infra12:16
*** claudiub|2 has joined #openstack-infra12:20
*** jpena is now known as jpena|lunch12:21
*** claudiub has quit IRC12:23
*** dmellado has joined #openstack-infra12:23
*** witek has quit IRC12:24
*** witek has joined #openstack-infra12:24
tobberydbergHi folks! Trying to figure out permissions for channel #openstack-publiccloud ... seanhandley has the permissions that I would like to have for that channel. Is this configurable somewhere that I can't find and someone can point me in the right direction, or is this something that just a few people can configure?12:27
*** snapiri- is now known as snapiri12:27
*** snapiri has quit IRC12:27
*** snapiri has joined #openstack-infra12:28
*** lucasagomes is now known as lucas-hungry12:28
*** dmellado has quit IRC12:30
openstackgerritMerged openstack-infra/project-config master: Migrate Sahara projects to Storyboard  https://review.openstack.org/55265112:31
mnasertobberydberg: anything in particular you need permissions for to do?12:31
tobberydbergsetting topic mnaser12:35
*** rlandy has joined #openstack-infra12:35
tobberydbergseanhandley gave me +o earlier, but would be nice to get that without asking him12:35
*** sshnaidm_ is now known as sshnaidm12:35
*** armaan_ has quit IRC12:36
*** chrisyang_0660 has quit IRC12:37
*** armaan has joined #openstack-infra12:37
*** gfidente^2nd is now known as gfidente12:37
e0nehi team. could anybody please help me with horizon jobs?12:41
*** snapiri has quit IRC12:41
e0nee.g. https://review.openstack.org/#/c/522556/ horizon-dsvm-tempest-plugi POST_FAILURE12:41
*** snapiri has joined #openstack-infra12:41
e0nerechecks didn't help. There are the same issues with other patches12:42
*** efoley has joined #openstack-infra12:42
*** mikal has joined #openstack-infra12:42
*** psachin has quit IRC12:44
*** bhujay has joined #openstack-infra12:44
AJaegere0ne: https://review.openstack.org/553329 should fix the problem12:45
*** mikal_ has quit IRC12:45
e0neAJaeger: thanks for the information12:45
*** armaan has quit IRC12:45
*** armaan has joined #openstack-infra12:45
*** r-daneel has joined #openstack-infra12:46
*** hrubi has quit IRC12:47
*** kgiusti has joined #openstack-infra12:47
*** signed8bit is now known as signed8bit_Zzz12:47
*** dizquierdo has quit IRC12:48
*** hrubi has joined #openstack-infra12:49
fricklere0ne: AJaeger: yes, there is a known issue, seems to mainly affect jobs based on the new zuulv3 devstack job. but that patch is only a partial fix at best and does still suffer from a lot of post_failures12:49
*** dayou has quit IRC12:50
fricklere0ne: the root cause seem to be recent changes to zuul, waiting for our zuul experts to show up and debug further12:51
*** david-lyle has joined #openstack-infra12:52
*** ldnunes has quit IRC12:53
*** ldnunes has joined #openstack-infra12:54
*** signed8bit_Zzz is now known as signed8bit12:55
*** jamesmcarthur has joined #openstack-infra12:57
*** dave-mccowan has joined #openstack-infra13:01
*** dayou has joined #openstack-infra13:03
*** andreas_s has joined #openstack-infra13:03
*** alexchadin has joined #openstack-infra13:03
*** Goneri has joined #openstack-infra13:08
openstackgerritJesse Pretorius (odyssey4me) proposed openstack-infra/project-config master: Import python_venv_build ansible role  https://review.openstack.org/55339213:08
*** dsariel has quit IRC13:08
*** eharney has joined #openstack-infra13:09
*** myoung|afk is now known as myoung|rover13:09
*** mriedem has joined #openstack-infra13:09
openstackgerritJesse Pretorius (odyssey4me) proposed openstack-infra/project-config master: Import python_venv_build ansible role  https://review.openstack.org/55339213:09
*** zoli is now known as zoli|wfh13:10
*** zoli|wfh is now known as zoli13:10
*** david-lyle has quit IRC13:12
*** panda|off is now known as panda13:13
*** jamesmcarthur has quit IRC13:14
*** sree has joined #openstack-infra13:14
fricklertobiash: dulek: is looks like the apache hardlinks might indeed be the root cause of the current issues and the other stuff just masking it http://logs.openstack.org/86/547986/7/check/tempest-full/1338109/ara/result/29d01451-fa45-46e1-a27e-11b54d96d3b7/13:15
*** david-lyle has joined #openstack-infra13:15
openstackgerritJesse Pretorius (odyssey4me) proposed openstack-infra/project-config master: Add base jobs for python_venv_build ansible role  https://review.openstack.org/55339613:15
dulekfrickler: Hah, a point to intuition! ;)13:15
*** adarazs_lunch is now known as adarazs13:18
*** yamamoto has quit IRC13:18
*** sree has quit IRC13:18
*** eernst has joined #openstack-infra13:19
*** yamamoto has joined #openstack-infra13:19
*** dmellado has joined #openstack-infra13:19
*** dmellado has quit IRC13:20
*** rosmaita has joined #openstack-infra13:21
*** jcoufal_ has joined #openstack-infra13:21
Shrewslooks like the devstack apache-logs-conf role is also using no_log around a with_items task. i wonder if we need to take 'when' usage into account before clearing out the item13:23
*** ianychoi_ is now known as ianychoi13:23
*** yamamoto has quit IRC13:23
Shrewscorvus: tobiash: ^^13:23
*** amoralej|lunch is now known as amoralej13:24
Shrewshttp://git.openstack.org/cgit/openstack-dev/devstack/tree/roles/apache-logs-conf/tasks/main.yaml#n2713:24
*** jcoufal has quit IRC13:24
*** hashar has quit IRC13:24
*** david-lyle has quit IRC13:25
*** gouthamr_ has joined #openstack-infra13:26
*** gouthamr_ is now known as gouthamr13:26
*** jpena|lunch is now known as jpena13:29
*** snapiri has quit IRC13:29
*** ralonsoh_ has joined #openstack-infra13:32
*** snapiri has joined #openstack-infra13:32
*** jamesmcarthur has joined #openstack-infra13:32
Shrewsi wonder if we can clear the data out of the item itself, rather than replace it with a dict13:33
*** dave-mccowan has quit IRC13:34
*** ricardoas has quit IRC13:35
*** ralonsoh has quit IRC13:35
*** felipemonteiro__ has joined #openstack-infra13:36
*** gema_ is now known as gema13:38
*** felipemonteiro_ has joined #openstack-infra13:38
*** gema has quit IRC13:38
*** gema has joined #openstack-infra13:38
*** myoung|rover is now known as myoung|logdiver13:39
*** myoung|logdiver is now known as myoung|rover13:39
toskycan at least anyone send a notification to tell people to not recheck while this is investigated?13:41
*** hashar has joined #openstack-infra13:41
*** felipemonteiro__ has quit IRC13:42
*** lucas-hungry is now known as lucasagomes13:42
*** links has quit IRC13:42
*** eernst has quit IRC13:43
*** udesale has joined #openstack-infra13:43
*** felipemonteiro_ has quit IRC13:45
*** felipemonteiro_ has joined #openstack-infra13:45
*** dsariel has joined #openstack-infra13:47
*** r-daneel has quit IRC13:48
*** zhipeng has joined #openstack-infra13:51
*** zoli is now known as zoli|afk13:52
*** zoli|afk is now known as zoli13:52
*** janki has joined #openstack-infra13:52
mnasertosky: probably a good idea bevcause i was just going to ask13:53
mnaserinfra-root: ^ ?13:53
*** erlon has quit IRC13:53
*** hashar has quit IRC13:54
*** jamesmcarthur has quit IRC14:00
*** esberglu has joined #openstack-infra14:00
*** bhujay has quit IRC14:01
*** ihrachys_ is now known as ihrachys14:01
*** gongysh has joined #openstack-infra14:01
*** annp has joined #openstack-infra14:03
*** jaosorior has quit IRC14:03
*** ralonsoh__ has joined #openstack-infra14:04
fungii haven't been following closely... is it just impacting tempest-based jobs at the moment?14:04
*** ralonsoh__ is now known as ralonsoh14:04
*** neiljerram has joined #openstack-infra14:05
fungisomething like #status alert POST_FAILURE results on Tempest-based jobs since the most recent Zuul security fixes are being investigated; rechecking those won't help for now but we'll keep you posted once a solution is identified14:05
toskythat should be enough, thanks14:06
fungi#status alert POST_FAILURE results on Tempest-based jobs since the most recent Zuul security fixes are being investigated; rechecking those won't help for now but we'll keep you posted once a solution is identified14:06
openstackstatusfungi: sending alert14:06
*** ralonsoh_ has quit IRC14:07
Shrewsfungi: i don't know the full extent of what is affected, but i've been looking at the devstack-based job failure to identify the issue14:07
*** kiennt26 has joined #openstack-infra14:07
-openstackstatus- NOTICE: POST_FAILURE results on Tempest-based jobs since the most recent Zuul security fixes are being investigated; rechecking those won't help for now but we'll keep you posted once a solution is identified14:09
*** ChanServ changes topic to "POST_FAILURE results on Tempest-based jobs since the most recent Zuul security fixes are being investigated; rechecking those won't help for now but we'll keep you posted once a solution is identified"14:09
*** bobh has joined #openstack-infra14:10
openstackstatusfungi: finished sending alert14:12
rm_workwait, so all our channel topics got replaced by ... that? :P14:14
rm_workI mean, it's useful I guess... but lol14:14
*** eernst has joined #openstack-infra14:15
toskymore useful than "you can't do anything"? :)14:15
toskyit will be restored eventually14:15
*** rossella_s has quit IRC14:15
fungirm_work: you can opt out of that behavior by not having the statusbot (openstackstatus) join your channel14:16
*** eernst has quit IRC14:16
rm_workit's just interesting, but i guess if it restores the old channel topic eventually it's fine ;P14:16
fungiit will revert your topic to its normal value when we issue a #status ok14:16
rm_workjust odd having that huge block instead of "welcome to <x>" and associated info14:16
*** dizquierdo has joined #openstack-infra14:16
rm_workthough granted we don't really have any useful info >_>14:16
fungis/normal/previous/14:17
rm_workyeah i just never noticed it before i guess14:17
fungistatusbot stores the topic your channel had before updating, and then sets it back again when done14:17
*** rossella_s has joined #openstack-infra14:17
*** eernst has joined #openstack-infra14:18
*** yamamoto has joined #openstack-infra14:20
neiljerramCan anyone advise where I should look if I see "process-returncode: fail" in a CI run, as for example here: http://logs.openstack.org/18/552518/5/gate/openstack-tox-py35/b174533/testr_results.html.gz14:23
neiljerram("process-returncode" is not the name of any actual test)14:24
AJaegerrm_work: https://wiki.openstack.org/wiki/Infrastructure_Status contains all the message we log, many of them are alerts14:25
rm_workyeah i just didn't realize it changes all the channel topics automatically ;P14:25
rm_workjust struck me as interesting/humorous14:25
*** yamamoto has quit IRC14:25
sc`neiljerram: http://logs.openstack.org/18/552518/5/gate/openstack-tox-py35/b174533/job-output.txt.gz suggests an invokation error. have you seen that yet?14:26
*** zhipeng has quit IRC14:27
*** bobh has quit IRC14:27
sc`s/invokation/invocation/ ENOCAFFEINE14:27
*** ykarel is now known as ykarel|away14:27
neiljerramsc`, yes, I saw that too; but still not really understanding what it means, I'm afraid.14:28
*** dmellado has joined #openstack-infra14:28
*** dsariel has quit IRC14:30
*** r-daneel has joined #openstack-infra14:30
*** armaan has quit IRC14:31
*** gongysh has quit IRC14:31
*** germs has joined #openstack-infra14:33
*** germs has quit IRC14:33
*** germs has joined #openstack-infra14:33
*** germs has quit IRC14:33
*** zoli is now known as zoli|wfh14:35
*** ykarel|away has quit IRC14:36
*** germs has joined #openstack-infra14:36
corvusAJaeger, fungi, frickler: i expect a zuul fix to take a few hours.  we can either land a change to remove no_log from stat, or we can revert the security fix, or we can just wait for it.  thoughts?14:37
*** yamahata has joined #openstack-infra14:39
AJaegercorvus: I have not have time to follow closely and can really say how much it hurts us. It looks like we have time to wait for the fix.14:41
fricklercorvus: I'm not sure which places would need the no_log removed, so I guess reverting would be sensible. but it's also almost eod for me, so if it gets fixed within the next 12h, that would be fine for me, too14:41
*** florianf has joined #openstack-infra14:43
fungii'm not keen on reverting security fixes, if we can help it14:44
fungiespecially now that we've announced the details of how we were vulnerable before the fixes went into effect14:44
sc`neiljerram: older pip choking on the git url perhaps? feels like something more in clarkb's wheelhouse per github issues14:45
fungirunning with the current regression seems preferable to shutting down zuul until we have a fix for the fix14:45
*** dmellado_ has joined #openstack-infra14:46
*** olaph1 has quit IRC14:47
*** jaosorior has joined #openstack-infra14:47
fungisc`: neiljerram: is the "Exception in SubnetWatcher.start()" (followed by series of tracebacks from test_kill_agent) normal?14:47
*** olaph has joined #openstack-infra14:48
neiljerramfungi, Yes, it is expected in those tests.14:48
sc`neiljerram: the job-output log suggests that things are choking in the 'pip freeze' stage http://logs.openstack.org/18/552518/5/gate/openstack-tox-py35/b174533/tox/py35-5.log14:48
neiljerramsc`, thanks, I'll look at that.14:48
sc`it referenced that log file as for what step was executing. my guess is that it's _test-requirements.txt not playing along14:49
fungisc`: if you're talking about the "Error when trying to get requirement for VCS system..." that's a benign warning from pip. clarkb has a pr up to make that nicer in future pip versions (if they ever review it)14:50
sc`ah14:50
AJaegerneiljerram: I'm concerend about http://logs.openstack.org/18/552518/5/gate/openstack-tox-py35/b174533/job-output.txt.gz#_2018-03-15_11_33_15_93183714:50
fungisc`: it14:50
AJaegerthe uninstalling.14:50
AJaegerI would remove "-U" from "pip install" - let me send a patch14:50
sc`fungi: good point. however, job-output suggests it's not the warning at fault14:50
fungisc`: er, it's just warning you that it can't include git url details in the pip freeze output14:50
*** jbadiapa has quit IRC14:50
fungisc`: neiljerram: my gut says the invocation error on "setup.py test --slowest --testr-args=" may be related to the stestr transition. mtreinish might have some ideas14:52
sc`that stood out as odd to me, and came to a similar point earlier14:52
neiljerramAJaeger, thanks for spotting that; I don't recall anything in that test's setup that is intentionally uninstalling anything...14:52
AJaegerneiljerram: it's a side effect of how we setup the job14:53
AJaegerneiljerram: and you not using constraints. Do you want to use constraints?14:53
sc`in retrospect, the invocation would be a good place to drill down on14:53
mtreinishfungi, sc`: I mean that's using the pbr testr entrypoint to run tests14:54
mtreinishstestr isn't really used there14:54
*** jtomasek_ has joined #openstack-infra14:54
mtreinishiirc that is being deprecated/removed from pbr at some point14:54
fungimtreinish: i was wondering whether it should be, but honestly don't know14:54
neiljerramfungi, yes, I wonder if I've missed a recommended new way of doing things; I checked in another networking-* project and found use of 'ostestr_compat_shim.sh' there - which networking-calico doesn't have14:54
mtreinishfungi: I mean everything should be moving to stestr14:54
*** dmellado has quit IRC14:54
*** dmellado_ is now known as dmellado14:54
*** cshastri has joined #openstack-infra14:54
mtreinishfungi: that's what we updated the PTI to say14:55
mtreinishhttps://governance.openstack.org/tc/reference/pti/python.html#python-test-running14:55
*** myoung|rover is now known as myoung|rover|brb14:56
neiljerrammtreinish, thanks, I'll check that doc and look at transitioning networking-calico accordingly14:56
*** eharney has quit IRC14:56
fungicool, i wasn't sure what that ended up looking like in job logs and honestly haven't been paying attention to the details of the transition patches14:56
AJaegerneiljerram:  https://review.openstack.org/55342514:56
*** eharney has joined #openstack-infra14:56
*** bobh has joined #openstack-infra14:57
sc`where is the partyparrot emoji when you need it?14:58
openstackgerritAlex Krzos proposed openstack-infra/grafyaml master: Add Custom Template Type  https://review.openstack.org/54430514:58
* fungi is the original partyparrot, but didn't know he had an emoji14:58
sc`RIP your eyes: http://cultofthepartyparrot.com/14:59
fungiit cannot be unseen14:59
sc`quite.15:00
*** felipemonteiro_ has quit IRC15:01
*** felipemonteiro_ has joined #openstack-infra15:01
mgagnewhich channel is the best place for support for the marketplace on openstack.org ?15:01
*** beagles is now known as beagles_food15:02
neiljerramAJaeger, thanks, will see how that does.  FYI the _test-requirements.txt naming dates back to https://git.openstack.org/cgit/openstack/networking-calico/commit/?id=05e2deb6cf74c6620df14108f65ef29acf658b3c, which was motivated at the time by a devstack/pip issue (https://bugs.launchpad.net/devstack/+bug/1540328)15:02
openstackLaunchpad bug 1540328 in Magnum UI "Devstack cannot install Horizon plugins using pip version > 8" [High,Fix released] - Assigned to Shu Muto (shu-mutou)15:02
clarkbhave we confirmed a no_log fixes the apache thing? just to be sure it is a bug with the no_log chnage?15:03
clarkb*have we confirmed removing no_log15:03
*** bobh has quit IRC15:03
*** annp has quit IRC15:03
AJaegerneiljerram: let's test it - this all looks strange...15:04
AJaegerneiljerram: with my change it should be just fine (just read the bug)15:04
neiljerramAJaeger, yep; I'll keep an eye and this and come back here if needed.15:05
*** jbadiapa has joined #openstack-infra15:06
*** dsariel has joined #openstack-infra15:06
*** bobh has joined #openstack-infra15:07
*** sree has joined #openstack-infra15:07
*** sree_ has joined #openstack-infra15:08
*** beagles_food is now known as beagles15:09
*** sree_ is now known as Guest641615:09
*** bobh has quit IRC15:09
*** bobh has joined #openstack-infra15:09
*** udesale has quit IRC15:10
*** olaph1 has joined #openstack-infra15:11
*** sree has quit IRC15:12
*** olaph has quit IRC15:12
*** tmorin1 has joined #openstack-infra15:13
*** r-daneel_ has joined #openstack-infra15:14
*** tmorin has quit IRC15:14
*** r-daneel has quit IRC15:14
*** r-daneel_ is now known as r-daneel15:14
*** stevebaker has joined #openstack-infra15:14
*** eernst has quit IRC15:15
*** krtaylor has quit IRC15:16
*** felipemonteiro__ has joined #openstack-infra15:17
*** armaan has joined #openstack-infra15:21
*** felipemonteiro_ has quit IRC15:21
*** yamamoto has joined #openstack-infra15:21
*** yamamoto has quit IRC15:27
mgagnewe would like to perform a 1h maintenance on inap-mtl01 region, would tonight be too early? API will be unavailable, existing instances will continue to work fine.15:28
mgagnetonight -> montreal timezone15:29
clarkbmgagne: that should be fine15:31
*** iyamahat has joined #openstack-infra15:31
mgagneis 6:00pm fine with you?15:32
pabelangertobiash: AJaeger: -1 on 553329 left a comment15:35
clarkbmgagne: ya that should be fine.15:35
*** dave-mccowan has joined #openstack-infra15:36
openstackgerritMerged openstack-infra/zuul master: Revert "Don't store references to secret objects from jobs"  https://review.openstack.org/55314715:37
*** myoung|rover|brb is now known as myoung|rover15:38
*** jtomasek_ has quit IRC15:39
*** lpetrut_ has joined #openstack-infra15:43
*** lpetrut has quit IRC15:43
*** yamahata has quit IRC15:43
*** kiennt26 has quit IRC15:44
*** iyamahat has quit IRC15:49
*** lpetrut_ has quit IRC15:49
*** agopi has joined #openstack-infra15:51
*** gongysh has joined #openstack-infra15:51
openstackgerritJames E. Blair proposed openstack-infra/zuul master: WIP: improve no_log test  https://review.openstack.org/55345015:53
*** kmalloc has joined #openstack-infra15:53
*** eernst has joined #openstack-infra15:53
*** mahatic has joined #openstack-infra15:53
*** agopi has quit IRC15:55
*** mahatic_ has joined #openstack-infra15:56
*** hamzy has quit IRC15:56
*** tosky has quit IRC15:57
*** dtruong_ has quit IRC15:58
*** dtruong has joined #openstack-infra15:58
*** mahatic has quit IRC15:59
*** ralonsoh_ has joined #openstack-infra16:01
openstackgerritJames E. Blair proposed openstack-infra/zuul master: WIP: improve no_log test  https://review.openstack.org/55345016:01
*** gfidente has quit IRC16:01
*** gfidente has joined #openstack-infra16:02
*** gfidente has joined #openstack-infra16:02
*** armaan has quit IRC16:02
*** florianf has quit IRC16:02
*** alexchadin has quit IRC16:03
*** armaan has joined #openstack-infra16:03
*** armaan has quit IRC16:03
*** harlowja has joined #openstack-infra16:03
*** armaan has joined #openstack-infra16:03
*** _alastor_ has joined #openstack-infra16:04
*** ralonsoh has quit IRC16:04
*** iyamahat has joined #openstack-infra16:05
*** armaan has quit IRC16:07
*** armaan has joined #openstack-infra16:08
*** gongysh has quit IRC16:08
fungimgagne: i don't know that the marketplace devs have any one particular venue in irc, but jamesmcarthur (who isn't in channel at the moment but tends to hang out in here regularly) can probably answer questions16:09
*** electrofelix has quit IRC16:11
*** alexchadin has joined #openstack-infra16:11
*** gfidente has quit IRC16:13
*** jcoufal has joined #openstack-infra16:14
*** gfidente has joined #openstack-infra16:14
*** gfidente has quit IRC16:14
*** gfidente has joined #openstack-infra16:14
*** jcoufal_ has quit IRC16:15
*** myoung|rover is now known as myoung|lunch16:15
*** kjackal has quit IRC16:18
*** Guest6416 has quit IRC16:20
*** sree has joined #openstack-infra16:20
*** jaosorior has quit IRC16:21
*** kjackal has joined #openstack-infra16:21
*** yamahata has joined #openstack-infra16:22
*** yamamoto has joined #openstack-infra16:23
clarkbyou can probably file an isse on the github for the www site?16:23
clarkber I guess they use lp16:24
clarkbbut ya that16:24
fungimgagne: yeah, https://bugs.launchpad.net/openstack-org/+filebug if you want to report a bug with it16:24
mtreinishfungi, clarkb: I've got a question, do you know why it says personal user here: https://www.openstack.org/summit/vancouver-2018/summit-schedule/speakers/10816:24
*** sree has quit IRC16:25
mtreinishwhile that's true for my openstack usage, it's not really my employer...16:25
fungimtreinish: maybe they meant "personable user"? ;)16:25
*** hongbin has joined #openstack-infra16:25
clarkbmtreinish: maybe thats part of your AUC status? eg run cloud for your personal use?16:25
fungii'll ask whether that's taken from your foundation member profile, foundation speaker profile, user survey, or what16:25
mtreinishI probably put that on the user survey16:26
mtreinishfor company, because the survey kinda assumes you use it at a company16:26
*** ykarel|away has joined #openstack-infra16:26
fungimtreinish: oh! https://www.openstack.org/community/members/profile/5714/matthew-treinish16:27
fungiyou have two current affiliations, one of which is "personal user"16:27
*** e0ne has quit IRC16:27
*** masber has joined #openstack-infra16:28
mtreinishoh, that would do it. I definitely didn't do that explicitly though. I wonder if it did that automagically from the user survey16:28
*** yamamoto has quit IRC16:29
fungii wouldn't be surprised16:29
clarkbboth are current though so the bug is probably not concatenating all current affiliations together on that page16:30
fungiyeah, it probably just takes the first one returned from its db query or something16:30
jlvillalgerritbot review request: https://review.openstack.org/#/c/545469/  Some cleanup/refactoring and adding unit tests. Thanks.16:35
*** ramishra has quit IRC16:38
*** andreas_s has quit IRC16:38
*** gongysh has joined #openstack-infra16:38
*** tosky has joined #openstack-infra16:39
*** gongysh has quit IRC16:39
*** mgoddard_ has joined #openstack-infra16:40
*** agopi has joined #openstack-infra16:40
*** andreas_s has joined #openstack-infra16:43
*** lpetrut has joined #openstack-infra16:43
*** myoung|lunch is now known as myoung|rover16:45
*** janki has quit IRC16:46
openstackgerritJames E. Blair proposed openstack-infra/zuul master: Fix no_log bug with result lists  https://review.openstack.org/55345016:46
*** efoley has quit IRC16:46
*** alexchadin has quit IRC16:48
*** gfidente has quit IRC16:51
*** ykarel|away has quit IRC16:52
*** andreas_s has quit IRC16:52
*** efoley has joined #openstack-infra16:52
*** wolverineav has joined #openstack-infra16:53
*** masber has quit IRC16:53
*** wolverineav has quit IRC16:53
*** gfidente has joined #openstack-infra16:53
*** gfidente has joined #openstack-infra16:53
*** wolverineav has joined #openstack-infra16:53
*** trown|ruck is now known as trown|lunch16:55
*** lpetrut has quit IRC16:57
*** dhajare has quit IRC16:57
*** dhajare has joined #openstack-infra16:58
*** dhajare has quit IRC16:58
*** olaph1 has quit IRC16:59
*** tmorin1 has quit IRC16:59
*** olaph has joined #openstack-infra17:00
*** lpetrut has joined #openstack-infra17:03
*** iyamahat_ has joined #openstack-infra17:04
*** eernst has quit IRC17:04
*** iyamahat has quit IRC17:04
*** panda is now known as panda|off17:05
*** ralonsoh__ has joined #openstack-infra17:06
*** eernst has joined #openstack-infra17:06
*** eernst has quit IRC17:07
*** eernst has joined #openstack-infra17:07
*** ykarel|away has joined #openstack-infra17:09
*** tosky has quit IRC17:09
*** ralonsoh_ has quit IRC17:09
*** harlowja has quit IRC17:09
*** jcoufal has quit IRC17:12
*** hamzy has joined #openstack-infra17:13
*** ykarel|away has quit IRC17:14
*** dtantsur is now known as dtantsur|afk17:15
openstackgerritMerged openstack-infra/zuul master: Fix no_log bug with result lists  https://review.openstack.org/55345017:15
*** mahatic_ has quit IRC17:16
*** ralonsoh__ has quit IRC17:16
*** hamzy_ has joined #openstack-infra17:16
clarkbcorvus: ^ executors need to be restarted but once that is done apache copying should be happy?17:17
*** armaan has quit IRC17:17
*** armaan has joined #openstack-infra17:18
*** gouthamr has quit IRC17:18
Shrewsclarkb: do they? it's a change to the ansible callback module, so i'd expect that to be picked up automatically17:18
*** gouthamr has joined #openstack-infra17:18
*** armaan has quit IRC17:19
Shrewsunless the executors copy them somewhere first on startup17:19
pabelangeryah, I think that is what happens17:19
Shrewsah17:19
*** hamzy has quit IRC17:19
*** armaan has joined #openstack-infra17:19
Shrews/ignore Shrews17:19
pabelangerI could be wrong :)17:20
*** dizquierdo has quit IRC17:21
pabelangerhttp://git.openstack.org/cgit/openstack-infra/zuul/tree/zuul/executor/server.py#n173017:22
pabelangerI think that is the code to copy them on startup17:22
clarkbya I think we had to restart them to pick up the initial fix17:23
pabelangerI can help out here in a few moments17:23
*** e0ne has joined #openstack-infra17:23
clarkbthe other change (revert of a config update) affects the scheduler which we never restarted to pick up in the first place so I think it is just the executors that we want to restart17:25
*** yamamoto has joined #openstack-infra17:25
*** felipemonteiro__ has quit IRC17:25
*** felipemonteiro__ has joined #openstack-infra17:26
corvusyep17:26
*** hamzy__ has joined #openstack-infra17:26
clarkbI'm going to check if the new code is installed on the executors now17:26
clarkbdoesn't look like it17:27
pabelangerokay, coffee obtained. What can I do?17:27
clarkbnext ansible will start in 3 minutes17:27
clarkbso probably easiest to just wait for that to start on its own rather than do it out of band17:28
clarkbthen in ~10 minutes we restart all of the executors17:28
*** agopi has quit IRC17:28
corvusi'm going to afk for a bit; i'll leave it to y'all17:28
corvusi've just been doing this:17:28
corvus 2018  2018-03-14T21:23:59+0000 sudo ansible -f 10 'ze*' -m shell -a 'systemctl stop zuul-executor'17:28
corvus 2019  2018-03-14T21:24:23+0000 sudo ansible -f 10 'ze*' -m shell -a 'ps aux|grep zuul-exec'17:28
corvus 2020  2018-03-14T21:31:55+0000 sudo ansible -f 10 'ze*' -m shell -a 'systemctl start zuul-executor'17:28
corvuswhere, obviously, the middle command is just me waiting for everything to die17:28
*** SumitNaiksatam has joined #openstack-infra17:29
*** hamzy_ has quit IRC17:29
pabelangerwfm17:30
*** yamamoto has quit IRC17:30
*** iyamahat_ has quit IRC17:31
Shrewswe could just do manual copies of the callback module from /opt/zuul/zuul/ansible/callback to /var/lib/zuul/ansible/zuul/ansible/callback and chown zuul:zuul17:31
Shrewswould be quicker17:31
*** iyamahat has joined #openstack-infra17:31
*** jlk` is now known as jlk17:31
clarkbI don't mind restarting and having zuul do it. Its probably an extra 10 minutes or so and this has been happening for over 12 hours now I think17:32
clarkb(and this way we are sure zuul is happy with it)17:33
Shrews*nod*17:33
*** krtaylor has joined #openstack-infra17:36
evrardjpIt would be nice if I could have some eyes on https://review.openstack.org/#/c/546678/  https://review.openstack.org/#/c/552861/ and https://review.openstack.org/#/c/553392/17:43
evrardjpadding new things!17:43
*** imacdonn has quit IRC17:44
clarkbpabelanger: ok I think git and pip updated on the executors but I am double checking it all before we start the restarts17:44
*** imacdonn has joined #openstack-infra17:44
fungiclarkb: we're approaching something like 22 hours at this point actually17:45
*** jamesmcarthur has joined #openstack-infra17:45
clarkbpbr freeze doesn't work with python3?17:45
fungiwas first noticed in jobs around 20:00z17:45
fungiclarkb: how are you running pbr freeze?17:46
clarkbfungi: just `pbr freeze | grep zuul` which is going to look at python2.17:46
pabelangerclarkb: yah, looks like it17:46
fungiyou likely need to `python3 -m pbr freeze` or something17:46
fungihrm, nope that doesn't seem to do it17:46
clarkb/usr/bin/python: No module named pbr.__main__; 'pbr' is a package and cannot be directly executed17:46
fungiyeah, that's what i got too17:47
clarkbI'm going to try run it under python3 interpreter as a command not module17:47
pabelangerhowever, does look like a little issue with puppet-zuul: http://paste.openstack.org/show/702017/17:47
*** shardy has quit IRC17:47
clarkbthat works17:47
pabelangercan push up a patch in a few moments17:47
fungiclarkb: yep, works17:47
fungi`python3 /usr/local/bin/pbr freeze` gets me what we want17:47
clarkbI confirm that zuul is updated to the correct version on all 10 executor nodes17:49
*** jpich has quit IRC17:49
clarkbI'm going to run corvus' command above to stop all of the executors now17:49
clarkbok they have all been told to stop. Now we wait for them to stop17:50
*** r-daneel_ has joined #openstack-infra17:50
*** cshastri has quit IRC17:51
*** r-daneel has quit IRC17:51
*** r-daneel_ is now known as r-daneel17:51
openstackgerritPaul Belanger proposed openstack-infra/puppet-zuul master: Fix Not removing directory; use 'force' to override  https://review.openstack.org/55350917:52
pabelangerclarkb: fungi: should clean up out zuul warnings^17:53
pabelangerfor puppet17:53
openstackgerritPaul Belanger proposed openstack-infra/puppet-zuul master: Fix Not removing directory; use 'force' to override  https://review.openstack.org/55350917:55
*** slaweq_ has quit IRC17:55
*** slaweq has joined #openstack-infra17:55
*** lucasagomes is now known as lucas-afk17:56
*** felipemonteiro_ has joined #openstack-infra17:57
clarkbstarting zuul executors again17:58
*** mgoddard_ has quit IRC17:58
clarkbalright we should be running with the fix in place now17:58
clarkbI guess we watch some jobs and once confirmed working status ok?17:58
fungisounds right17:59
*** felipemonteiro__ has quit IRC17:59
openstackgerritsebastian marcet proposed openstack-infra/openstackid-resources master: fixes wrong cast on location service for updatemap/image  https://review.openstack.org/55353917:59
fungiwatching openstack/nova 499612,7 at the top of the integrated gate since it's just started some tempest jobs18:00
fungithough given the failures were in the post phase, it'll take a while18:01
clarkbhttp://zuul.openstack.org/stream.html?uuid=8803465cd76446d6bf98c5603c08d586&logfile=console.log in particular should give us good feedback18:01
fungidid we know of any faster jobs exhibiting the same issues?18:01
pabelangerack18:01
clarkbfungi: no I think it was part of the devstack/tempest job config18:02
clarkbfungi: and not sure if any other jobs did the right set of steps to trip it18:02
fungiso we're not going to know right away18:02
*** trown|lunch is now known as trown|ruck18:02
*** zoli|wfh is now known as zoli|gone18:03
*** zoli|gone is now known as zoli18:03
*** derekh has quit IRC18:04
clarkbthe necessary combo was no_log with a list of items18:04
*** david-lyle has joined #openstack-infra18:05
*** iyamahat_ has joined #openstack-infra18:10
dmsimardWhen the dust has settled, I'd like to give a shot at merging and babysitting the logs-dev.o.o ara implementation18:10
*** iyamahat has quit IRC18:11
pabelangerdmsimard: sure, I can help support if needed18:13
dmsimardI'll reach out if it breaks something and I can't figure it out for sure, I just don't want to (potentially) break things in the middle of other broken things18:13
clarkbit should be fairly safe since logs.o.o is a separate vhost18:14
*** jpena is now known as jpena|off18:14
openstackgerritTrevor McCasland proposed openstack-infra/subunit2sql master: Add attachments flag to get_test_runs_by_status  https://review.openstack.org/55215218:15
dmsimardclarkb: yeah, the only thing I'm worried about is one of the python deps breaking os-loganalyze which is used for logs.o.o as well18:16
*** Adri2000 has quit IRC18:16
dmsimardI mean, I'm fairly confident it's not going to break things -- I'm just saying if something breaks, it's probably that.18:16
*** Adri2000 has joined #openstack-infra18:18
*** harlowja has joined #openstack-infra18:20
*** alexchadin has joined #openstack-infra18:21
*** yamamoto has joined #openstack-infra18:27
*** david-lyle has quit IRC18:29
*** wolverineav has quit IRC18:31
*** wolverineav has joined #openstack-infra18:31
*** yamamoto has quit IRC18:33
*** david-lyle has joined #openstack-infra18:33
*** rossella_s has quit IRC18:33
*** rossella_s has joined #openstack-infra18:34
*** wolverineav has quit IRC18:35
*** wolverineav has joined #openstack-infra18:37
*** david-lyle has quit IRC18:37
*** andreww has joined #openstack-infra18:37
*** SumitNaiksatam has quit IRC18:38
*** tesseract has quit IRC18:39
*** mgoddard_ has joined #openstack-infra18:39
*** xarses_ has quit IRC18:41
*** felipemonteiro_ has quit IRC18:42
*** felipemonteiro has joined #openstack-infra18:42
*** mgoddard_ has left #openstack-infra18:43
*** felipemonteiro_ has joined #openstack-infra18:43
*** alexchadin has quit IRC18:44
*** felipemonteiro has quit IRC18:47
*** signed8bit is now known as signed8bit_Zzz18:50
mriedemare we ok to recheck things yet?18:51
corvusmriedem: we think, but we're waiting for confirmation18:51
corvus(confirmation takes the form of a completed tempest run)18:51
corvusif you're in a hurry, feel free to play the odds :)18:52
*** e0ne has quit IRC18:55
fungihttp://zuul.openstack.org/stream.html?uuid=78bb7955041149d68ac623d89cef1dd0&logfile=console.log looks like it _could_ be nearing completion18:56
*** beagles is now known as beagles|biab18:57
funginot sure if the legacy tempest jobs were affected or just the new-style18:57
*** jamesmcarthur has quit IRC18:58
*** sshnaidm is now known as sshnaidm|afk18:58
corvushttp://zuul.openstack.org/stream.html?uuid=8803465cd76446d6bf98c5603c08d586&logfile=console.log is finishing18:58
*** jamesmcarthur has joined #openstack-infra18:58
*** jamesmcarthur has quit IRC18:59
*** jamesmcarthur has joined #openstack-infra19:00
AJaegerfungi: the new style were affected for sure - and might be the only ones19:01
*** dizquierdo has joined #openstack-infra19:01
clarkbya I think just new style19:01
*** olaph1 has joined #openstack-infra19:02
*** olaph has quit IRC19:03
*** esberglu has quit IRC19:07
*** efoley_ has joined #openstack-infra19:08
*** efoley has quit IRC19:08
*** jamesdenton has quit IRC19:08
fungithe tempest-full-py3 run just failed19:09
*** esberglu has joined #openstack-infra19:09
fricklerthis looks successful http://logs.openstack.org/56/522556/11/check/horizon-dsvm-tempest-plugin/181c664/job-output.txt.gz19:10
fungiyeah, it looks like the failure i saw wasn't post phase19:10
fungiwas an actual tempest test failing19:11
fungi(two tempest tests failing, actually)19:11
fungiwhich, for our purposes, is still a success19:11
*** esberglu_ has joined #openstack-infra19:12
fungiand yeah, the one frickler found seems to have succeeded at 18:34z which is well after we restarted the executors19:12
openstackgerritFabien Boucher proposed openstack-infra/zuul master: Make Zuul able to start with a broken config  https://review.openstack.org/53551119:13
openstackgerritFabien Boucher proposed openstack-infra/zuul master: Make Zuul able to start with a broken config  https://review.openstack.org/53551119:13
*** gfidente has quit IRC19:13
fungithat horizon-dsvm-tempest-plugin run seems to have finished quickly because the job only runs 1 tempest test ;)19:14
*** pblaho has quit IRC19:14
fungi"Ran: 1 tests in 14.0000 sec."19:14
*** esberglu has quit IRC19:14
fungitempest_horizon.tests.scenario.test_dashboard_basic_ops.TestDashboardBasicOps.test_basic_scenario19:14
*** efoley_ is now known as efoley19:14
fricklernova is also fine http://logs.openstack.org/22/532822/1/check/tempest-full-py3/2b48e1c/19:14
clarkbsounds like it works then19:15
pabelangeryay19:15
*** Swanson has joined #openstack-infra19:16
*** david-lyle has joined #openstack-infra19:17
openstackgerritFabien Boucher proposed openstack-infra/zuul master: Make Zuul able to start with a broken config  https://review.openstack.org/53551119:18
fungiso... #status ok The regression stemming from one of yesterdays Zuul security fixes has been rectified, and Devstack/Tempest jobs which encountered POST_FAILURE results over the past 24 hours can safely be rechecked now19:18
fungilgty?19:18
dmsimardlgtm19:18
fungiyesterday's19:18
*** hemna_ has joined #openstack-infra19:18
dmsimardindeed19:18
*** signed8bit_Zzz is now known as signed8bit19:19
clarkbyup lgtm19:21
fungi#status ok The regression stemming from one of yesterday's Zuul security fixes has been rectified, and Devstack/Tempest jobs which encountered POST_FAILURE results over the past 24 hours can safely be rechecked now19:21
openstackstatusfungi: sending ok19:21
*** 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/"19:24
-openstackstatus- NOTICE: The regression stemming from one of yesterday's Zuul security fixes has been rectified, and Devstack/Tempest jobs which encountered POST_FAILURE results over the past 24 hours can safely be rechecked now19:24
*** hongbin has quit IRC19:25
*** hongbin has joined #openstack-infra19:26
openstackstatusfungi: finished sending ok19:28
*** yamamoto has joined #openstack-infra19:29
*** frickler has quit IRC19:29
*** diablo_rojo_ has quit IRC19:30
*** diablo_rojo has joined #openstack-infra19:30
*** frickler has joined #openstack-infra19:30
*** yamamoto has quit IRC19:33
fungimriedem: ^ since you were asking recently19:34
mriedemyeah i saw it, thanks19:34
*** jbadiapa has quit IRC19:34
* fungi needs to go find some food, then file more expense reports19:35
clarkbI've grown a rather troublesome headache19:35
clarkbI'll probably pay attention to make sure there aren't other things I can help with like restarting executors but otherwise going to find a quiet place19:35
fungiconstruction noise and shaking hasn't subsided, i guess19:36
clarkbthey've actually been quiet today thankfully otehrwise this would likely be worse19:36
*** jamesmcarthur has quit IRC19:36
*** jamesmcarthur has joined #openstack-infra19:37
*** jamesmcarthur has quit IRC19:38
*** jamesmcarthur has joined #openstack-infra19:38
*** felipemonteiro_ has quit IRC19:40
*** felipemonteiro_ has joined #openstack-infra19:40
*** beagles|biab is now known as beagles19:42
dmsimardinfra-root: I'll merge the ara sqlite middleware work for logs-dev now that everything is back to normal and I'll monitor things. For reference: https://review.openstack.org/#/q/topic:ara-sqlite-middleware19:42
dmsimardhmm, having another look at https://review.openstack.org/#/c/513874/, I'll split that out to a new role which probably makes sense and is also less prone to unexpectedly breaking the base job due to emit-ara-html not being tested.19:44
*** olaph has joined #openstack-infra19:45
*** olaph1 has quit IRC19:48
fungiokay, heading out to find food, back in a while19:50
*** dave-mccowan has quit IRC19:53
*** dprince has quit IRC19:56
*** eharney has quit IRC20:02
openstackgerritMerged openstack-infra/puppet-openstackci master: Add support for installing ARA wsgi middleware for sqlite databases  https://review.openstack.org/51386620:05
openstackgerritJames E. Blair proposed openstack-infra/zuul master: Expand secret inheritance test  https://review.openstack.org/55359520:06
openstackgerritJames E. Blair proposed openstack-infra/zuul master: Don't store references to secret objects from jobs  https://review.openstack.org/55359620:06
*** lpetrut has quit IRC20:06
*** dsariel has quit IRC20:07
SwansonIf I did a recheck while zuul was in the wilderness and everything is currently queued will it be run or should I recheck again?20:08
*** rlandy is now known as rlandy|afk20:09
openstackgerritJames E. Blair proposed openstack-infra/zuul master: Expand secret inheritance test  https://review.openstack.org/55359520:11
openstackgerritJames E. Blair proposed openstack-infra/zuul master: Don't store references to secret objects from jobs  https://review.openstack.org/55359620:11
*** dave-mccowan has joined #openstack-infra20:11
corvusSwanson: no need to recheck again20:12
*** iyamahat_ has quit IRC20:13
Swansoncorvus, thanks!20:15
openstackgerritMerged openstack-infra/openstackid-resources master: fixes wrong cast on location service for updatemap/image  https://review.openstack.org/55353920:17
openstackgerritJames E. Blair proposed openstack-infra/zuul master: Perform late validation of secrets  https://review.openstack.org/55304120:17
openstackgerritJames E. Blair proposed openstack-infra/zuul master: Perform late validation of nodesets  https://review.openstack.org/55308820:17
ianwfrickler: did you fix the backup job on zuul01? if not i'll look at today20:22
openstackgerritMerged openstack-infra/system-config master: Enable and configure the ara middleware for logs-dev.o.o  https://review.openstack.org/51386820:25
*** yamamoto has joined #openstack-infra20:29
*** dkehn has joined #openstack-infra20:31
AJaegerconfig-core, if you have some spare cycles, please go over the config repos and review and approve open changes. We have again a long backlog20:33
dmsimardAJaeger: good to see you around, I wanted to have your opinion on something because I was conflicted20:33
AJaegerdmsimard: sure20:34
dmsimardAJaeger: I feel like https://review.openstack.org/#/c/513874/ should probably be split to another role because it has nothing to do about emitting html, what do you think ?20:34
AJaegerpuuuh, tough one20:35
*** yamamoto has quit IRC20:35
AJaegershould we rename the role?20:36
AJaegerIf we split it up, wouldn't there be much duplication?20:36
*** kgiusti has left #openstack-infra20:37
*** LinuxJedi has joined #openstack-infra20:37
AJaegerwe use emit-ara-html only in project-config currently, so could rename it.20:37
AJaegerthinking loud: Do we need both output formats? Or could we just switch over to the new one and remove html - and rename?20:38
AJaegerdmsimard: no good answers from me for today ;)20:39
dmsimardAJaeger: if it wasn't so complicated (considering trusted, no testing and it can break everything -- including external zuuls) I would probably rename the role to something like "upload-ara-report" which would default to generating the html report but could also be toggled to upload the database instead20:40
dmsimardYou kind of bring a good question and my brain is kind of too tired to be thinking about it right now20:41
dmsimardRenaming or removing roles from zuul-jobs sounds like a bad idea since we can't tell if people outside are using them20:41
*** jamesmcarthur has quit IRC20:41
dmsimardcorvus: do you have any thoughts on ^20:42
corvusdmsimard: yes, do it slowly with notification20:42
dmsimardcorvus: as in, zuul-announce ?20:42
dmsimardcorvus: I suppose if we add a deprecation notice in the role it would probably go unnoticed20:42
corvusdmsimard: it sounds like in this case, if anyone is using them in a job outside of zuul-jobs, it's probably an easy fix.  so i don't think the deprecation period would need to be too long.  maybe 4-6 weeks or something.20:45
corvusdmsimard: however, i don't think we need to observe even that until we've made the v3 release.20:46
corvusgive it maybe a week?20:46
dmsimardcorvus: that's fair. I wonder how we could make a deprecation obvious though ?20:46
pabelangerdmsimard: ianw: clarkb: what are the next steps for linestone cloud?20:47
corvusdmsimard: i think it's entirely reasonable for someone using zuul-jobs in a CD manner to follow the announce mailing list.20:47
dmsimardI mean, we could add in a debug warning message and then a 1 minute pause, I dunno.20:47
corvusdmsimard: we could use zuul_return to plumb warning messages all the way back to the reporter.20:48
dmsimardpabelanger: I'm waiting on https://review.openstack.org/#/q/topic:add-limestone before standing up the afs mirror20:48
dmsimardcorvus: oh, that's clever20:48
pabelangerdmsimard: looks like first one has 2 +2, so I think you +3 that yourself. I've +2'd the others20:49
pabelangerdmsimard: you could add the nodepool clouds.yaml changes and start the image upload process too20:50
pabelangerin nodepool.yaml20:50
dmsimardpabelanger: I'm babysitting the ara middleware patches right now, I'll put limestone next on my list20:50
pabelangerokay, how many nodes will we get from that cloud?20:51
dmsimardpabelanger: I'm not sure, actually.20:51
dmsimardlogan-: ^ how many VMs are we looking at ?20:51
pabelangerlooks like ovh-bhs1 is having some issue20:52
logan-should be enough capacity there for 60 or so, should not be a big deal to double+ that as we get it up and running20:52
*** dave-mccowan has quit IRC20:53
dmsimardlogan-: that's awesome, thanks a lot :)20:53
*** iyamahat has joined #openstack-infra20:53
dmsimardlogan-: I'll ping you before we open the floodgates, should we settle for 50 to begin with ?20:53
logan-yup sounds good20:53
dmsimardack20:53
logan-i think i need to create a flavor with the exact nodepool specs20:53
dmsimardlogan-: indeed, there was some default flavors that didn't match the nodepool specs20:54
logan-yea let me do that real quick20:54
dmsimardthanks!20:54
logan-4vcpu/8gb/80gb right?20:54
*** hashar has joined #openstack-infra20:54
pabelangerhttps://docs.openstack.org/infra/manual/testing.html20:55
pabelangerI think rax has 8VCPu20:55
pabelangerbut depending on cloud, I think you could try with 4vcpu20:55
logan-ah yep https://docs.openstack.org/infra/system-config/contribute-cloud.html 8vcpu on here20:56
logan-that works20:56
*** eernst has quit IRC20:56
logan-it is dedicated hardware, makes no difference to me :)20:56
pabelangeryah, real metric is devstack so, depending on oversubscribe, i think it could be tweaked20:56
logan-yup can gauge load and adjust node count as we get some load on there :)20:57
logan-nodepool.0 flavor exists now20:57
pabelangercool20:57
pabelangerOVH-BHS1 looks to be having message bus issues20:57
*** sree has joined #openstack-infra20:58
*** trown|ruck is now known as trown|outtypewww20:59
*** armaan has quit IRC21:00
*** armaan has joined #openstack-infra21:00
*** armaan has quit IRC21:00
*** armaan has joined #openstack-infra21:01
*** sree has quit IRC21:02
*** edmondsw has quit IRC21:02
ianwpabelanger: so the new xenial-based mirror-update has managed to corrupt itself in similar ways to the old version.  i'm going to try the openafs client upgrade soon21:05
logan-dmsimard: btw ping me specs if you need any different flavor specs for the mirror or any other non-nodepool stuff21:06
pabelangerianw: k21:07
dmsimardlogan-: wfm21:07
pabelangerianw: did you want to look at https://review.openstack.org/#/q/topic:add-limestone again to help bring the cloud online?21:07
*** efoley has quit IRC21:08
*** myoung|rover is now known as myoung|afk21:12
pabelangercorvus: looks like you have a held node for programoutput bug, can that be cleaned up?21:12
ianwpabelanger / dmsimard : i'm fine with it all.  lmn i can make some time today to bring bits of it up if we like21:12
pabelangerclarkb helping slaweq debug networking issues, is also a held node. Do you need that any more?21:12
pabelangermordred osc job breakage, same question about held node. Can it be deleted?21:13
clarkbpabelanger: I want to say the issue got sorted out and instance can go away21:13
*** ldnunes has quit IRC21:15
corvuspabelanger: yep21:18
*** jamesmcarthur has joined #openstack-infra21:19
fungipabelanger: note that i expect mordred is probably still on a beach consuming beverages with unnecessary tiny umbrellas until tomorrow21:20
corvussurely they are not unecessary21:21
fungihe hasn't broken radio silence (according to freenode) for some 80+ hours21:21
fungicorvus: fair, i didn't consider the aesthetics of the beverage21:21
corvusfungi: without the umbrellas, they're just booze21:22
fungialso, they keep the booze from getting diluted in a spontaneous shower21:22
corvusthese are problems in tropical paradise21:23
*** r-daneel_ has joined #openstack-infra21:23
corvusi like pina coladas and getting caught in the rain, but i do not like my pina coladas getting caught in the rain21:24
slaweqpabelanger: clarkb: yes, I already found and solve problem which we had, thx once again for help then :)21:24
*** r-daneel has quit IRC21:24
*** r-daneel_ is now known as r-daneel21:24
slaweqif this instance is stil there You can remove it any time21:24
*** rossella_s has quit IRC21:25
fungicorvus: got it, jimmy buffet does indeed make a fine case for necessary tiny umbrellas21:26
*** rossella_s has joined #openstack-infra21:28
*** mikal_ has joined #openstack-infra21:30
*** yamamoto has joined #openstack-infra21:31
openstackgerritFabien Boucher proposed openstack-infra/zuul master: Make Zuul able to start with a broken config  https://review.openstack.org/53551121:32
*** mikal has quit IRC21:32
*** cgoncalves has quit IRC21:34
pabelangerack, cleaning up nodes, minus mordred21:36
*** yamamoto has quit IRC21:36
*** efoley has joined #openstack-infra21:39
*** hashar has quit IRC21:39
*** dave-mccowan has joined #openstack-infra21:39
*** Goneri has quit IRC21:39
*** r-daneel_ has joined #openstack-infra21:41
*** r-daneel has quit IRC21:41
*** r-daneel_ is now known as r-daneel21:41
openstackgerritJames E. Blair proposed openstack-infra/zuul master: WIP: late bind pipelines  https://review.openstack.org/55361821:41
*** esberglu_ has quit IRC21:41
openstackgerritErik Olof Gunnar Andersson proposed openstack-infra/project-config master: Add horizon to required-projects  https://review.openstack.org/55361921:42
*** esberglu has joined #openstack-infra21:44
*** felipemonteiro__ has joined #openstack-infra21:45
*** esberglu_ has joined #openstack-infra21:45
*** jtomasek has quit IRC21:46
openstackgerritErik Olof Gunnar Andersson proposed openstack-infra/project-config master: Add horizon to required-projects  https://review.openstack.org/55361921:47
*** eernst has joined #openstack-infra21:48
*** esberglu has quit IRC21:48
*** felipemonteiro_ has quit IRC21:49
*** esberglu_ has quit IRC21:50
openstackgerritMerged openstack-dev/pbr master: Updated from global requirements  https://review.openstack.org/55144821:52
adriantjust to make sure I'm not going insane, does zuul do anything clever about figuring out what tests to run?21:53
adriantlike, I did a change that was purely docs, and it only ran pep821:53
*** bobh has quit IRC21:53
adriantand now rebasing another it did run the full suite of tests21:53
*** mikal_ is now known as mikal21:55
*** bobh has joined #openstack-infra21:56
fungiadriant: some of the standard jobs come with a set of file exclusions21:56
adriantfungi: oh cool :)21:56
*** jamesmcarthur has quit IRC21:57
fungiadriant: for example, the irrelevant-files pattern set in this job: https://git.openstack.org/cgit/openstack-infra/openstack-zuul-jobs/tree/zuul.d/jobs.yaml#n29421:58
fungisays if the change in question is only modifying files matching one or more of those patterns, then there's no need to run that particular job21:59
adriantfungi: yep, that would be it, the change was purely rst and in the docs folder :P21:59
openstackgerritDavid Moreau Simard proposed openstack-infra/zuul-jobs master: Refactor "emit-ara-html" into a new role: "ara-report"  https://review.openstack.org/51387421:59
openstackgerritErik Olof Gunnar Andersson proposed openstack-infra/project-config master: Add horizon to required-projects  https://review.openstack.org/55362121:59
*** bobh has quit IRC21:59
dmsimardpabelanger, AJaeger: ^ I took the "safe" route22:01
openstackgerritErik Olof Gunnar Andersson proposed openstack-infra/project-config master: Add horizon to required-projects  https://review.openstack.org/55362122:01
openstackgerritErik Olof Gunnar Andersson proposed openstack-infra/project-config master: Add horizon to required-projects  https://review.openstack.org/55362122:02
*** danpawlik has joined #openstack-infra22:02
*** rcernin has joined #openstack-infra22:02
*** danpawlik has quit IRC22:02
*** rlandy|afk is now known as rlandy22:02
mgagnemaintenance is starting now on inap-mtl0122:05
fungithanks for the heads up, mgagne!22:06
*** masber has joined #openstack-infra22:09
*** tosky has joined #openstack-infra22:13
*** gouthamr has quit IRC22:16
*** claudiub|2 has quit IRC22:20
openstackgerritErik Olof Gunnar Andersson proposed openstack-infra/project-config master: Add horizon to required-projects  https://review.openstack.org/55362322:24
ianwhmm, the bandersnatch mirror is now failing, with extremely unhelpful logging output; i.e. none22:27
*** felipemonteiro__ has quit IRC22:27
fungioh?22:28
ianwhttp://paste.openstack.org/show/702291/22:28
fungiyeah. i just pulled up the log myself22:29
fungithat one's on us. it's a traceback coming from our wrapper script22:29
fungiand i suspect its eating the stderr from bandersnatch22:30
*** hemna_ has quit IRC22:30
*** armaan has quit IRC22:31
fungiit does seem to redirect stderr=subprocess.STDOUT there, at least22:32
fungiso maybe bandersnatch is emitting detail on a different fd than stderr22:32
*** yamamoto has joined #openstack-infra22:32
fungioh, or we're just not writing it out because we bail early on the non-zero exit status22:33
fungiwe should probably wrap that subprocess.check_output() call in some exception handling so we can clean up and emit what we logged22:34
fungiianw: yeah, looking more closely at /usr/local/bin/run-bandersnatch i'm pretty sure that's why we logged nothing helpful there22:35
ianwhmm, we should probably use the iterator approach and wait() for the process, rather than check_output?22:36
ianwpabelanger: and in other news22:37
ianwdeleting and forgetting pool/main/t/texlive-base/texlive-base_2017.20180305-1_all.deb22:37
ianwUnable to forget unknown filekey 'pool/main/t/texlive-base/texlive-base_2017.20180305-1_all.deb'.22:37
ianwyou ever seen that one before?22:37
ianwi'm starting to think maybe we shoudl just move mirror-update onto the afs rw volume server22:37
*** yamamoto has quit IRC22:38
openstackgerritErik Olof Gunnar Andersson proposed openstack-infra/project-config master: Add horizon to required-projects  https://review.openstack.org/55362522:40
openstackgerritIan Wienand proposed openstack-infra/puppet-bandersnatch master: Catch subprocess output and print  https://review.openstack.org/55362622:41
ianwfungi: ^ simple thing, i'll put it in manually for now22:41
openstackgerritMerged openstack-infra/system-config master: Install the limestone cacert  https://review.openstack.org/55270622:41
fungilmk if it works when you try it there and i'll just approve22:41
*** jamesmcarthur has joined #openstack-infra22:42
*** Goneri has joined #openstack-infra22:42
ianwcool just running by hand now, i think it takes a bit to fail22:43
fungiadded some notes to the change. easiest is to probably just add a raise call in the exception handler22:45
fungito reraise the exception22:45
openstackgerritErik Olof Gunnar Andersson proposed openstack-infra/project-config master: Add horizon to required-projects  https://review.openstack.org/55362722:45
ianwindeed, otherwise you get UnboundLocalError: local variable 'output' referenced before assignment :)22:46
openstackgerritMerged openstack-infra/system-config master: Add Limestone credentials to *clouds.yaml  https://review.openstack.org/55270722:46
ianwfungi the human python parser22:46
fungii've been called worse, i suppose22:47
ianwfungi: well, it seems to fail for no discernible reason -> http://paste.openstack.org/show/702311/22:48
*** dave-mccowan has quit IRC22:48
ianwmaybe we're not catching all of stderr here22:48
fungiyeah, could be buffered and need to iterate?22:49
clarkbianw: re mirror update moving I take it the current trouble is with updated packages?22:50
fungiianw: do you think it's worked correctly since the server rebuild?22:50
*** hongbin has quit IRC22:50
ianwfungi: no i don't think so22:51
fungidid we perhaps end up with a newer bandersnatch?22:51
fungii see latest release requires puthon 3.522:52
ianwthe new one is python3 only22:52
fungipython 3.5 too22:52
fungiyeah22:52
ianwi feel like i have changes out about updating that22:52
*** olaph1 has joined #openstack-infra22:52
fungiseems like maybe we only did ensure=>present instead of ensure=>latest22:52
fungichecking22:52
ianwsigh, no --version flag22:53
fungibandersnatch==1.11 installed under python222:53
*** olaph has quit IRC22:53
*** salv-orl_ has quit IRC22:53
*** salv-orlando has joined #openstack-infra22:54
fungi2.1.3 is latest on pypi22:54
fungii _think_ i had a backported patch of mine applied to the one on the old server which ended up only landing upstream after they decided to drop python 2 support22:55
ianwyeah, iirc they have merged our changes, we just never got around to updated22:55
fungia patch which "fixed" an incorrect exit code22:55
fungiwhich would entirely explain what you're seeing now22:55
*** diablo_rojo has quit IRC22:56
ianwindeed ... the old server is there, just turned off22:56
fungiyeah, the entrypoint wrapper does a sys.exit(main()) and main() ends in "return config"22:57
ianwseeing as we've got this far, should we just look at updating?22:57
fungiso it's exiting with a ConfigParser.ConfigParser object coerced into an int, which most assuredly isn't 022:57
*** signed8b_ has joined #openstack-infra22:58
*** signed8b_ has quit IRC22:58
*** salv-orlando has quit IRC22:59
openstackgerritIan Wienand proposed openstack-infra/puppet-bandersnatch master: Catch subprocess output and print  https://review.openstack.org/55362622:59
ianwoh, i really don't want to deal with python3-ifying the puppet right now i guess23:00
fungilooks like my pr was https://bitbucket.org/pypa/bandersnatch/pull-requests/23/fix-67-stop-returning-config-from-main/diff which they ignored for ages and then basically recreated in main without merging mine23:00
*** signed8bit has quit IRC23:01
fungibasically, strip the "return config" line from the end of /usr/local/lib/python2.7/dist-packages/bandersnatch/main.py23:01
fungiand things will work just fine23:01
*** masber has quit IRC23:02
fungiuntil we py3kify the configuration manglement or rebuild the server again23:02
ianwok, trying again with fungi patch23:03
fungimy most ingenious patches involve deleting a line of code at random23:03
fungior perhaps i meant ingenuous23:04
*** adarazs has quit IRC23:04
mgagnemaintenance is completed in inap-mtl01. I see new nodes being built, lets see how it goes23:05
fungithe timeline of comments on https://bitbucket.org/pypa/bandersnatch/issues/67 makes me feel marginally better about our numerous neglected projects23:05
*** adarazs has joined #openstack-infra23:06
fungithanks again mgagne!23:06
ianwyay!  releasing new volume23:06
*** ihrachys has quit IRC23:06
*** olaph has joined #openstack-infra23:08
*** olaph1 has quit IRC23:09
*** diablo_rojo has joined #openstack-infra23:10
mgagneare there logs for nodepool? just want to make sure there are no problem23:11
*** tellesnobrega has quit IRC23:11
mgagnebecause there are a bunch of VMs in BUILD state being deleted23:11
*** dhill_ has quit IRC23:11
mgagnemaybe a timeout due to the number of VMs being created at the same time?23:11
mgagnehow I perceive Nodepool right now =) https://i.imgur.com/jZVbrGU.gifv23:12
*** olaph1 has joined #openstack-infra23:16
fungiit's too bad we ended u with liberty instead of lemming for our l release23:16
fungii'll skim the logs23:16
*** olaph has quit IRC23:17
fungimy guess, like yours, is that we ended up making too many simultaneous boot calls, many of which didn't respond in a timely fashion, so we issued deletes for those and started to boot replacements23:18
corvusthat's actually our original design document for nodepool23:18
fungihah23:18
mgagneoh well23:18
fungilooks like nl03 is the one i want23:19
fungithat's nodepool lemming 03 for those who didn't know23:19
fungiyeah, logging quite a few "Timeout waiting for server..."23:20
mgagneok so it "should" solve by itself over time23:20
fungion deletion calls but also23:20
fungi"Timeout waiting for the server to come up."23:20
fungiso, yes, i expect it will settle down to a steady state here momentarily23:21
fungilooks like it's mostly just retried server delete calls it's complaining about timeouts for now23:25
corvusit looks like most of the change is building -> deleting... are the deletions taking a while?23:25
mgagneyea, checking that23:25
*** yamamoto has joined #openstack-infra23:27
*** hamzy__ has quit IRC23:29
*** HeOS has quit IRC23:33
fungistill seeing plenty of deletion timeouts and the occasional boot timeout23:34
*** aeng has joined #openstack-infra23:34
*** rcernin has quit IRC23:39
*** HeOS has joined #openstack-infra23:41
openstackgerritfumihiko kakuma proposed openstack-infra/project-config master: Update neutron-dynamic-routing grafana  https://review.openstack.org/55363523:44
*** tellesnobrega has joined #openstack-infra23:44
pabelangerianw: you should be able to manually forget entries. I've done that in the past.23:45
ianwpabelanger: yeah, it won't forget these for some reason.  i've re-downloaded the files, _detected them, and trying again23:49
*** olaph has joined #openstack-infra23:51
*** olaph1 has quit IRC23:51
*** salv-orlando has joined #openstack-infra23:54
*** olaph1 has joined #openstack-infra23:55
pabelangerianw: maybe copy the ro database over and redetect?23:55
ianwreally trying to avoid that, it's 6+ hours worth :/23:56
pabelangeryah, I think it might be worth to split 1 release per database in reprepro, to make recover time faster23:57
*** olaph has quit IRC23:57
*** olaph1 is now known as olaph23:58
*** david-lyle has quit IRC23:59
*** salv-orlando has quit IRC23:59

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