*** lucas-dinner has quit IRC | 00:01 | |
*** markmc has quit IRC | 00:09 | |
tchaypo | okay | 00:14 |
---|---|---|
*** markmc has joined #tripleo | 00:14 | |
tchaypo | lifeless: devtest_overcloud.sh was failing because it only waits 60s for all the nodes to be available; once I increased the timeout it's now up to wait_for_stack_ready | 00:15 |
tchaypo | so I'm not yet entirely certain that the undercloud is being built correctly, but it at least seems good enough to be able to deploy an overcloud | 00:15 |
*** marun has quit IRC | 00:15 | |
tchaypo | so now I'll look at the script i should actually be using in the element and see about getting that working | 00:16 |
cinerama | tchaypo: i added some stuff to the newdev lubrication thing if you're interested | 00:19 |
*** jcoufal has quit IRC | 00:22 | |
lifeless | tchaypo: cool; you might want to push up a patch for that timeout ;) | 00:26 |
lifeless | tchaypo: and/or file a bug on performance in ironic | 00:26 |
*** marun has joined #tripleo | 00:33 | |
*** marun has quit IRC | 00:33 | |
tchaypo | cinerama: I added a link to a related bug as well :) | 00:34 |
tchaypo | lifeless: sure, I'll just add a new env var called OVERCLOUD_NODE_CREATE_TIMEOUT | 00:34 |
tchaypo | ;) | 00:34 |
tchaypo | cinerama: btw, working on the CD clouds I've discoved a thing called prep_source_repos | 00:35 |
tchaypo | cinerama: the intended use is to apply a local series of patches before building a cloud, so that you can keep local state, or try out unmerged patches | 00:36 |
cinerama | excellent | 00:37 |
cinerama | i'm kind of thinking that assembling some tips like that somewhere would be a good thing | 00:37 |
lifeless | nuts | 00:37 |
lifeless | whats that shell thing to arbitraryily break things into fields | 00:37 |
*** marun has joined #tripleo | 00:37 | |
tchaypo | but I think it has some use for devs more generally too; the etherpad suggests "write out commit ids of the various repos so devs can easily revert"; this wouldn't do the former but it would help do the reset; and if it's extended to also be able to reset to a clean upstream state.. | 00:38 |
tchaypo | although i think we have a thing in incubator that does something similar already | 00:38 |
tchaypo | lifeless: awk? | 00:39 |
lifeless | tchaypo: the incubator thing cannot combine reviews | 00:39 |
lifeless | tchaypo: thats what tripleo-end-to-end does | 00:39 |
tchaypo | lifeless: maybe some tweaking of IFS? | 00:39 |
lifeless | tchaypo: I put up a spec proposing we integrate this more cleanly | 00:39 |
*** gary7ny has quit IRC | 00:40 | |
tchaypo | lifeless: yeah, and I think most devs probably don't need to combine reviews often - most of the time they want to "reset everything to upstream", sometimes they want to "Apply my patch in t-i-e and the related patch in t-h-t" | 00:40 |
lifeless | tchaypo: I think you're wrong :) | 00:40 |
tchaypo | lifeless: if I'm wrong, prep-source-repos is probably more useful than I think it is :) | 00:41 |
tchaypo | wrt "arbitrarily break things into fields", can you expand on what you've got an what you want? | 00:41 |
lifeless | I have 0.1-7-g123123 | 00:41 |
lifeless | I want 0.1 | 00:41 |
lifeless | I was crafting a sed express | 00:42 |
lifeless | sed -e 's/^\([^-]\)+.*$/\1/' | 00:42 |
lifeless | but enotrightyet | 00:42 |
*** marun has quit IRC | 00:42 | |
lifeless | I might also have | 00:42 |
lifeless | 0.1 and want 0.1 | 00:42 |
lifeless | tchaypo: so data to consider for prep-source-repos popularity. | 00:42 |
lifeless | tchaypo: a) how often do you see a stack of patches that don't actually need to be stacked | 00:43 |
lifeless | tchaypo: b) ever had the experience of e.g. nova being broken and we need to carry a fix | 00:43 |
tchaypo | stack@bastion:/home/shared$ echo $VERSION_STRING | 00:45 |
tchaypo | 0.1-70g123123 | 00:45 |
tchaypo | stack@bastion:/home/shared$ echo $VERSION_STRING | cut -f 1 -d \- | 00:45 |
tchaypo | 0.1 | 00:45 |
tchaypo | not pure shell | 00:45 |
lifeless | cut | 00:46 |
lifeless | thank you! | 00:46 |
lifeless | cut is shell | 00:46 |
lifeless | btw the \ is meaningless ;) | 00:46 |
lifeless | tchaypo: also spurious use of echo :) - cut -f 1 -d - <<< $VERSION_STRING | 00:47 |
tchaypo | stack@bastion:/home/shared$ echo $VERSION_STRING | 00:47 |
tchaypo | 0.1 70g123123 | 00:47 |
tchaypo | stack@bastion:/home/shared$ IFS=- VERSION_ARRAY=($VERSION_STRING) | 00:48 |
tchaypo | stack@bastion:/home/shared$ echo $VERSION_ARRAY | 00:48 |
tchaypo | 0.1 | 00:48 |
tchaypo | cinerama: the thing i was thinking of in incubator is called pull-tools | 00:49 |
tchaypo | it does a decent job of finding the tool repos; and if they're on a specified branch (default is master but you can override per-repo via an env var) it will do a git pull | 00:49 |
tchaypo | but it doesn't handle changing from master to the specified branch, it will just chuck a sad because the repo isn't on the branch you specified yet. as far as i can tell, you need to manually set up each tool's repo the way you want it and then pull-repos will preserve that state | 00:50 |
tchaypo | but then when you're done and want to revert to clean upstream, you have to find all the things you changed and change them back | 00:50 |
*** spzala has joined #tripleo | 00:51 | |
tchaypo | related - in https://review.openstack.org/#/c/85418/5/scripts/pull-tools jp enhanced pull-tools so it actually does (try to, at least) provide a manifest of the tools that were pulled | 00:52 |
*** chuckC_ has quit IRC | 00:56 | |
tchaypo | lifeless: followup to the bash array example- ${VERSION_ARRAY[1]} will get you the 2nd element of the array, ${VERSION_ARRAY[@]} will give you all elements seperated by $OFS | 00:57 |
*** ChuckC has quit IRC | 00:58 | |
*** ChuckC has joined #tripleo | 00:58 | |
tchaypo | urr. not seperated by $OFS apparently. each element is a seperate word. | 00:59 |
tchaypo | :q | 00:59 |
*** spzala has quit IRC | 00:59 | |
*** ChuckC has quit IRC | 01:04 | |
openstackgerrit | lifeless proposed a change to openstack/tripleo-heat-templates: Remove hardcoded version. https://review.openstack.org/115450 | 01:06 |
*** wuhg has joined #tripleo | 01:09 | |
*** jang1 has joined #tripleo | 01:15 | |
*** tzumainn has quit IRC | 01:30 | |
*** nosnos has joined #tripleo | 01:42 | |
openstackgerrit | lifeless proposed a change to openstack/diskimage-builder: Remove hardcoded version. https://review.openstack.org/115456 | 01:42 |
*** markmc has quit IRC | 01:43 | |
*** markmc has joined #tripleo | 01:50 | |
*** Yanyanhu has joined #tripleo | 02:00 | |
*** markmc has quit IRC | 02:04 | |
*** morazi has quit IRC | 02:08 | |
*** ChuckC has joined #tripleo | 02:16 | |
*** Yanyanhu has quit IRC | 02:23 | |
*** sdake has quit IRC | 02:24 | |
*** Yanyanhu has joined #tripleo | 02:24 | |
*** chuckC_ has joined #tripleo | 02:29 | |
*** julim has joined #tripleo | 02:30 | |
*** julim has quit IRC | 02:37 | |
*** marun has joined #tripleo | 02:59 | |
*** untriaged-bot has joined #tripleo | 03:00 | |
untriaged-bot | Untriaged bugs so far: | 03:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1356637 | 03:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1355898 | 03:00 |
uvirtbot | Launchpad bug 1356637 in tripleo "os-refresh-config fails in hosts element when update is different" [Undecided,New] | 03:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1357346 | 03:00 |
uvirtbot | Launchpad bug 1355898 in tripleo "mariadb doesn't start after an upgrade" [Undecided,New] | 03:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1351010 | 03:00 |
uvirtbot | Launchpad bug 1357346 in tripleo "undercloud failing to come up on devtest due to pacemaker in os-refresh-config" [Undecided,New] | 03:00 |
uvirtbot | Launchpad bug 1351010 in ironic "Update to syslinux 6 breaks TFTPboot" [High,Confirmed] | 03:00 |
*** untriaged-bot has quit IRC | 03:00 | |
*** marun has quit IRC | 03:02 | |
*** Yanyanhu has quit IRC | 03:06 | |
*** bhunter71 has quit IRC | 03:07 | |
*** bhunter has joined #tripleo | 03:07 | |
*** bhunter is now known as Guest19388 | 03:07 | |
*** StevenK has quit IRC | 03:08 | |
*** StevenK has joined #tripleo | 03:08 | |
*** Yanyanhu has joined #tripleo | 03:09 | |
*** rushiagr_away has quit IRC | 03:12 | |
*** rushiagr_away has joined #tripleo | 03:14 | |
lifeless | 2014-08-19 23:35:35.944 | ERROR: The Parameter (MysqlRootPassword) was not defined in template. | 03:19 |
lifeless | I thought we were reverting that? bnemec ^ | 03:19 |
lifeless | ah, needed an A. Done. | 03:20 |
openstackgerrit | A change was merged to openstack/tripleo-incubator: Revert "Setup MySQL root password" https://review.openstack.org/115395 | 03:21 |
openstackgerrit | Steve Kowalik proposed a change to openstack/os-cloud-config: Add support for configuring Neutron https://review.openstack.org/108689 | 03:30 |
lifeless | StevenK: you wanted me to review something | 03:31 |
StevenK | lifeless: I did. It landed last night. | 03:32 |
*** sdake has joined #tripleo | 03:36 | |
StevenK | lifeless: There's two branches you could look at, but I've just tossed them through CI since they've not do so since the 4th | 03:36 |
*** ccrouch has joined #tripleo | 03:46 | |
*** eghobo has joined #tripleo | 03:48 | |
*** pradeep has joined #tripleo | 03:50 | |
*** Guest19388 is now known as bhunter71 | 03:52 | |
*** rushiagr_away is now known as rushiagr | 03:59 | |
*** Yanyanhu has quit IRC | 04:01 | |
*** Yanyanhu has joined #tripleo | 04:05 | |
StevenK | Hmmm, I don't think Jenkins has picked them up. | 04:08 |
StevenK | They're running through TripleO CI, but not the normal jobs | 04:08 |
StevenK | Huh, no, it did, since I got mail about them | 04:15 |
*** ccrouch has quit IRC | 04:20 | |
*** dsneddon has quit IRC | 04:26 | |
*** akuznetsov has joined #tripleo | 04:28 | |
*** eghobo has quit IRC | 04:31 | |
*** eghobo has joined #tripleo | 04:32 | |
*** pcrews has quit IRC | 04:46 | |
*** yuanying has joined #tripleo | 04:59 | |
*** eguz has joined #tripleo | 05:10 | |
*** eghobo has quit IRC | 05:10 | |
*** loki184 has joined #tripleo | 05:19 | |
openstackgerrit | Steve Kowalik proposed a change to openstack/os-cloud-config: Filter out registered nodes with nova-bm https://review.openstack.org/109674 | 05:20 |
openstackgerrit | Steve Kowalik proposed a change to openstack/os-cloud-config: Filter out registered nodes with ironic https://review.openstack.org/110218 | 05:20 |
tchaypo | *blink* | 05:23 |
tchaypo | nova's repo is 500mb in size? | 05:23 |
StevenK | steven@undermined:~/openstack/openstack/nova% du -sh . | 05:24 |
StevenK | 1.5G. | 05:24 |
tchaypo | ifI'd jau | 05:24 |
tchaypo | If I'd had that in my head while watching GotG last night it would have made all the references to "nova core" even funnier | 05:24 |
*** pradeep has quit IRC | 05:24 | |
*** pradeep has joined #tripleo | 05:26 | |
*** bmahalakshmi has joined #tripleo | 05:28 | |
*** dshulyak_ has joined #tripleo | 05:29 | |
*** rlandy has joined #tripleo | 05:34 | |
openstackgerrit | James Polley proposed a change to openstack/tripleo-incubator: Expose blacklisting scaled items via merge.py. https://review.openstack.org/113433 | 05:35 |
*** sirushti has joined #tripleo | 05:50 | |
StevenK | *Damn* | 05:50 |
StevenK | steven@undermined:~/openstack/openstack-infra/config% git di | diffstat -s | 05:50 |
StevenK | 1 file changed, 93 insertions(+), 344 deletions(-) | 05:50 |
*** eguz has quit IRC | 05:53 | |
StevenK | tchaypo: Are we meeting in an hour? | 05:56 |
StevenK | Well, ~ hour | 05:56 |
tchaypo | StevenK: yes | 05:59 |
*** pensu has joined #tripleo | 06:15 | |
*** jtomasek has joined #tripleo | 06:24 | |
*** yuanying has quit IRC | 06:28 | |
*** jcoufal has joined #tripleo | 06:31 | |
*** killer_prince has joined #tripleo | 06:31 | |
*** rdopieralski has joined #tripleo | 06:32 | |
*** loki184 has quit IRC | 06:35 | |
*** jcoufal has quit IRC | 06:38 | |
*** pradeep has quit IRC | 06:38 | |
*** pradeep has joined #tripleo | 06:39 | |
*** yuanying has joined #tripleo | 06:39 | |
*** loki184 has joined #tripleo | 06:44 | |
*** ifarkas has joined #tripleo | 06:47 | |
tchaypo | lifeless: so like, prep_source_repos seems like a way for us to untangle our private gerrty patchstacks and remove the fake dependencies | 06:49 |
*** jprovazn has joined #tripleo | 06:52 | |
tchaypo | lifeless: and like, to save on bandwidth, we can have gertty sync the repo onto our machine and then p_s_r pull from that cache, i think (will test that idea later tonight) | 06:52 |
*** pcrews has joined #tripleo | 06:54 | |
tchaypo | Meeting starting in #openstack-meeting-alt in ~5 minutes | 06:55 |
*** dtantsur|afk is now known as dtantsur | 06:55 | |
openstackgerrit | Dougal Matthews proposed a change to openstack/tuskar: Migrate from common code to oslo.db https://review.openstack.org/104548 | 06:58 |
*** jtomasek has quit IRC | 06:58 | |
d0ugal | lsmola, rdopieralski - can you re-review https://review.openstack.org/#/c/104548/ when you get time please. | 06:59 |
*** pradipta_away is now known as pradipta | 07:01 | |
*** akuznetsov has quit IRC | 07:03 | |
*** jp_at_hp has joined #tripleo | 07:04 | |
*** derekh has joined #tripleo | 07:16 | |
*** sdake has quit IRC | 07:17 | |
*** akuznetsov has joined #tripleo | 07:23 | |
*** jcoufal has joined #tripleo | 07:27 | |
rdopieralski | d0ugal: I did, but I don't think my comments are that valuable | 07:27 |
openstackgerrit | Steve Kowalik proposed a change to openstack/os-cloud-config: WIP: Fix README https://review.openstack.org/115523 | 07:28 |
d0ugal | rdopieralski: thanks | 07:30 |
lifeless | tchaypo: yes, it does. | 07:32 |
tchaypo | lifeless: there may be relevant aphorisms here | 07:32 |
tchaypo | maybe ones about hammers and nails | 07:32 |
StevenK | tchaypo: When C++ is your hammer, every problem looks like a thumb? | 07:33 |
tchaypo | When your hammer is a hammer, every problem looks like nova core | 07:33 |
openstackgerrit | Nicholas Randon proposed a change to openstack/tripleo-image-elements: Add normal exit to rabbitmq upstart config https://review.openstack.org/115524 | 07:35 |
openstackgerrit | Nicholas Randon proposed a change to openstack/tripleo-image-elements: Move config file to the file dir. https://review.openstack.org/115525 | 07:35 |
lifeless | derekh: o/ | 07:35 |
*** sdake has joined #tripleo | 07:35 | |
StevenK | tchaypo: Gah, it's WIP. That is exactly my plan, but I needed *something* for git to even commit | 07:39 |
tchaypo | ;) | 07:39 |
openstackgerrit | Alexis Lee proposed a change to openstack-infra/tripleo-ci: Add firewall traffic on port 27410 https://review.openstack.org/115341 | 07:41 |
*** pradeep has quit IRC | 07:46 | |
openstackgerrit | Nicholas Randon proposed a change to openstack/tripleo-image-elements: Add normal exit to rabbitmq upstart config https://review.openstack.org/115524 | 07:49 |
openstackgerrit | Nicholas Randon proposed a change to openstack/tripleo-image-elements: Move config file to the file dir. https://review.openstack.org/115525 | 07:49 |
tchaypo | gfidente: if you're around | 07:50 |
tchaypo | gfidente: we're talking about your item in #openstack-meeting-alt | 07:50 |
lsmola | d0ugal: sure | 07:54 |
d0ugal | lsmola: thanks :) | 07:54 |
*** jang2 has joined #tripleo | 08:01 | |
derekh | lifeless: hi, still looking into errors , looks like I was hitting some of the error that snuck by CI yesterday and didn't realise it | 08:04 |
*** jp_at_hp has quit IRC | 08:04 | |
*** pcrews has quit IRC | 08:08 | |
*** sdake has quit IRC | 08:08 | |
lifeless | derekh: cool | 08:09 |
lsmola | d0ugal: I can't say I understand much of the patch :-) | 08:12 |
d0ugal | lsmola: lol, thanks for looking anyway. | 08:13 |
lsmola | d0ugal: but if you have tested that and it's working fine for you ,there is no reason to block it :-) | 08:13 |
lsmola | d0ugal: I can +2 for nice code :-) | 08:13 |
d0ugal | lsmola: ha, ok | 08:13 |
d0ugal | lsmola: Basically, the oslo db code has graduated, so it moves to using the installable package rather than shipping a copy in tuskar.openstack.common | 08:14 |
lxsli | lsmola: do we do that? Or is it better to +1 then? Genuine question bc I'm often in that situation :) | 08:14 |
d0ugal | lsmola: and I need the updated version for running tests against mysql etc. - they added some neat stuff to make it easier. | 08:14 |
lxsli | lifeless derekh: https://review.openstack.org/#/c/115341/6/toci_gate_test.sh please? | 08:15 |
lsmola | lxsli: well since there are like 2 people in tuskar that understands that and one of them wrote that, it would never get merged :-) | 08:15 |
lxsli | hehe ok, I'll change mine to +2 then | 08:15 |
loki184 | lifeless: https://review.openstack.org/#/c/110562/ for this patch got feedback that no ci for windows or infrastructure not available to test for the windows disk image builder tool | 08:15 |
lsmola | lxsli: when it is working and there is nothing seriously wrong with the code, there should not be a reason for not +2 it | 08:15 |
loki184 | lifeless: infrateam is asking how to test this, any suggestions | 08:16 |
lxsli | lsmola: good to know, thanks | 08:16 |
derekh | lxsli: lgtm | 08:16 |
lxsli | derekh: excellent, thanks! | 08:16 |
d0ugal | lsmola, lxsli: the interesting thing about a review like that is that the feedback from Victor Sergeyev (oslo team) is most valuable, but he can't +2 TripleO - his last review was only a commit message change. | 08:17 |
lsmola | d0ugal: ok, thanks for quick explanation | 08:17 |
lxsli | d0ugal: yeah I checked the history and it seemed to have settled down pretty well | 08:17 |
lifeless | loki184: we can't test it yet, thats fine | 08:17 |
lifeless | loki184: its not desirable, but it is what it is | 08:18 |
loki184 | lifeless: so, How should i take this forward i spoke to infra team they are kind of not ok with the plan. | 08:19 |
*** dshulyak_ has quit IRC | 08:19 | |
*** sdake has joined #tripleo | 08:19 | |
*** pradeep has joined #tripleo | 08:19 | |
*** sdake_ has joined #tripleo | 08:20 | |
lifeless | lxsli: https://review.openstack.org/#/c/115341/ | 08:21 |
lifeless | lxsli: I think I spotted a problem | 08:21 |
lifeless | lxsli: please tell me i'm wrong ;) | 08:21 |
lifeless | lxsli: now with proposed solution | 08:22 |
lxsli | lifeless: awesome - need to consult Nick | 08:22 |
lifeless | lxsli: I think my proposed solution would let through the traffic the old rule would | 08:23 |
lifeless | lxsli: so it should be a no-brainer :) | 08:23 |
lxsli | you're confident it'll always be eth1? not eg eth0 or eth5? | 08:23 |
lifeless | yes | 08:24 |
lifeless | the jenkins slave has a fixed layout | 08:24 |
lxsli | Alrighty then! 1min | 08:24 |
lifeless | if we change that, we change this rule | 08:24 |
openstackgerrit | Alexis Lee proposed a change to openstack-infra/tripleo-ci: Add firewall traffic on port 27410 https://review.openstack.org/115341 | 08:24 |
*** pblaho has joined #tripleo | 08:26 | |
lifeless | lxsli: +A it once its got green from CI | 08:26 |
lxsli | Woop! Thanks guys :) :) | 08:26 |
lxsli | ok cycling to work, bbiab :) | 08:27 |
lsmola | derekh: ping | 08:28 |
derekh | lsmola: ack | 08:28 |
lsmola | derekh: hello | 08:28 |
lsmola | derekh: have you noticed that undercloud is getting out of memory after few days of running? | 08:29 |
lsmola | derekh: it's probably caused by keystone again, not cleaning the token related data | 08:29 |
derekh | lsmola: I hadn't, most of the time my underclouds arn't around that long | 08:29 |
lifeless | lsmola: looks fine | 08:29 |
lifeless | KiB Mem: 98996272 total, 67021760 used, 31974512 free, 324972 buffers | 08:29 |
lifeless | uptime | 08:29 |
lifeless | 08:29:47 up 42 days, 9:30, 3 users, load average: 1.31, 1.06, 1.00 | 08:29 |
lsmola | derekh: also my Ironic-API is consuming 500MB for some reason | 08:30 |
lsmola | lifeless: I have f20 | 08:30 |
lifeless | 27806 ironic 20 0 262464 93612 5288 S 11.9 0.1 192:42.59 ironic-api | 08:30 |
lifeless | so its fat, but not 500MB of fat | 08:30 |
lsmola | derekh: I have 4GB of memory, and it is usually filled after 3 days I restart keystone | 08:30 |
lifeless | 27806 ironic 20 0 262464 93612 5288 S 11.9 0.1 192:42.59 ironic-api | 08:30 |
lifeless | bah | 08:30 |
lifeless | x86_64 too | 08:31 |
*** IvanBerezovskiy has joined #tripleo | 08:32 | |
*** pensu has quit IRC | 08:32 | |
*** pelix has joined #tripleo | 08:32 | |
*** pensu has joined #tripleo | 08:33 | |
derekh | lsmola: hmm. so this one is running 24 hours | 08:34 |
derekh | 4264 keystone 20 0 657828 303752 7344 S 0.0 9.9 40:07.64 keystone-all | 08:34 |
derekh | 3340 mysql 20 0 1244140 216628 8480 S 0.3 7.0 7:55.42 mysqld | 08:34 |
derekh | 3992 ironic 20 0 568232 215444 6724 S 0.0 7.0 8:08.74 ironic-api | 08:34 |
*** yuanying has quit IRC | 08:34 | |
lsmola | lifeless: 3664 ironic 20 0 856424 508268 7292 S 0.3 12.6 34:22.56 ironic-api | 08:35 |
*** killer_prince2 has joined #tripleo | 08:36 | |
lsmola | derekh: 2703 mysql 20 0 1265344 248424 27068 S 0.3 6.1 49:56.81 mysqld | 08:36 |
*** killer_prince2 is now known as lazy_prince | 08:37 | |
*** killer_prince has quit IRC | 08:37 | |
lsmola | derekh: so it's basically just keystone that keeps rising for me until it's not able to allocate new memory | 08:37 |
lsmola | derekh: although the ironic looks suspicious too | 08:37 |
lsmola | derekh: there is some script that is suppose to clean keystone tokens, right? | 08:38 |
derekh | lsmola: ya, they do both seem high alright | 08:38 |
derekh | lsmola: that script only clears tokens in the DB , so I don't think would do anything for keystone mem usage | 08:38 |
derekh | lsmola: 0 */2 * * * root /usr/local/bin/cleanup-keystone-tokens.sh | 08:39 |
lsmola | derekh: hm ok | 08:39 |
lsmola | derekh: but there was some issue before that keystone was rising in memory right? | 08:40 |
lifeless | we had in-memory story wwway back | 08:40 |
lsmola | lifeless: yeah | 08:41 |
lsmola | lifeless: the lab I deployed like 2 months ago was happily running for a month | 08:41 |
lsmola | lifeless: but this one is deployed week ago and can last like 3 days :-( so something probably happened | 08:41 |
lsmola | lifeless: most probably only in f20 | 08:42 |
lsmola | lifeless: derekh I will try to redeploy and keep an eye on this | 08:42 |
derekh | lsmola: ok | 08:43 |
*** lazy_prince is now known as killer_prince | 08:43 | |
*** pblaho is now known as pblaho|afk | 08:45 | |
loki184 | lifeless: can you please leave a comment about ci to this patch https://review.openstack.org/#/c/110562/ | 08:47 |
*** sdake has quit IRC | 08:47 | |
*** pblaho|afk is now known as pblaho | 08:49 | |
*** athomas has joined #tripleo | 08:50 | |
lifeless | loki184: done | 08:51 |
loki184 | lifeless: Ty :) | 08:52 |
*** ifarkas has quit IRC | 08:52 | |
*** ifarkas has joined #tripleo | 08:54 | |
*** Yanyanhu has quit IRC | 08:54 | |
*** lucasagomes has joined #tripleo | 08:56 | |
StevenK | Gah, maybe that will stop people commenting on that WIP os-cloud-config review | 08:56 |
*** Yanyanhu has joined #tripleo | 08:56 | |
*** untriaged-bot has joined #tripleo | 09:01 | |
untriaged-bot | Untriaged bugs so far: | 09:01 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1356637 | 09:01 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1355898 | 09:01 |
uvirtbot | Launchpad bug 1356637 in tripleo "os-refresh-config fails in hosts element when update is different" [Undecided,New] | 09:01 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1357346 | 09:01 |
uvirtbot | Launchpad bug 1355898 in tripleo "mariadb doesn't start after an upgrade" [Undecided,New] | 09:01 |
uvirtbot | Launchpad bug 1357346 in tripleo "undercloud failing to come up on devtest due to pacemaker in os-refresh-config" [Undecided,New] | 09:01 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1351010 | 09:01 |
uvirtbot | Launchpad bug 1351010 in ironic "Update to syslinux 6 breaks TFTPboot" [High,Confirmed] | 09:01 |
*** untriaged-bot has quit IRC | 09:01 | |
*** jtomasek has joined #tripleo | 09:04 | |
openstackgerrit | Dougal Matthews proposed a change to openstack/tuskar: Remove unused openstack.common.policy https://review.openstack.org/114585 | 09:08 |
*** regebro has quit IRC | 09:08 | |
openstackgerrit | Dougal Matthews proposed a change to openstack/tuskar: Remove unused openstack.common.lockutils https://review.openstack.org/114586 | 09:08 |
openstackgerrit | Dougal Matthews proposed a change to openstack/tuskar: Remove unused openstack.common.fileutils https://review.openstack.org/114587 | 09:08 |
*** regebro has joined #tripleo | 09:08 | |
openstackgerrit | Dougal Matthews proposed a change to openstack/tuskar: Remove unused openstack.common.excutils https://review.openstack.org/114588 | 09:10 |
openstackgerrit | A change was merged to openstack/tuskar: Migrate from common code to oslo.db https://review.openstack.org/104548 | 09:10 |
openstackgerrit | Jan Provaznik proposed a change to openstack/tripleo-incubator: Allow use custom nameserver when setting up neutron subnet https://review.openstack.org/114532 | 09:10 |
*** jp_at_hp has joined #tripleo | 09:20 | |
Goneri | pblaho: pong | 09:24 |
*** pensu has quit IRC | 09:24 | |
pblaho | Goneri: ping ? | 09:24 |
Goneri | you tried to contact me 2 days ago :) | 09:25 |
*** jtomasek has quit IRC | 09:26 | |
pblaho | Goneri: yeah.... :-) I think it was solved somehow... if I encounter it again I will ping you :-) | 09:26 |
Goneri | =) | 09:29 |
*** jtomasek has joined #tripleo | 09:32 | |
*** pensu has joined #tripleo | 09:35 | |
*** yuanying has joined #tripleo | 09:35 | |
*** Yanyanhu has quit IRC | 09:44 | |
*** pblaho is now known as pblaho|lunch | 09:46 | |
*** akrivoka has joined #tripleo | 09:51 | |
*** pblaho|lunch is now known as pblaho|afk | 10:08 | |
*** yuanying has quit IRC | 10:09 | |
*** openstackgerrit has quit IRC | 10:10 | |
*** loki184 has quit IRC | 10:15 | |
*** loki184 has joined #tripleo | 10:22 | |
*** yamahata has quit IRC | 10:28 | |
*** pmyers has joined #tripleo | 10:43 | |
*** dricco has quit IRC | 10:48 | |
*** akrivoka has quit IRC | 10:49 | |
pensu | Hi all, you views please : http://lists.openstack.org/pipermail/openstack-dev/2014-August/043551.html | 10:52 |
*** dricco has joined #tripleo | 10:53 | |
*** nosnos has quit IRC | 10:57 | |
lsmola | jprovazn: could you please review https://review.openstack.org/#/c/115249/ | 11:00 |
lsmola | jprovazn: thank you | 11:00 |
*** yuanying has joined #tripleo | 11:02 | |
*** bmahalakshmi has quit IRC | 11:27 | |
*** lucasagomes is now known as lucas-hungry | 11:29 | |
*** yuanying has quit IRC | 11:32 | |
*** akrivoka has joined #tripleo | 11:34 | |
*** ramishra has joined #tripleo | 11:35 | |
*** dshulyak_ has joined #tripleo | 11:36 | |
*** loki184 has quit IRC | 11:36 | |
*** dshulyak_ has quit IRC | 11:48 | |
*** pblaho|afk is now known as pblaho|lunch | 11:53 | |
*** pblaho|lunch is now known as pblaho | 11:53 | |
*** morazi has joined #tripleo | 11:57 | |
*** dprince has joined #tripleo | 11:57 | |
tchaypo | lifeless: are you in a philosophical mood? | 11:58 |
*** ccrouch has joined #tripleo | 11:59 | |
tchaypo | pensu: I had a vaguely similar issue a few days ago that turned out to be because my nodes were defined as having 1600Gb disk but in reality they only had a much smaller disk - so parted (or something) was trying to read a sectore that didn't actually exist | 12:00 |
tchaypo | pensu: it was a very different error message, so I have no real reason to think it's similar, it's just the first thing that popped into my head | 12:00 |
tchaypo | lifeless: sometime when you have time I want to pick your brains about how to motivate people to work on things | 12:01 |
tchaypo | lifeless: ... but wait, i think you're going to tell me to read "crucial conversations", "switch", and maybe some other book.. | 12:01 |
*** yuanying has joined #tripleo | 12:02 | |
*** pensu has quit IRC | 12:07 | |
*** yuanying has quit IRC | 12:08 | |
*** weshay has joined #tripleo | 12:11 | |
gfidente | lifeless, I just figured we share something! | 12:11 |
gfidente | tchaypo can tell ... :P | 12:11 |
Goneri | Hi, can a core take a look on https://review.openstack.org/#/c/106319/ I would prefere to avoid a rebase since the patch touch a lot of files. | 12:14 |
tchaypo | gfidente: well, I can tell some of it :o | 12:18 |
tchaypo | s/:o/:p | 12:18 |
*** pensu has joined #tripleo | 12:32 | |
*** pradipta is now known as pradipta_away | 12:33 | |
lxsli | Please can I get a +A on https://review.openstack.org/#/c/115341/ now CI has passed? | 12:40 |
*** lucas-hungry is now known as lucasagomes | 12:41 | |
*** lblanchard has joined #tripleo | 12:41 | |
*** killer_prince has quit IRC | 12:43 | |
*** tzumainn has joined #tripleo | 12:43 | |
*** pradeep has quit IRC | 12:44 | |
*** andreaf has joined #tripleo | 12:51 | |
*** andreaf has quit IRC | 12:51 | |
*** andreaf has joined #tripleo | 12:51 | |
*** andreaf has quit IRC | 12:51 | |
*** andreaf has joined #tripleo | 12:52 | |
*** andreaf has quit IRC | 12:52 | |
*** andreaf has joined #tripleo | 12:52 | |
*** andreaf has quit IRC | 12:53 | |
*** andreaf_ has quit IRC | 12:53 | |
*** andreaf has joined #tripleo | 12:53 | |
*** andreaf has quit IRC | 12:53 | |
*** andreaf has joined #tripleo | 12:54 | |
*** andreaf has quit IRC | 12:54 | |
*** andreaf has joined #tripleo | 12:54 | |
*** yuanying has joined #tripleo | 13:04 | |
lxsli | thanks Derek | 13:07 |
*** julim has joined #tripleo | 13:09 | |
*** yuanying has quit IRC | 13:09 | |
*** ramishra has quit IRC | 13:13 | |
*** markmc has joined #tripleo | 13:15 | |
*** bcrochet has quit IRC | 13:31 | |
*** bcrochet has joined #tripleo | 13:34 | |
*** jomara has quit IRC | 13:36 | |
pensu | tchaypo: that could be the issue....as I am running undercloud from a VM and it has only 30 Gb of disk. Any idea how much space approx I need? | 13:37 |
*** pradeep has joined #tripleo | 13:38 | |
*** spzala has joined #tripleo | 13:38 | |
*** ramishra has joined #tripleo | 13:39 | |
tchaypo | That will depend what size disks you use. I don't know how RDO differs from stock TripleO, but in upstream TripleO there are settings in devtest_variables.sh that control disk usage | 13:40 |
tchaypo | I think it's NODE_DISK or something similar | 13:41 |
tchaypo | I think it defaults to 10Gb? So if you had 8 vms that's up to 80Gb - but if your disk images are lazily created that will be an upper limit, it won't allocate all 80gb | 13:42 |
tchaypo | Right at the start | 13:42 |
tchaypo | 30Gb sounds small | 13:42 |
tchaypo | To me though. | 13:43 |
tchaypo | Although I'm not sure which has 30Gb - the undercloud vm, or the machine its running on? If you mean the former it sounds fine, probably | 13:44 |
*** pcrews has joined #tripleo | 13:45 | |
regebro | OK, unless tzumainn protests, I'll cut the tuskar_ui.api.tuskar down to make it thinner. | 13:45 |
tchaypo | In my case the issue wasn't running out of space - it was that my testenv.json said the physical machine had 1600Gb disk space, so ironic tried to use it all. I changed testenv.json to say 800gb and now it's fine | 13:46 |
pensu | tchaypo: I am talking about undercloud only.....the host has around 50 Gb....so, I guess that should be fine.... | 13:46 |
tchaypo | regebro: I still ow you an email :( | 13:46 |
regebro | tchaypo: I've forgotten about what. :) | 13:47 |
tchaypo | regebro: Me too | 13:47 |
tchaypo | regebro: Helpfully I made myself a note | 13:47 |
tchaypo | regebro: Less helpfully, it just says "see irc logs" | 13:48 |
jp_at_hp | tchaypo: I want to clarify something from the meeting this morning | 13:48 |
tchaypo | jp_at_hp: Morning! | 13:48 |
jp_at_hp | tchaypo: CI - false positives were being handed out by CI up until sometime early this morning, right? | 13:48 |
regebro | tchaypo: :) | 13:48 |
jp_at_hp | tchaypo: and good morning/afternoon/good day to you sir :D | 13:49 |
tchaypo | That's my understanding - derekh knows the exact timing | 13:49 |
jp_at_hp | OK, so a CI pass from Aug 18 will need a recheck... derekh - can you confirm? | 13:49 |
*** ramishra has quit IRC | 13:49 | |
pblaho | d0ugal: we have a problem when bumping versions from requrements repo right now | 13:50 |
tchaypo | Yeah, that's again exactly what I understand - anything that passed between the 17th and some time on the 20th is suspect | 13:50 |
d0ugal | pblaho: Failing test/ | 13:50 |
pblaho | d0ugal: need to get this merged https://review.openstack.org/#/c/115643/ | 13:50 |
*** jomara has joined #tripleo | 13:50 | |
d0ugal | pblaho: ah, I see. | 13:51 |
derekh | jp_at_hp: tchaypo Any positive ci results after this merged https://review.openstack.org/#/c/89974/ can't be trusted | 13:51 |
tchaypo | derekh: until when? | 13:52 |
derekh | jp_at_hp: tchaypo https://review.openstack.org/#/c/115399/ | 13:52 |
tchaypo | Thanks | 13:52 |
jp_at_hp | no bug number for rechecks? | 13:53 |
*** derekh changes topic to "CI test results between Aug 15 9:42 PM - Aug 19 11:04 PM UTC should be ignored and rerun | Using OpenStack to deploy OpenStack ; meetings Tuesday 1900/0700 UTC in #openstack-meeting-alt" | 13:53 | |
jp_at_hp | thanks derekh... | 13:53 |
jp_at_hp | good plan that man :D | 13:54 |
jp_at_hp | Ah - today was from the more eastern of peeps then :o | 13:54 |
derekh | jp_at_hp: yup | 13:55 |
*** eghobo has joined #tripleo | 13:55 | |
*** pblaho has quit IRC | 13:57 | |
*** markmc has quit IRC | 13:59 | |
lxsli | please could I have some reviews on https://review.openstack.org/#/c/110452 ? | 13:59 |
lxsli | This has epic rebase potential | 13:59 |
*** yuanying has joined #tripleo | 14:05 | |
*** mestery has joined #tripleo | 14:07 | |
*** mestery has quit IRC | 14:07 | |
*** mestery has joined #tripleo | 14:08 | |
d0ugal | lxsli: reviewed, despite my review not being worth much :) | 14:09 |
lxsli | It all helps! Thanks | 14:10 |
d0ugal | np | 14:10 |
*** yuanying has quit IRC | 14:11 | |
d0ugal | Woo. Tuskar's master now has a coverage of 85%. | 14:13 |
d0ugal | Which is only impressive if you know it was at 46% a couple of weeks ago :) | 14:13 |
lxsli | 85% is actually not bad | 14:15 |
lxsli | adding coverage gets harder after that :) | 14:16 |
lxsli | also, this is #tripleo :D | 14:16 |
d0ugal | lxsli: It's not bad, it's just nothing to celebrate :) | 14:17 |
*** ccrouch has quit IRC | 14:17 | |
d0ugal | We don't really use #tuskar anymore. | 14:17 |
*** ramishra has joined #tripleo | 14:18 | |
lxsli | I meant, what do you think the test coverage of tripleo is? | 14:19 |
d0ugal | oh, haha | 14:19 |
d0ugal | Scary thought :) | 14:20 |
*** ccrouch has joined #tripleo | 14:22 | |
*** rwsu has quit IRC | 14:24 | |
*** yamahata has joined #tripleo | 14:25 | |
*** marun has joined #tripleo | 14:31 | |
*** ramishra has quit IRC | 14:32 | |
*** ramishra has joined #tripleo | 14:33 | |
*** ifarkas has quit IRC | 14:34 | |
*** jtomasek has quit IRC | 14:34 | |
*** eghobo has quit IRC | 14:36 | |
*** rwsu has joined #tripleo | 14:36 | |
*** pradeep has quit IRC | 14:40 | |
*** jomara_ has joined #tripleo | 14:42 | |
*** jomara has quit IRC | 14:42 | |
*** akrivoka has quit IRC | 14:43 | |
*** jomara_ is now known as jomara | 14:45 | |
*** ifarkas has joined #tripleo | 14:46 | |
*** akrivoka has joined #tripleo | 14:48 | |
*** ramishra has quit IRC | 14:49 | |
*** jtomasek has joined #tripleo | 14:49 | |
*** ramishra has joined #tripleo | 14:49 | |
*** bmahalakshmi has joined #tripleo | 14:55 | |
*** untriaged-bot has joined #tripleo | 15:01 | |
untriaged-bot | Untriaged bugs so far: | 15:01 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1356637 | 15:01 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1355898 | 15:01 |
uvirtbot | Launchpad bug 1356637 in tripleo "os-refresh-config fails in hosts element when update is different" [Undecided,New] | 15:01 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1351010 | 15:01 |
uvirtbot | Launchpad bug 1355898 in tripleo "mariadb doesn't start after an upgrade" [Undecided,New] | 15:01 |
*** untriaged-bot has quit IRC | 15:01 | |
uvirtbot | Launchpad bug 1351010 in ironic "Update to syslinux 6 breaks TFTPboot" [High,Confirmed] | 15:01 |
*** ifarkas has quit IRC | 15:02 | |
*** ramishra_ has joined #tripleo | 15:04 | |
*** ramishra has quit IRC | 15:06 | |
*** yuanying has joined #tripleo | 15:07 | |
*** vinsh has joined #tripleo | 15:08 | |
*** jprovazn has quit IRC | 15:09 | |
*** vinsh has quit IRC | 15:10 | |
*** vinsh has joined #tripleo | 15:10 | |
*** openstackgerrit has joined #tripleo | 15:12 | |
*** yuanying has quit IRC | 15:12 | |
*** rdopieralski has quit IRC | 15:15 | |
*** yamahata has quit IRC | 15:16 | |
*** jcoufal has quit IRC | 15:17 | |
*** rlandy has quit IRC | 15:18 | |
*** jpeeler has joined #tripleo | 15:19 | |
*** jpeeler has joined #tripleo | 15:19 | |
*** marun has quit IRC | 15:21 | |
*** marun has joined #tripleo | 15:21 | |
*** mestery has quit IRC | 15:23 | |
openstackgerrit | Dougal Matthews proposed a change to openstack/tuskar: Update the Tuskar INSTALL documentation https://review.openstack.org/115680 | 15:26 |
*** jtomasek has quit IRC | 15:30 | |
*** sdake has joined #tripleo | 15:31 | |
*** eghobo has joined #tripleo | 15:31 | |
*** eghobo has quit IRC | 15:33 | |
*** akrivoka has quit IRC | 15:39 | |
*** mestery has joined #tripleo | 15:42 | |
*** mestery has quit IRC | 15:42 | |
*** mestery has joined #tripleo | 15:43 | |
*** loki184 has joined #tripleo | 15:43 | |
*** marun has quit IRC | 15:44 | |
*** morazi has quit IRC | 15:44 | |
*** rushiagr is now known as rushiagr_away | 15:44 | |
*** rushiagr_away is now known as rushiagr | 15:44 | |
openstackgerrit | dave-mcnally proposed a change to openstack/tripleo-image-elements: Adding configuration options for stunnel. https://review.openstack.org/112870 | 15:45 |
*** dsneddon has joined #tripleo | 15:46 | |
*** marun has joined #tripleo | 15:47 | |
*** pradeep has joined #tripleo | 15:48 | |
*** marun has quit IRC | 15:51 | |
*** marun has joined #tripleo | 15:52 | |
*** wuhg has quit IRC | 15:52 | |
*** akrivoka has joined #tripleo | 15:53 | |
openstackgerrit | Dougal Matthews proposed a change to openstack/tuskar: Tuskar command to import a set of templates https://review.openstack.org/113248 | 15:56 |
openstackgerrit | Dougal Matthews proposed a change to openstack/tuskar: Tuskar command to import a set of templates https://review.openstack.org/113248 | 15:56 |
d0ugal | tzumainn: ^ | 15:56 |
*** cwolferh_ has joined #tripleo | 15:56 | |
*** mestery has quit IRC | 15:56 | |
tzumainn | d0ugal, I'll take a look, thanks! | 15:56 |
openstackgerrit | Dougal Matthews proposed a change to openstack/tuskar: Tuskar command to import a set of roles https://review.openstack.org/113248 | 15:57 |
*** cwolferh has quit IRC | 15:59 | |
*** dshulyak_ has joined #tripleo | 16:03 | |
*** marun has quit IRC | 16:06 | |
*** sdake has quit IRC | 16:06 | |
*** IvanBerezovskiy has left #tripleo | 16:07 | |
*** yuanying has joined #tripleo | 16:09 | |
*** marun has joined #tripleo | 16:11 | |
*** yuanying has quit IRC | 16:14 | |
*** mestery has joined #tripleo | 16:19 | |
*** mestery has quit IRC | 16:21 | |
*** mestery has joined #tripleo | 16:22 | |
NobodyCam | Good morning TripleO | 16:22 |
NobodyCam | I've got an off the wall question, what is needed to grow the root fs after deploy? | 16:23 |
*** spzala has quit IRC | 16:23 | |
*** killer_prince has joined #tripleo | 16:25 | |
*** killer_prince is now known as lazy_prince | 16:25 | |
*** k4n0 has quit IRC | 16:25 | |
*** mestery has quit IRC | 16:27 | |
*** penick has joined #tripleo | 16:31 | |
openstackgerrit | Dougal Matthews proposed a change to openstack/tuskar: Tuskar command to import a set of roles https://review.openstack.org/113248 | 16:31 |
d0ugal | regebro: ^ it should now respect your config file. | 16:31 |
*** rushiagr is now known as rushiagr_away | 16:32 | |
*** rushiagr_away is now known as rushiagr | 16:37 | |
*** mestery has joined #tripleo | 16:38 | |
openstackgerrit | Ladislav Smola proposed a change to openstack/tuskar-ui: Making init keystone work https://review.openstack.org/115701 | 16:41 |
*** derekh has quit IRC | 16:43 | |
*** akuznetsov has quit IRC | 16:44 | |
*** dtantsur is now known as dtantsur|afk | 16:46 | |
*** jcoufal has joined #tripleo | 16:46 | |
*** ramishra_ has quit IRC | 16:47 | |
*** akrivoka has quit IRC | 16:51 | |
*** mestery_ has joined #tripleo | 16:51 | |
*** mestery has quit IRC | 16:51 | |
*** mestery has joined #tripleo | 16:55 | |
*** mestery_ has quit IRC | 16:58 | |
*** mestery has quit IRC | 16:59 | |
*** lucasagomes is now known as lucas-dinner | 17:03 | |
*** lucas-dinner has left #tripleo | 17:03 | |
*** homegrown has joined #tripleo | 17:08 | |
regebro | d0ugal: Cool, will test tomorrow, | 17:09 |
regebro | . | 17:09 |
*** yuanying has joined #tripleo | 17:10 | |
*** yuanying has quit IRC | 17:15 | |
*** penick has quit IRC | 17:21 | |
*** pradeep has quit IRC | 17:21 | |
*** loki184 has quit IRC | 17:29 | |
*** akuznetsov has joined #tripleo | 17:35 | |
*** rameshg87 has joined #tripleo | 17:37 | |
*** akuznetsov has quit IRC | 17:42 | |
*** ccrouch has quit IRC | 17:42 | |
*** jcoufal has quit IRC | 17:44 | |
*** bmahalakshmi has quit IRC | 17:45 | |
*** rameshg87 has quit IRC | 17:46 | |
*** pelix has quit IRC | 17:47 | |
*** jtomasek has joined #tripleo | 17:47 | |
*** ramishra has joined #tripleo | 17:48 | |
*** gfidente has quit IRC | 17:51 | |
*** ramishra has quit IRC | 17:53 | |
*** rushiagr is now known as rushiagr_away | 17:53 | |
*** panda has quit IRC | 17:53 | |
*** panda has joined #tripleo | 17:54 | |
*** jp_at_hp has quit IRC | 17:57 | |
*** jprovazn has joined #tripleo | 18:00 | |
*** penick has joined #tripleo | 18:02 | |
openstackgerrit | patrick-crews proposed a change to openstack/os-cloud-config: Adding timeout parameters to init-keystone https://review.openstack.org/112172 | 18:03 |
*** ramishra has joined #tripleo | 18:05 | |
greghaynes | Has anyone seen fails like http://logs.openstack.org/16/114116/5/check-tripleo/check-tripleo-novabm-overcloud-f20-nonha/0f632ca/console.html#_2014-08-20_13_26_11_082 | 18:09 |
greghaynes | seed vm never gets to point where ssh started | 18:09 |
*** eghobo has joined #tripleo | 18:09 | |
*** marun has quit IRC | 18:11 | |
*** yuanying has joined #tripleo | 18:12 | |
*** homegrown has quit IRC | 18:12 | |
greghaynes | Maybe our good friend colonel panic is back | 18:12 |
*** marun has joined #tripleo | 18:14 | |
*** yuanying has quit IRC | 18:17 | |
*** ramishra has quit IRC | 18:22 | |
*** rushiagr_away is now known as rushiagr | 18:23 | |
lifeless | tchaypo: sure, why not | 18:32 |
lifeless | greghaynes: I have not, no | 18:33 |
*** eghobo has quit IRC | 18:35 | |
*** eghobo has joined #tripleo | 18:36 | |
*** marun has quit IRC | 18:39 | |
*** cwolferh has joined #tripleo | 18:39 | |
*** cwolferh_ has quit IRC | 18:40 | |
*** eghobo has quit IRC | 18:47 | |
openstackgerrit | James Slagle proposed a change to openstack/tripleo-incubator: Make USE_MARIADB overrideable https://review.openstack.org/110741 | 18:51 |
*** sdake has joined #tripleo | 18:56 | |
*** sdake has quit IRC | 18:56 | |
*** sdake has joined #tripleo | 18:56 | |
*** markmc has joined #tripleo | 18:57 | |
lifeless | bnemec: https://review.openstack.org/#/c/115458/ | 18:57 |
bnemec | lifeless: Shouldn't that be 2014.1? | 18:58 |
bnemec | Ah, just saw your comment. | 18:58 |
lifeless | bnemec: https://review.openstack.org/#/c/115459/ | 18:59 |
lifeless | bnemec: is for icehouse | 18:59 |
*** derekh has joined #tripleo | 19:00 | |
lifeless | derekh: eveningis | 19:00 |
lifeless | bah | 19:00 |
lifeless | eveningish | 19:00 |
*** Fabio_ has joined #tripleo | 19:00 | |
Fabio_ | can someone please review #link https://review.openstack.org/#/c/94500 | 19:00 |
Fabio_ | thanks in advance | 19:00 |
lifeless | bnemec: https://review.openstack.org/115740 | 19:01 |
bnemec | lifeless: Okay, done. I'm not on the stable team so I can't do much with that one. | 19:02 |
derekh | lifeless: hi ya, was poking at a few instances today, there was errors in the ironic logs, something about not being able to schedule and instance to the same node twice | 19:02 |
derekh | lifeless: stack-delete and stack-create then worked | 19:02 |
lifeless | bnemec: oh, I pinged you ecause I thought you were able to - sorry!. | 19:02 |
lifeless | bnemec: https://review.openstack.org/#/c/115740/ you should be able to :) | 19:02 |
lifeless | derekh: blerch | 19:03 |
derekh | lifeless: so it's some kind of timeing issue, then it occured to me that I'm using ironic | 19:03 |
derekh | the ci overcloud job users nova mb | 19:03 |
lifeless | derekh: ah so we're comparing cross-component for reliability? | 19:03 |
derekh | lifeless: so I reran 100 jobs with nova bm, no improvments | 19:03 |
bnemec | lifeless: Yep, I hit the master branch one already. | 19:03 |
lifeless | derekh: and you think the substrate is actually fine? | 19:03 |
derekh | lifeless: ya, I believe our infratructure is fine, a slowness seems to be makeing us hit problems, | 19:04 |
derekh | lifeless: back in a bit | 19:05 |
lifeless | derekh: kk | 19:05 |
lifeless | I'm still seeing 'the parameter mysqlroot was not defined in any template' | 19:05 |
lifeless | on CI stuff rechecked *after* the revert merged. | 19:05 |
lifeless | ah no | 19:05 |
lifeless | just me failing on recheck syntax | 19:06 |
*** penick has quit IRC | 19:06 | |
lifeless | or something | 19:06 |
*** shardy is now known as shardy_afk | 19:06 | |
lifeless | derekh: bnemec: while I have your attention - https://review.openstack.org/#/c/115454/ | 19:07 |
lifeless | derekh: bnemec: while I have your attention - https://review.openstack.org/#/c/115434/ | 19:07 |
lifeless | bnemec: and https://review.openstack.org/#/c/115449/ | 19:10 |
*** rushiagr is now known as rushiagr_away | 19:10 | |
lifeless | bnemec: and https://review.openstack.org/#/c/115434/ :) | 19:10 |
bnemec | I already got ^ Was there a different one you intended? | 19:12 |
*** yuanying has joined #tripleo | 19:13 | |
lifeless | tab fail on my part I suspect. let me reopen and check | 19:14 |
lifeless | open tripleo branches for this are https://review.openstack.org/#/c/115454/ https://review.openstack.org/#/c/115456/ https://review.openstack.org/#/c/115450/ https://review.openstack.org/#/c/115449/ https://review.openstack.org/#/c/115434/ all of which except the first have enough votes and you've voted on the first | 19:15 |
lifeless | so when derekh gets back I'll get the first voted up and then its just a matter of waiting for rechecks | 19:15 |
bnemec | Sounds good | 19:17 |
lifeless | and then semver can RULE THE WORLD | 19:17 |
lifeless | ahha! adam_g is in stable | 19:18 |
lifeless | adam_g: can I borrow your voting arm :) | 19:18 |
lifeless | adam_g: for the stable branch patches from https://etherpad.openstack.org/p/bad-setup-cfg-versions ? | 19:18 |
*** yuanying has quit IRC | 19:19 | |
adam_g | lifeless, sure ill take a look through those | 19:19 |
lifeless | adam_g: thats https://review.openstack.org/#/c/112878/ https://review.openstack.org/#/c/112882/ https://review.openstack.org/115459 | 19:19 |
*** penick has joined #tripleo | 19:19 | |
lifeless | adam_g: (and anymore you have acls on but those three are I believe all stable-branch-locked) | 19:19 |
adam_g | cool | 19:20 |
lifeless | adam_g: thanks! | 19:20 |
openstackgerrit | A change was merged to openstack/tripleo-image-elements: Fix issues with provider networks and public ips https://review.openstack.org/103449 | 19:21 |
lifeless | oh yeah baby | 19:21 |
openstackgerrit | lifeless proposed a change to openstack/tripleo-image-elements: Update Neutron plugin conf file reference. https://review.openstack.org/115751 | 19:23 |
lifeless | bnemec: slagle: dprince: on the vlan arc - https://review.openstack.org/#/c/103454/ (and its parent) need reviews; they sould be in good order | 19:25 |
lifeless | (I want to get the vlan stuff landed, so we can add the test for it, and that then unblocks dprinces os-net-config which we agreed would come after | 19:26 |
dprince | lifeless: ack, will look again shortly | 19:32 |
lifeless | 2014-08-20 19:24:31.502 | Building elements: ramdisk base ubuntu deploy common-venv stackuser pypi-openstack use-ephemeral | 19:34 |
lifeless | 2014-08-20 19:24:31.508 | ERROR: Element 'deploy' not found in '/opt/stack/new//tripleo-image-elements/elements:/opt/stack/new/diskimage-builder/bin/../elements:/opt/stack/new/diskimage-builder/bin/../elements' | 19:34 |
lifeless | is concerning | 19:34 |
lifeless | oh | 19:34 |
lifeless | stable I presume | 19:34 |
lifeless | yup | 19:35 |
lifeless | tht in stable failing CI because we deleted the deploy element | 19:35 |
lifeless | which was a backwards incompatible change | 19:35 |
*** marun has joined #tripleo | 19:36 | |
openstackgerrit | lifeless proposed a change to openstack/diskimage-builder: Revert "Remove the temporary deploy element after rename" https://review.openstack.org/115755 | 19:37 |
*** jtomasek has quit IRC | 19:38 | |
*** jprovazn has quit IRC | 19:38 | |
lifeless | bnemec: slagle: question time for you onhttps://review.openstack.org/#/c/115449/ | 19:38 |
lifeless | bnemec: slagle: I think https://review.openstack.org/#/c/115434/ will be equally impactwd | 19:39 |
lifeless | yup | 19:40 |
slagle | the ci jobs do not run against stable | 19:40 |
lifeless | slagle: patches to stable/icehouse run CI jobs though | 19:40 |
slagle | we'd have to setup separate jobs for that | 19:40 |
slagle | yes, that is true | 19:40 |
*** marun has quit IRC | 19:40 | |
lifeless | slagle: see the failure in http://logs.openstack.org/49/115449/1/check-tripleo/check-tripleo-novabm-undercloud-precise-nonha/1e97349/console.html | 19:41 |
slagle | but it's just testing that one change with master of everything else | 19:41 |
lifeless | slagle: I don't believe so | 19:41 |
lifeless | slagle: I believe its testing with origin/stable/icehouse of tripleo-incubator | 19:42 |
lifeless | slagle: which still uses the 'deploy' element | 19:42 |
lifeless | slagle: which we deleted :) | 19:42 |
slagle | hmm | 19:42 |
lifeless | slagle: thus the revert I've put up | 19:42 |
lifeless | ok C has just woken, bbiaw | 19:43 |
slagle | lifeless: yea, you're right. the devstack-setup-workspace script automatically switches all the checkouts over to stable/icehouse if that's the branch the change is on | 19:46 |
slagle | well that is handy | 19:47 |
bnemec | Sometimes I think our tools are too smart. :-) | 19:48 |
bnemec | Although if it's using stable/icehouse for diskimage-builder, then shouldn't the deploy element still exist? | 19:48 |
slagle | dib has no stable branch | 19:48 |
*** jcoufal has joined #tripleo | 19:48 | |
slagle | it goes the way of the clienttools | 19:49 |
bnemec | Ah, I see. | 19:49 |
* bnemec probably should have known that | 19:49 | |
slagle | still, i don't think these CI jobs are going to pass | 19:50 |
slagle | there are likely a handful of fixes we need to backport | 19:50 |
bnemec | slagle: Do we care at all about the stable branches anymore? We could just merge the version fixes and forget about them. | 19:54 |
*** marun has joined #tripleo | 19:57 | |
slagle | bnemec: yes, we still care. it's just been a little bit since i've done a run with them | 19:59 |
bnemec | Okay, so we do want to fix this. Just checking. :-) | 19:59 |
slagle | not to say we can't merge the setup.cfg version fixes first | 20:02 |
*** athomas has quit IRC | 20:07 | |
*** pensu has quit IRC | 20:13 | |
*** yuanying has joined #tripleo | 20:15 | |
*** marun has quit IRC | 20:16 | |
*** marun has joined #tripleo | 20:18 | |
derekh | lifeless: back, added a +2 for the dib-utils review, and if you want a bug number here is one I created last week https://bugs.launchpad.net/tripleo/+bug/1351490 | 20:19 |
uvirtbot | Launchpad bug 1351490 in tripleo "git repo's reporting the wrong version" [Medium,Triaged] | 20:19 |
*** yuanying has quit IRC | 20:21 | |
derekh | wow that bug was filed nearly 3 weeks ago, I could have sworn it was a few days ago | 20:21 |
*** markmc has quit IRC | 20:22 | |
*** penick has quit IRC | 20:23 | |
*** penick has joined #tripleo | 20:25 | |
bnemec | OSError: [Errno 12] Cannot allocate memory | 20:26 |
bnemec | Ouch. 3 gig isn't enough for an overcloud controller now? | 20:26 |
slagle | bnemec: i just started hitting that as well with 3gb | 20:27 |
bnemec | :-/ | 20:27 |
*** penick has quit IRC | 20:29 | |
greghaynes | wat | 20:31 |
* greghaynes wonders what changed | 20:31 | |
*** stevebaker has quit IRC | 20:33 | |
*** stevebaker has joined #tripleo | 20:33 | |
slagle | i'm not sure. especially since our vm's in CI only have 2gb | 20:33 |
slagle | and that seems to work | 20:33 |
*** penick has joined #tripleo | 20:34 | |
tchaypo | i386 vs amd64? | 20:36 |
openstackgerrit | Tzu-Mainn Chen proposed a change to openstack/tuskar-ui: Replace mock flavor api calls with real nova api calls https://review.openstack.org/115776 | 20:39 |
*** jpeeler has quit IRC | 20:41 | |
*** dprince has quit IRC | 20:41 | |
*** stevebaker has quit IRC | 20:43 | |
*** stevebaker has joined #tripleo | 20:43 | |
*** rlandy has joined #tripleo | 20:43 | |
*** jtomasek has joined #tripleo | 20:48 | |
lifeless | derekh: I'll link the bug if I have to rebase/recheck them again | 20:49 |
*** spzala has joined #tripleo | 20:49 | |
*** sdake_ has quit IRC | 20:50 | |
derekh | lifeless: k | 21:00 |
*** untriaged-bot has joined #tripleo | 21:00 | |
untriaged-bot | Untriaged bugs so far: | 21:00 |
untriaged-bot | https://bugs.launchpad.net/tuskar/+bug/1359297 | 21:00 |
uvirtbot | Launchpad bug 1359297 in tuskar "Creating a plan with a name that is already used returns a 500" [High,New] | 21:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1355898 | 21:00 |
uvirtbot | Launchpad bug 1355898 in tripleo "mariadb doesn't start after an upgrade" [Undecided,New] | 21:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1351010 | 21:00 |
*** untriaged-bot has quit IRC | 21:00 | |
uvirtbot | Launchpad bug 1351010 in ironic "Update to syslinux 6 breaks TFTPboot" [High,Confirmed] | 21:00 |
*** dshulyak_ has quit IRC | 21:09 | |
*** penick has quit IRC | 21:16 | |
*** yuanying has joined #tripleo | 21:17 | |
openstackgerrit | A change was merged to openstack/diskimage-builder: Remove hardcoded version. https://review.openstack.org/115456 | 21:19 |
*** yuanying has quit IRC | 21:22 | |
openstackgerrit | James Slagle proposed a change to openstack/tripleo-image-elements: Package install support for ironic https://review.openstack.org/115788 | 21:24 |
openstackgerrit | James Slagle proposed a change to openstack/tripleo-image-elements: Package install support for ironic-api https://review.openstack.org/115789 | 21:24 |
openstackgerrit | James Slagle proposed a change to openstack/tripleo-image-elements: Package install support for ironic-conductor https://review.openstack.org/115790 | 21:24 |
openstackgerrit | James Slagle proposed a change to openstack/tripleo-image-elements: Package install support for nova-ironic https://review.openstack.org/115791 | 21:24 |
chuckC_ | lifeless: please take a look at https://bugs.launchpad.net/neutron/+bug/1346494 and let me know if this is enough to close it | 21:25 |
uvirtbot | Launchpad bug 1346494 in neutron "l3 agent gw port missing vlan tag for vlan provider network" [Undecided,In progress] | 21:25 |
lifeless | chuckC_: did you test with a tripleo deploy or manual? | 21:25 |
chuckC_ | manual | 21:25 |
*** penick has joined #tripleo | 21:26 | |
chuckC_ | lifeless: is that an issue? | 21:26 |
lifeless | chuckC_: call me paranoid, but I'd like to make sure that it all works with a tripleo deployed stack | 21:27 |
lifeless | chuckC_: Just In Case | 21:27 |
chuckC_ | lifeless: ok | 21:28 |
openstackgerrit | James Slagle proposed a change to openstack/diskimage-builder: Add service mappings for ironic https://review.openstack.org/115793 | 21:32 |
*** lblanchard has quit IRC | 21:32 | |
openstackgerrit | James Slagle proposed a change to openstack/tripleo-image-elements: Package install support for ironic-api https://review.openstack.org/115789 | 21:33 |
openstackgerrit | James Slagle proposed a change to openstack/tripleo-image-elements: Package install support for nova-ironic https://review.openstack.org/115791 | 21:33 |
openstackgerrit | James Slagle proposed a change to openstack/tripleo-image-elements: Package install support for ironic-conductor https://review.openstack.org/115790 | 21:33 |
*** penick has quit IRC | 21:34 | |
openstackgerrit | A change was merged to openstack/tripleo-heat-templates: Remove hardcoded version. https://review.openstack.org/115450 | 21:35 |
*** jtomasek has quit IRC | 21:39 | |
*** marun has quit IRC | 21:42 | |
*** spzala has quit IRC | 21:46 | |
*** sdake has quit IRC | 21:47 | |
*** weshay has quit IRC | 21:50 | |
*** penick has joined #tripleo | 21:51 | |
*** julim has quit IRC | 21:52 | |
morganfainberg | lifeless, how often does the untriaged bot run? and... is it something that is specific for triple-o or more available for all of OpenStack | 22:00 |
*** derekh has quit IRC | 22:02 | |
lifeless | morganfainberg: rpodput it together, should be easily generalisable | 22:02 |
morganfainberg | lifeless, cool i might want the same thing in keystone, i see it here every now and again and it's cool! | 22:02 |
*** weshay has joined #tripleo | 22:03 | |
*** pcrews has quit IRC | 22:14 | |
*** yuanying has joined #tripleo | 22:18 | |
tchaypo | it'd be cooler if we never saw it | 22:19 |
tchaypo | ;) | 22:19 |
*** yuanying has quit IRC | 22:24 | |
*** rlandy has quit IRC | 22:48 | |
*** pcrews has joined #tripleo | 22:54 | |
openstackgerrit | A change was merged to openstack/tripleo-image-elements: PEP8 on the doc and elements files https://review.openstack.org/106319 | 23:13 |
*** eghobo has joined #tripleo | 23:17 | |
*** yuanying has joined #tripleo | 23:20 | |
*** vinsh has quit IRC | 23:23 | |
*** jang2 has quit IRC | 23:24 | |
*** yuanying has quit IRC | 23:24 | |
openstackgerrit | Ben Nemec proposed a change to openstack/diskimage-builder: Enable dracut deploy ramdisks https://review.openstack.org/105275 | 23:26 |
*** yuanying has joined #tripleo | 23:29 | |
lifeless | StevenK: do you have more fixtures branches, or thats it? | 23:34 |
*** eghobo has quit IRC | 23:36 | |
*** Hefeweizen has quit IRC | 23:45 | |
*** zaro has quit IRC | 23:45 | |
*** Hefeweizen has joined #tripleo | 23:45 | |
*** gothicmindfood has quit IRC | 23:46 | |
*** gothicmindfood has joined #tripleo | 23:46 | |
*** eghobo has joined #tripleo | 23:50 | |
*** wfoster has quit IRC | 23:53 | |
*** wfoster has joined #tripleo | 23:53 | |
*** openstackgerrit has quit IRC | 23:54 | |
*** openstackgerrit has joined #tripleo | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!