*** adiantum has joined #openstack | 00:01 | |
*** adiantum has quit IRC | 00:07 | |
*** zul has quit IRC | 00:08 | |
*** aimon has quit IRC | 00:17 | |
*** aimon has joined #openstack | 00:17 | |
*** adiantum has joined #openstack | 00:19 | |
*** arthurc has quit IRC | 00:24 | |
*** adiantum has quit IRC | 00:26 | |
*** adiantum has joined #openstack | 00:31 | |
*** dubsquared has quit IRC | 00:33 | |
*** kashyapc has quit IRC | 00:34 | |
*** adiantum has quit IRC | 00:39 | |
*** dragondm has quit IRC | 00:41 | |
*** adiantum has joined #openstack | 00:44 | |
*** johnpur has quit IRC | 00:49 | |
*** adiantum has quit IRC | 00:50 | |
*** kashyapc has joined #openstack | 00:51 | |
*** adiantum has joined #openstack | 00:55 | |
*** jdarcy has quit IRC | 01:00 | |
*** dfg_ has quit IRC | 01:04 | |
*** rlucio has quit IRC | 01:05 | |
nelson__ | Does swift has a "move this object over to this other container" function? I don't see it. | 01:06 |
---|---|---|
anticw | there is copy | 01:07 |
notmyname | nelson__: https://programmerthoughts.com/programming/server-side-object-copy-in-openstack-storage/ | 01:09 |
nelson__ | well, that's not FAIL. | 01:11 |
*** dirakx has joined #openstack | 01:11 | |
notmyname | did you expect it to be? | 01:12 |
nelson__ | We're gonna need that for uploading files that we don't want to publish immediately (because file upload happens before copyright permissions are retrieved). | 01:12 |
*** adiantum has quit IRC | 01:13 | |
nelson__ | not having server-side copy would be annoying. I suppose it would just mean more network traffic and more proxies needed. | 01:13 |
anticw | for large files you have to pay for a copy | 01:13 |
anticw | why not just not make them public? | 01:13 |
nelson__ | Because we ask for the file on one screen and then the copyright information in another. | 01:13 |
notmyname | the bandwidth is all internal, so, at least with RAX's implementation of swift, there would be no bandwidth charge | 01:13 |
anticw | same here, but 5G is still a chunk to copy | 01:14 |
anticw | if it was that large | 01:14 |
notmyname | ya | 01:14 |
nelson__ | In-between those two steps we need to keep the file private. | 01:14 |
nelson__ | I know we can do that with swift ... I'm just trying to dig further into the details. | 01:14 |
notmyname | how busy are those upload forms in requests per second? | 01:15 |
nelson__ | 20-30. | 01:15 |
notmyname | rough estimate | 01:15 |
notmyname | ok | 01:15 |
notmyname | would you be using your own auth system or using a provided one (ie swauth)? | 01:17 |
*** adiantum has joined #openstack | 01:18 | |
notmyname | it may be better to use ACLs in your auth system to control the publicness | 01:18 |
nelson__ | yes, it might. | 01:19 |
nelson__ | we'll have to see how the existing code works. | 01:19 |
notmyname | I want to talk to gholt tomorrow about this use case. we saw something last week (while I wasn't in the office) that may be similar | 01:20 |
*** mray has quit IRC | 01:22 | |
*** schisamo has quit IRC | 01:23 | |
nelson__ | Might be simplest just to adjust the ACL for that file. | 01:37 |
nelson__ | We don't actually NEED to change the container; just to make sure that it's not publicly readable. | 01:37 |
*** joearnold has quit IRC | 01:39 | |
*** dirakx has quit IRC | 01:43 | |
*** jdurgin has quit IRC | 01:48 | |
nelson__ | Are the items returned by get_container sorted? I don't see that in the documentation for hte function. | 01:49 |
notmyname | listings are sorted by name (container or object for their respective listings) | 01:49 |
nelson__ | Oh good, that's a useful property. | 01:51 |
notmyname | http://bazaar.launchpad.net/%7Ehudson-openstack/swift/trunk/annotate/head%3A/swift/common/db.py#L944 | 01:51 |
notmyname | especially look at line 991 | 01:52 |
notmyname | (ORDER BY) | 01:52 |
notmyname | the account listings (to show container) is ordered in the same way (see later in the same file) | 01:56 |
nelson__ | yep; it should be documented as part of the API, though. Otherwise it's just "yeah, we put this into the code, but we might take it out." | 01:57 |
nelson__ | knowwhaddimean? | 01:57 |
notmyname | heh, if we take out ordering of results, everything breaks (marker, end_marker, prefix, path, delimiter, ...) | 01:58 |
notmyname | nelson__: the latest cloud files dev guide (http://docs.rackspacecloud.com/files/api/v1/cf-devguide-20110104.pdf) which will be used as the basis of official swift api docs, mentions it | 02:00 |
nelson__ | Oh cool. I'll take a look at that. | 02:00 |
notmyname | ignore the CDN parts, cause that's part of the cloud files product and not a part of swift | 02:01 |
*** maplebed has quit IRC | 02:03 | |
*** adiantum has quit IRC | 02:08 | |
*** adiantum has joined #openstack | 02:15 | |
creiht | nelson__: and btw, the acls are on the container only | 02:16 |
nelson__ | ah! Okay, we will need to move from one container to another, then. | 02:17 |
nelson__ | No biggie. | 02:17 |
creiht | or upload to a staging server that then gets put into swift when copyright verified | 02:17 |
*** adiantum has quit IRC | 02:20 | |
*** adiantum has joined #openstack | 02:25 | |
*** rossij has joined #openstack | 02:36 | |
*** skrusty has quit IRC | 02:45 | |
*** hadrian has quit IRC | 02:48 | |
gholt | Making a write-only container should work fine, I'd think. A staging server would just be something that'd break. ;) | 02:50 |
gholt | The auth implementations don't currently allow public writes; but it'd be easy enough to alter them to do that. If you're okay with people uploading who knows what and you getting charged. | 02:52 |
creiht | heh | 02:53 |
*** skrusty has joined #openstack | 02:58 | |
*** zykes- has quit IRC | 03:04 | |
*** zykes- has joined #openstack | 03:04 | |
*** adiantum has quit IRC | 03:06 | |
*** adiantum has joined #openstack | 03:11 | |
*** crazed has quit IRC | 03:11 | |
*** zykes- has quit IRC | 03:17 | |
*** zykes- has joined #openstack | 03:17 | |
*** adiantum has quit IRC | 03:17 | |
*** gaveen has joined #openstack | 03:26 | |
*** gaveen has joined #openstack | 03:26 | |
*** kainam- has joined #openstack | 03:26 | |
*** adiantum has joined #openstack | 03:30 | |
*** mark_ has joined #openstack | 03:30 | |
*** _0x44_ has joined #openstack | 03:30 | |
*** karmabot` has joined #openstack | 03:33 | |
*** miclorb__ has joined #openstack | 03:34 | |
jeremyb | gholt: well you're not charged if you have unmetered network and your own cluster (i think those would both be true for nelson__) | 03:34 |
*** jbaker_ has joined #openstack | 03:34 | |
*** rossij has quit IRC | 03:34 | |
*** kainam has quit IRC | 03:34 | |
*** miclorb has quit IRC | 03:34 | |
*** openstackhudson has quit IRC | 03:34 | |
*** jimbaker has quit IRC | 03:34 | |
*** mark has quit IRC | 03:34 | |
*** karmabot has quit IRC | 03:34 | |
*** _0x44 has quit IRC | 03:34 | |
*** glenc has quit IRC | 03:34 | |
*** jtimberman has quit IRC | 03:34 | |
*** JordanRinke has quit IRC | 03:34 | |
*** brainproxy has quit IRC | 03:34 | |
*** _cerberus_ has quit IRC | 03:34 | |
*** klumpie has quit IRC | 03:34 | |
*** cory__ has quit IRC | 03:34 | |
*** smoser has quit IRC | 03:34 | |
*** Dweezahr has quit IRC | 03:34 | |
*** letterj has quit IRC | 03:34 | |
*** sunech has quit IRC | 03:34 | |
jeremyb | huh, never realized ma rk was here before | 03:35 |
creiht | woot | 03:36 |
jeremyb | he would certainly know! | 03:36 |
creiht | swauth is now merged into swift trunk | 03:36 |
creiht | colinnich: -^ | 03:36 |
jeremyb | then what is lp.net/~swauth ? | 03:36 |
jeremyb | dead? | 03:36 |
creiht | jeremyb: yeah | 03:36 |
creiht | swauth is now middleware that sits on top of the cluster | 03:37 |
jeremyb | cool. should it be production ready you think? (at least as of release time) | 03:37 |
creiht | on top of the proxy | 03:37 |
*** glenc has joined #openstack | 03:37 | |
*** jtimberman has joined #openstack | 03:37 | |
*** JordanRinke has joined #openstack | 03:37 | |
*** Dweezahr has joined #openstack | 03:37 | |
*** brainproxy has joined #openstack | 03:37 | |
*** _cerberus_ has joined #openstack | 03:37 | |
*** klumpie has joined #openstack | 03:37 | |
*** cory__ has joined #openstack | 03:37 | |
*** smoser has joined #openstack | 03:37 | |
*** letterj has joined #openstack | 03:37 | |
*** sunech has joined #openstack | 03:37 | |
*** zelazny.freenode.net sets mode: +vv _cerberus_ letterj | 03:37 | |
creiht | I hope so, as we are going to use it for our internal auth :) | 03:37 |
creiht | It is for sure better than the dev auth | 03:37 |
jeremyb | orly? for rax you mean? | 03:37 |
creiht | yes | 03:37 |
*** lvaughn_ has quit IRC | 03:38 | |
jeremyb | huh. can it be used for nova too? | 03:38 |
creiht | internal fir cloudfiles | 03:38 |
*** adiantum has quit IRC | 03:38 | |
creiht | jeremyb: as is, I doubt it | 03:38 |
jeremyb | does nova come with an auth server or require one? | 03:38 |
*** rossij has joined #openstack | 03:38 | |
creiht | not sure what would be needed to make it work for nova (or if that is even a good idea :)) | 03:38 |
* jeremyb wonders who the main swauth ppl are | 03:38 | |
creiht | jeremyb: I think the default is ldap, but it is pluggable | 03:39 |
creiht | jeremyb: gholt wrote most of it | 03:39 |
jeremyb | ahh. can swauth use ldap too? | 03:39 |
creiht | no | 03:39 |
jeremyb | :/ | 03:39 |
creiht | it just does the auth that is needed for swift, and backends it with swift itself | 03:39 |
jeremyb | huh, interesting | 03:40 |
gholt | Yeah, ldap backing would be ldauth or something. And does need to be written sometime. | 03:40 |
jeremyb | well i have to get cracking, bbl | 03:40 |
jeremyb | nelson__: 11 03:36:17 <+creiht> swauth is now merged into swift trunk | 03:41 |
creiht | jeremyb: I think xtoddx modified nova auth so that it can also be auth for swift | 03:41 |
jeremyb | also interesting | 03:41 |
jeremyb | i wonder what Ryan_Lane's doing | 03:42 |
jeremyb | nova natively supports ldap or he hacked it? | 03:42 |
creiht | nova's default auth is backed by ldap | 03:42 |
creiht | He added the needed keys to store swift like auth tokens (or something like that) | 03:43 |
jeremyb | right | 03:43 |
creiht | I haven't really done anything with nova yet, so it would probably be best to try to ask him how it works :) | 03:44 |
jeremyb | i don't really care enough atm | 03:44 |
jeremyb | but thanks | 03:44 |
*** adiantum has joined #openstack | 03:45 | |
*** openstackhudson has joined #openstack | 03:45 | |
creiht | :) | 03:45 |
jarrod | where can i get some more good systems for cloud servers for a good price | 03:53 |
*** zykes- has quit IRC | 03:54 | |
jarrod | ive been using dell | 03:54 |
jarrod | but they get $$$ | 03:54 |
* jeremyb </3 dell | 03:55 | |
*** zykes- has joined #openstack | 03:55 | |
jeremyb | i just heard today they sometimes sell a system with a given perc model and then a month later ship the same perc model but it's not really the same. (they don't make their own, sometimes adaptec, sometimes lsi) | 03:55 |
jeremyb | (perc is raid controller) | 03:56 |
jarrod | i was replacing with 3ware | 03:56 |
jarrod | but i believe that | 03:57 |
*** adiantum has quit IRC | 04:02 | |
*** zykes- has quit IRC | 04:02 | |
*** MarkAtwood has quit IRC | 04:07 | |
*** adiantum has joined #openstack | 04:07 | |
*** zykes- has joined #openstack | 04:09 | |
*** rlucio has joined #openstack | 04:13 | |
*** joearnold has joined #openstack | 04:19 | |
*** kashyapc has quit IRC | 04:23 | |
*** adiantum has quit IRC | 04:39 | |
*** MarkAtwood has joined #openstack | 04:40 | |
*** adiantum has joined #openstack | 04:44 | |
*** kashyapc has joined #openstack | 04:45 | |
*** troytoman has joined #openstack | 04:53 | |
*** rlucio has quit IRC | 05:00 | |
*** zykes- has quit IRC | 05:00 | |
*** zykes- has joined #openstack | 05:01 | |
*** adiantum has quit IRC | 05:09 | |
*** adiantum has joined #openstack | 05:15 | |
*** joearnold has quit IRC | 05:20 | |
*** ccustine has joined #openstack | 05:22 | |
*** pandemicsyn has joined #openstack | 05:26 | |
*** ChanServ sets mode: +v pandemicsyn | 05:26 | |
*** pandemicsyn has quit IRC | 05:28 | |
*** ccustine has quit IRC | 05:28 | |
*** adiantum has quit IRC | 05:37 | |
*** syn_ has joined #openstack | 05:37 | |
*** syn_ is now known as pandemicsyn | 05:38 | |
*** ChanServ sets mode: +v pandemicsyn | 05:38 | |
*** adiantum has joined #openstack | 05:39 | |
openstackhudson | Project nova build #380: SUCCESS in 1 min 24 sec: http://hudson.openstack.org/job/nova/380/ | 05:44 |
openstackhudson | Tarmac: Adds support to nova-manage to modify projects | 05:44 |
Xenith | I usually pick up Supermicro systems. Very good hardware and support. | 05:47 |
openstackhudson | Project nova build #381: SUCCESS in 1 min 20 sec: http://hudson.openstack.org/job/nova/381/ | 05:49 |
openstackhudson | Tarmac: Fixes the metadata forwarding to work by default. | 05:49 |
openstackhudson | This branch also moves get_my_ip into flags.py from utils.py and sets up a flag called my_ip. Any flag that was using get_my_ip can just use '$my_ip' as the default value. This allows a user to change all ips by changing one flag. | 05:49 |
*** f4m8_ is now known as f4m8 | 05:49 | |
*** adiantum has quit IRC | 05:51 | |
*** mray has joined #openstack | 05:55 | |
*** adiantum has joined #openstack | 05:58 | |
*** medmaster0 has joined #openstack | 05:59 | |
medmaster0 | hey guys | 05:59 |
medmaster0 | i got a question can someone help? | 05:59 |
*** trin_cz has quit IRC | 06:00 | |
*** adiantum has quit IRC | 06:05 | |
*** adiantum has joined #openstack | 06:11 | |
*** medmaster0 has quit IRC | 06:14 | |
openstackhudson | Project nova build #382: SUCCESS in 1 min 22 sec: http://hudson.openstack.org/job/nova/382/ | 06:19 |
openstackhudson | Tarmac: A few more changes to the smoeketests. Allows smoketests to find the nova package from the checkout. Adds smoketests for security groups. Also fixes a couple of typos. | 06:19 |
*** ramkrsna has joined #openstack | 06:26 | |
*** MarkAtwood has quit IRC | 06:29 | |
*** ramkrsna has quit IRC | 07:07 | |
*** _0x44_ is now known as _0x44 | 07:14 | |
*** ChanServ sets mode: +v _0x44 | 07:14 | |
_0x44 | jaypipes-afk: Is there any chance we can get swift installed as a package on the glance hudson? | 07:19 |
*** ramkrsna has joined #openstack | 07:20 | |
*** befreax has joined #openstack | 07:23 | |
*** aimon_ has joined #openstack | 07:33 | |
*** aimon has quit IRC | 07:35 | |
*** aimon_ is now known as aimon | 07:35 | |
*** adiantum has quit IRC | 07:36 | |
*** adiantum has joined #openstack | 07:41 | |
*** littleidea has joined #openstack | 07:52 | |
*** brd_from_italy has joined #openstack | 07:57 | |
*** rcc has joined #openstack | 07:59 | |
*** adiantum has quit IRC | 08:07 | |
*** calavera has joined #openstack | 08:17 | |
*** adiantum has joined #openstack | 08:19 | |
*** rcc has quit IRC | 08:19 | |
*** adiantum has quit IRC | 08:33 | |
*** ibarrera has joined #openstack | 08:37 | |
*** miclorb__ has quit IRC | 08:38 | |
*** damon__ has quit IRC | 08:42 | |
*** fabiand_ has joined #openstack | 08:46 | |
*** DigitalFlux has joined #openstack | 08:52 | |
*** adiantum has joined #openstack | 08:53 | |
DigitalFlux | Hi | 08:54 |
DigitalFlux | I see that someone removed the sections "Setup a Cloud Controller" and "setup a Compute controller" from the MultiServer" installation wiki page .. | 08:54 |
DigitalFlux | http://wiki.openstack.org/NovaInstall/MultipleServer | 08:54 |
*** adiantum has quit IRC | 09:11 | |
*** kashyapc has quit IRC | 09:14 | |
*** adiantum has joined #openstack | 09:24 | |
*** miclorb has joined #openstack | 09:25 | |
*** allsystemsarego has joined #openstack | 09:41 | |
*** allsystemsarego has joined #openstack | 09:41 | |
*** dizz|away has quit IRC | 09:45 | |
*** kashyapc has joined #openstack | 09:45 | |
*** adiantum has quit IRC | 09:51 | |
*** miclorb has quit IRC | 10:09 | |
*** omidhdl has joined #openstack | 10:09 | |
*** irahgel has joined #openstack | 10:12 | |
*** pcoca has joined #openstack | 10:14 | |
*** kashyapc has quit IRC | 10:17 | |
*** kashyapc has joined #openstack | 10:18 | |
soren | ttx: How are we doing on reviews? | 10:18 |
ttx | soren: let me run the script | 10:19 |
ttx | $ python brstats.py | 10:19 |
ttx | glance: 1 / 5 completed (should be 3 by eod) | 10:19 |
ttx | swift: 4 / 8 completed (should be 4 by eod) | 10:19 |
ttx | nova: 3 / 22 completed (should be 13 by eod) | 10:19 |
ttx | so swift is looking good, glance is a bit behind, nova is worryingly behind | 10:20 |
ttx | At this point I'm mostly concerned by the branches that didn't get reviewed even once | 10:21 |
ttx | Especially https://code.launchpad.net/~ntt-pf-lab/nova/ipv6-support/+merge/45228 | 10:21 |
ttx | soren: could you review that one today ? | 10:22 |
soren | The reason I haven't is that ipv6 is a bit of a mystery to me. | 10:23 |
soren | So I'll have difficulties reviewing that actually interesting bits. | 10:23 |
* soren carefully glances at it. | 10:24 | |
soren | Oh, ffs. It's about as long as the live migration patch. That was a killer. | 10:24 |
ttx | then we need to find someone in nova-core for which it isn't a mystery | 10:24 |
ttx | soren: yes, hence me worrying. it's not exactly easy to review. | 10:25 |
ttx | the sheepdog thing is very simple in comparison :) | 10:25 |
soren | That one kind of surprised me. | 10:26 |
soren | I thought they'd use sheepdog for instance storage, not just EBS volumes | 10:26 |
soren | To easy live migration. | 10:26 |
soren | s/easy/ease/ | 10:26 |
soren | meh | 10:26 |
*** kashyapc has quit IRC | 10:36 | |
*** sandywalsh has quit IRC | 10:49 | |
*** sandywalsh has joined #openstack | 11:03 | |
soren | phew. | 11:06 |
fraggeln | soren: you fixed it? :D | 11:09 |
*** arthurc has joined #openstack | 11:11 | |
*** omidhdl1 has joined #openstack | 11:12 | |
*** omidhdl has quit IRC | 11:12 | |
soren | fraggeln: I finished a review. | 11:13 |
soren | fraggeln: I fixed something right before then, though :) | 11:13 |
*** adiantum has joined #openstack | 11:13 | |
soren | ttx: Hey, how about a SupyBot plugin that notifies us when there's a new bmp? | 11:14 |
soren | ttx: #twisted has a bot that posts the list of pending reviews every 5 hours. | 11:15 |
Xenith | That is one big patch. | 11:15 |
ttx | soren: that would be a bit noisy. Also would fail to prioritize | 11:15 |
Xenith | Good functionality, though :) | 11:15 |
ttx | soren: I see some nagging value in it though :) | 11:15 |
soren | ttx: it's all about the nagging. | 11:16 |
* soren nags himself to go to lunch | 11:16 | |
* soren succeeds and wanders off | 11:16 | |
*** brd_from_italy has quit IRC | 11:20 | |
fraggeln | soren: lunch is the shit :) | 11:20 |
fraggeln | soren: btw, you are from the nordic region yes? | 11:21 |
*** rcc has joined #openstack | 11:30 | |
*** brd_from_italy has joined #openstack | 11:36 | |
*** littleidea has quit IRC | 11:36 | |
*** littleidea has joined #openstack | 11:36 | |
*** guigui1 has joined #openstack | 11:39 | |
*** littleidea has quit IRC | 11:41 | |
*** sandywalsh has quit IRC | 11:49 | |
*** omidhdl1 has quit IRC | 11:49 | |
*** sandywalsh has joined #openstack | 11:49 | |
sandywalsh | o/ | 11:52 |
ttx | sandywalsh: o/ | 12:00 |
*** arthurc has left #openstack | 12:01 | |
*** befreax has quit IRC | 12:03 | |
soren | fraggeln: I am indeed. Denmark, specifically. | 12:09 |
fraggeln | My first guess was sweden, but its the same shit anyway :D | 12:14 |
ttx | ahh, don't say that to him ! | 12:16 |
fraggeln | :/ | 12:18 |
fraggeln | great work btw, we are planning on implementing swift as a backend storage for our backup-software. | 12:19 |
fraggeln | its looking very good so far. | 12:19 |
ttx | Got a spam selling Cocoa beans by the ton. That sounds rather specialized. | 12:21 |
ttx | PAYMENT: NEGOTIABLE | 12:22 |
*** befreax has joined #openstack | 12:24 | |
openstackhudson | Project nova build #383: SUCCESS in 1 min 24 sec: http://hudson.openstack.org/job/nova/383/ | 12:24 |
openstackhudson | Tarmac: Implementation of xs-console blueprint (adds support for console proxies like xvp) | 12:24 |
openstackhudson | If you spin up the nova-console service, you should be able to see the xvp.conf being edited, and the xvp daemon started/stopped if you exercise the openstack console api (consoles sub-resource on servers) | 12:24 |
* soren likes how Tarmac now includes output there. | 12:24 | |
ttx | yes, I love that | 12:25 |
*** ctennis has quit IRC | 12:27 | |
*** colinnich has quit IRC | 12:28 | |
*** trin_cz has joined #openstack | 12:28 | |
*** ctennis has joined #openstack | 12:50 | |
*** irahgel has quit IRC | 12:52 | |
*** brd_from_italy1 has joined #openstack | 12:56 | |
*** brd_from_italy has quit IRC | 12:56 | |
*** irahgel has joined #openstack | 13:04 | |
*** rcc has quit IRC | 13:14 | |
*** MarkAtwood has joined #openstack | 13:30 | |
*** ramkrsna has quit IRC | 13:32 | |
*** trin_cz has quit IRC | 13:46 | |
*** uvirtbot has quit IRC | 14:01 | |
*** uvirtbot has joined #openstack | 14:02 | |
*** kashyapc has joined #openstack | 14:06 | |
*** rcc has joined #openstack | 14:09 | |
*** trin_cz has joined #openstack | 14:15 | |
*** lvaughn has joined #openstack | 14:15 | |
*** ppetraki has joined #openstack | 14:18 | |
*** openstackhudson has quit IRC | 14:20 | |
soren | openstackhudson: See you in a bit. | 14:20 |
*** openstackhudson has joined #openstack | 14:20 | |
soren | Darn it. | 14:21 |
*** BK_man has joined #openstack | 14:22 | |
soren | mtaylor: Monty! | 14:22 |
*** skrusty has quit IRC | 14:26 | |
*** irahgel1 has joined #openstack | 14:33 | |
*** irahgel has quit IRC | 14:35 | |
*** skrusty has joined #openstack | 14:40 | |
jt_zg | Morning @ everyone awake at this ungodly hour! | 14:42 |
*** troytoman has quit IRC | 14:42 | |
notmyname | jt_zg: heh, I've got kids that have been up for 3 hours :-) | 14:44 |
jt_zg | notmyname, I think they call that cruel and unusual punishment here. | 14:44 |
*** littleidea has joined #openstack | 14:46 | |
*** f4m8 is now known as f4m8_ | 14:48 | |
*** gaveen has quit IRC | 14:51 | |
*** MarkAtwood has quit IRC | 14:53 | |
*** abecc has joined #openstack | 14:58 | |
*** littleidea has quit IRC | 14:58 | |
*** littleidea has joined #openstack | 14:58 | |
*** gondoi has joined #openstack | 15:02 | |
*** littleidea has quit IRC | 15:03 | |
*** westmaas has joined #openstack | 15:04 | |
*** rnirmal has joined #openstack | 15:08 | |
*** reldan has joined #openstack | 15:11 | |
*** hadrian has joined #openstack | 15:15 | |
*** allsystemsarego has quit IRC | 15:16 | |
*** jdarcy has joined #openstack | 15:16 | |
*** ilya_ has joined #openstack | 15:20 | |
*** lorinmh has joined #openstack | 15:21 | |
*** ilya_ has quit IRC | 15:22 | |
*** adiantum_ has joined #openstack | 15:23 | |
*** joearnold has joined #openstack | 15:29 | |
*** jdarcy has quit IRC | 15:40 | |
*** joearnold has quit IRC | 15:41 | |
*** littleidea has joined #openstack | 15:42 | |
*** johnpur has joined #openstack | 15:46 | |
*** ChanServ sets mode: +v johnpur | 15:46 | |
*** rcc has quit IRC | 15:47 | |
*** jdarcy has joined #openstack | 15:48 | |
*** DigitalFlux has quit IRC | 15:53 | |
*** guigui1 has quit IRC | 15:57 | |
*** rcc has joined #openstack | 15:58 | |
*** lvaughn has quit IRC | 16:04 | |
*** dragondm has joined #openstack | 16:05 | |
tr3buchet | feedback welcome: https://blueprints.launchpad.net/nova/+spec/instance-state-arbiter | 16:12 |
*** zul has joined #openstack | 16:15 | |
sandywalsh | I see you looking at the bug list | 16:24 |
sandywalsh | I see you reviewing blueprints | 16:25 |
sandywalsh | you should be reviewing this merge-prop | 16:25 |
sandywalsh | https://code.launchpad.net/~sandy-walsh/nova/api-parity/+merge/45371 | 16:25 |
sandywalsh | :) | 16:25 |
*** calavera has quit IRC | 16:27 | |
*** hggdh has joined #openstack | 16:27 | |
*** Cybo has joined #openstack | 16:32 | |
*** kashyapc has quit IRC | 16:34 | |
*** dubsquared1 has joined #openstack | 16:36 | |
*** dfg_ has joined #openstack | 16:39 | |
*** jaypipes-afk is now known as jaypipes | 16:42 | |
*** lvaughn has joined #openstack | 16:44 | |
tr3buchet | i already reviewed that sandy! | 16:44 |
*** reldan has quit IRC | 16:47 | |
*** grizzletooth has joined #openstack | 16:47 | |
*** grizzletooth has left #openstack | 16:47 | |
sandywalsh | haha, wasn't talking to you specifically tr3buchet ... your place in heaven is already secured. | 16:48 |
Ryan_Lane | jeremyb: I haven't done any LDAP work in swift ;) | 16:49 |
Ryan_Lane | jeremyb: it would be really unlikely for us to use LDAP for that, so I haven't bothered | 16:50 |
jeremyb | right | 16:50 |
jeremyb | i thought maybe ldap in nova was you | 16:50 |
Ryan_Lane | I've rewritten a bunch of it | 16:50 |
jeremyb | but it sounds like that's the main way so it would have predated you | 16:50 |
jeremyb | ahh | 16:50 |
Ryan_Lane | modified the schema, etc | 16:50 |
* jeremyb has to work quick so he can go meet ragesoss and friends | 16:51 | |
jeremyb | have you met him? | 16:51 |
Ryan_Lane | heh | 16:51 |
Ryan_Lane | yeah. at foundation officies | 16:51 |
jeremyb | k | 16:51 |
Ryan_Lane | offices* | 16:51 |
*** reldan has joined #openstack | 16:54 | |
tr3buchet | sweet! | 16:54 |
*** Whoop has joined #openstack | 16:55 | |
* JordanRinke looks around | 16:57 | |
*** kashyapc has joined #openstack | 16:58 | |
*** brd_from_italy1 has quit IRC | 17:00 | |
*** gondoi has quit IRC | 17:01 | |
*** reldan has quit IRC | 17:05 | |
dabo | general question on async call problems: if we're not waiting around for the async call to return, should the call raise exceptions? IOW, there's nothing around to handle them. Would it be better to simply catch the exception and record it in the log? | 17:05 |
jeremyb | anyone know George Vanecek? <http://www.meetup.com/OpenStack-New-York-Meetup/calendar/15634525/> | 17:08 |
sandywalsh | dabo, I think so long as it's caught high enough up, it will permit us to do things like pubsubhubbub/http callbacks or just log it for the short term. | 17:09 |
dabo | sandywalsh: the API calls return immediately, so there is nothing waiting for the response from the async call. In the case of password reset, the timeout is 30 seconds, so the TimeoutError doesn't happen until then. | 17:10 |
dabo | I see tracebacks in the compute log for these; I think simply catching the timeout and logging it would be cleaner. | 17:11 |
BK_man | hi all! | 17:12 |
sandywalsh | dabo, yeah, good point. There's no cohesive plan for notifications on completion (be it a callback/email/etc). Perhaps others have plans for that? New bp? | 17:12 |
BK_man | gents, who is managing nova.openstack.org/tarballs/ ? | 17:12 |
sandywalsh | dabo, actually, come to think of it. It should just write to a notification queue | 17:12 |
dabo | sandywalsh: does sprinkle's proposed blueprint address this? https://blueprints.launchpad.net/nova/+spec/instance-state-arbiter/ | 17:12 |
BK_man | in trunk I can see bin/nova-combined but there is no bin/nova-combined in latest available tarball (bzr543). | 17:13 |
sandywalsh | dabo, no, different animal | 17:14 |
dabo | sandywalsh: really? Your idea of a notification queue would seem to tie in nicely | 17:15 |
sandywalsh | dabo, his proposal could be used when polling is required since it's kind of a cron-job service. But when we're actively waiting for results and have no where to report them ... | 17:17 |
*** opengeard has quit IRC | 17:18 | |
dabo | sandywalsh: exactly: if we had somewhere to report them (e.g., a notification queue), his proposed system could listen for these, and update things accordingly. | 17:19 |
jarrod | what are some good cost servers to use for cloud servers? | 17:22 |
sandywalsh | dabo, yeah, so long as the event gets written to the queue, tr3buchet's service or anything else can listen for it. | 17:24 |
*** gondoi has joined #openstack | 17:25 | |
*** lvaughn has quit IRC | 17:31 | |
*** lvaughn has joined #openstack | 17:32 | |
*** littleidea has quit IRC | 17:34 | |
JordanRinke | jarrod: depends what you want to do, your buying capacity etc. | 17:34 |
*** mray has joined #openstack | 17:37 | |
jarrod | i know that | 17:37 |
jarrod | im asking for any other cost sensitive solutiosn than major brands like dell | 17:37 |
*** ibarrera has quit IRC | 17:38 | |
*** ccustine has joined #openstack | 17:42 | |
critch | jarrod: http://www.pricewatch.com/servers/ | 17:42 |
fabiand_ | jarrod: In europe? | 17:43 |
*** pcoca has quit IRC | 17:44 | |
*** troytoman has joined #openstack | 17:50 | |
*** jdurgin has joined #openstack | 17:50 | |
*** hadrian has quit IRC | 17:50 | |
*** joearnold has joined #openstack | 17:50 | |
*** reldan has joined #openstack | 17:50 | |
*** hadrian has joined #openstack | 18:00 | |
*** dendrobates is now known as dendro-afk | 18:07 | |
*** maplebed has joined #openstack | 18:08 | |
*** dendro-afk is now known as dendrobates | 18:09 | |
*** rlucio has joined #openstack | 18:09 | |
uvirtbot | New bug: #701575 in nova "install_venv.py does not install virtualenv if missing" [Undecided,New] https://launchpad.net/bugs/701575 | 18:11 |
*** ccustine has quit IRC | 18:13 | |
*** hggdh has quit IRC | 18:13 | |
*** ccustine has joined #openstack | 18:15 | |
*** alekibango has quit IRC | 18:16 | |
*** rcc has quit IRC | 18:16 | |
jarrod | is there a maximum amount of memory that openstack supports? | 18:21 |
jarrod | im currently only using 16gb | 18:21 |
*** Ryan_Lane is now known as Ryan_Lane|food | 18:24 | |
*** Ryan_Lane|food has quit IRC | 18:26 | |
*** westmaas has quit IRC | 18:27 | |
*** befreax has quit IRC | 18:28 | |
sirp- | dubs, jk0: these are the errors im seeing in nova/trunk: http://paste.openstack.org/show/464/ | 18:30 |
jk0 | sirp-: I just got the same thing | 18:31 |
jk0 | I'll try on my mac | 18:31 |
dubs | same here | 18:31 |
* jk0 waits for venv | 18:34 | |
sirp- | jk0: btw, im running with out venv for the moment, had good success in the past with tests passing without the hassle of setting up the venv | 18:35 |
jk0 | yeah, I don't use venv either | 18:36 |
jk0 | only when running tests on OS X | 18:36 |
jk0 | just want to see if it works outside of our env | 18:36 |
*** ccustine has quit IRC | 18:38 | |
jk0 | sirp-: tests fail in fresh OS X trunk pull | 18:43 |
jk0 | oh, nm, different issue | 18:43 |
jk0 | openssl | 18:43 |
jk0 | I'll try in a fresh ubuntu 10.10 slice | 18:44 |
sirp- | jk0: cool, thx | 18:44 |
lorinmh | I just posted my first bug report to OpenStack (#701575), as well as a potential bugfix branch. Is there anything else I need to do in order to get the proposed fix reviewed? Wasn't sure if I need to propose the branch for a merge or if it will get checked when somebody on the team takes a look at the bug. | 18:47 |
notmyname | lorinmh: you should propose it for merging. if nothing else, it gives a central place to comment on the patch | 18:49 |
lorinmh | notmyname: Will do. | 18:49 |
*** ccustine has joined #openstack | 18:50 | |
dabo | jk0: sirp- I'm seeing the same errors on OS X, no venv | 18:54 |
jk0 | sirp-: all tests pass on a fresh ubuntu 10.10 slice with trunk | 18:57 |
*** lorinmh1 has joined #openstack | 18:57 | |
*** lorinmh1 has left #openstack | 18:57 | |
sirp- | jk0: without venv? | 18:57 |
jk0 | yep, w/o | 18:57 |
*** lorinmh1 has joined #openstack | 18:57 | |
jk0 | I'll try it with too | 18:57 |
*** lorinmh1 has left #openstack | 18:58 | |
dabo | jk0: sirp- Same fail on my 10.10 system in the castle lab | 18:58 |
*** mray has quit IRC | 18:59 | |
*** colinnich has joined #openstack | 19:00 | |
*** lorinmh has quit IRC | 19:00 | |
ttx | Team meeting in two hours in #openstack-meeting | 19:02 |
*** mray has joined #openstack | 19:02 | |
*** Ryan_Lane has joined #openstack | 19:04 | |
*** lorinh1 has joined #openstack | 19:05 | |
jk0 | sirp-: tests *fail* using venv on fresh ubuntu 10.10 slice, pass not using venv | 19:09 |
* nelson__ causes trouble. | 19:09 | |
*** sophiap has joined #openstack | 19:09 | |
*** phymata has joined #openstack | 19:11 | |
dabo | jk0: I'm not using venv on 10.10, and they're failing | 19:11 |
jk0 | dabo: you are trying it within our dev env, this is on a fresh slice | 19:11 |
jk0 | something weird is going on | 19:12 |
dabo | jk0: yes, but until the last pull it was working fine | 19:12 |
jk0 | right, that's what we're trying to figure out | 19:12 |
jk0 | what changed that it works on a fresh slice but not out dev env | 19:12 |
jk0 | *our | 19:13 |
*** kpepple has joined #openstack | 19:13 | |
*** dirakx has joined #openstack | 19:14 | |
*** trin_cz has quit IRC | 19:16 | |
*** littleidea has joined #openstack | 19:17 | |
*** BK_man has quit IRC | 19:25 | |
*** irahgel1 has quit IRC | 19:29 | |
*** adiantum has quit IRC | 19:30 | |
soren | mtaylor: Ok, so the nova-tarball job was busted on Hudson. | 19:33 |
soren | mtaylor: http://hudson.openstack.org/job/nova-tarball/136/console | 19:34 |
mtaylor | soren: yup. I saw | 19:34 |
soren | mtaylor: Did you see my workaround? | 19:34 |
mtaylor | soren: no. what did you do? | 19:34 |
soren | mtaylor: nova-tarball was set to use the SCM settings from nova. | 19:34 |
mtaylor | ah. ok. cool | 19:34 |
soren | mtaylor: Instead, I copied the actual settings from nova. | 19:34 |
soren | That was it. | 19:34 |
mtaylor | cool. I think I can start poking at where to fix that for real then | 19:35 |
soren | No clue why that worked. No clue why I tried. | 19:35 |
sirp- | jk0: i re-ran the tests (with no changes!), and they just passed | 19:35 |
jk0 | hm, strange | 19:35 |
jk0 | I'll try again too | 19:35 |
jk0 | sirp-: they just passed for me too, wtf | 19:37 |
soren | mtaylor: Oh, and once again, I found a bunch of files in /usr/lib/python that were owned by hudson. | 19:37 |
mtaylor | soren: WEIRD | 19:38 |
soren | mtaylor: Yeah. Make it stop, please :) | 19:38 |
soren | mtaylor: Does anything still use virtualenv | 19:38 |
soren | ? | 19:38 |
mtaylor | not in my world | 19:38 |
* soren goes looking in /var/lib/dhuson | 19:38 | |
soren | hudson, even. | 19:38 |
dabo | sirp-: jk0: no love here. Just ran again, and same fail | 19:39 |
sirp- | jk0: is it possible that the tests broke at the same *time* | 19:39 |
mtaylor | soren: well, bash run_tests.sh | 19:39 |
mtaylor | is in test_nova.sh | 19:39 |
sirp- | hmm | 19:39 |
soren | bash run_tests.sh -N, surely? | 19:40 |
soren | Yes. | 19:40 |
mtaylor | soren: btw- it would be EVERSOGREAT if we didn't leave so many thousands of tmpdirs in /tmp | 19:40 |
mtaylor | soren: what's -N ? | 19:40 |
mtaylor | soren: and yes, there is a -N there | 19:40 |
mtaylor | soren: I _really_ want to change that to be python setup.py test intead - can I do that yet? | 19:41 |
soren | -N means "don't use virtualenv" | 19:41 |
mtaylor | sigh | 19:41 |
soren | That's good! | 19:41 |
* mtaylor punches virtualenv in the kidney | 19:42 | |
soren | What are those tmpdirs all about? | 19:42 |
soren | Oh, images. | 19:42 |
soren | Ok, I'm going to run hudson's postinst again just to see if it mangles something in /usr/lib/python again. | 19:43 |
mtaylor | ok | 19:43 |
mtaylor | jaypipes: whatever happened to your branch to get rid of run_tests.py ? | 19:44 |
soren | the hell? | 19:44 |
mtaylor | soren: did it? | 19:44 |
eday | mtaylor: I got rid of it, then termie added it back again, but simply as a nose wrapper for pretty output | 19:46 |
eday | it's no longer a nova-specific test harness doing some setup beforehand | 19:46 |
soren | mtaylor: Yes. Yes, it did. | 19:46 |
mtaylor | eday: python setup.py test does not work | 19:46 |
mtaylor | soren: it's that find command | 19:47 |
soren | mtaylor: It is. I just dont' quite understand how or why. | 19:47 |
mtaylor | eday: without run_tests.sh being called. | 19:47 |
eday | mtaylor: hmm, so, in theory, nosetests should work just fine still | 19:47 |
soren | I will soon, though. | 19:47 |
* soren applied stubbornness | 19:47 | |
mtaylor | eday: it doesn't | 19:47 |
eday | mtaylor: oh, with 1 issue, does the sqlite db needs to be removed between noe runs | 19:47 |
eday | nova.sqlite | 19:48 |
sirp- | jk0, dabo: tests pass on the second try :/ | 19:48 |
mtaylor | eday: ok. that works | 19:48 |
jk0 | sirp-: they're still good for me, too. not sure what the deal is | 19:48 |
mtaylor | that's pretty fail. why doesn't it clean up after itself? grumble grumble | 19:48 |
dabo | sirp-: I'm on like my tenth try. None of them, even the second, passed | 19:48 |
openstackhudson | Project nova build #384: SUCCESS in 1 min 24 sec: http://hudson.openstack.org/job/nova/384/ | 19:48 |
openstackhudson | Tarmac: Fixed a number of issues with the iptables firewall backend: | 19:48 |
openstackhudson | * Port specifications for firewalls come back from the data store as integers, but were compared as strings. | 19:48 |
openstackhudson | * --icmp-type was misspelled as --icmp_type (underscore vs dash) | 19:48 |
openstackhudson | * There weren't any unit tests for these issues. | 19:48 |
soren | Bam! | 19:48 |
eday | mtaylor: I tried, it's a mess sinse there is session caching between tests with a singleton | 19:48 |
eday | sinse? man brain not working today | 19:49 |
mtaylor | eday: hehe | 19:50 |
jk0 | eday: have a bacon cheeseburger, that ought to get the cells moving ;) | 19:50 |
mtaylor | eday: oh well. one of these days | 19:50 |
*** hadrian has quit IRC | 19:50 | |
eday | mtaylor: I tried switching to a memory-only db for tests, but that broke too because *sometimes* there is a different session var | 19:50 |
eday | mtaylor: I decided to save it for another day :) | 19:50 |
mtaylor | ++ | 19:51 |
eday | jk0: that would only slow things down further, and make it more toxic :) | 19:51 |
jk0 | haha | 19:51 |
eday | although I did have an amazing vegan bacon cheeseburger when I was in NYC in oct, mmm | 19:51 |
eday | along with a vegan butterfinger shake | 19:52 |
jk0 | I tried the veggie burger from BK last night. wasn't impressed | 19:52 |
* creiht ponders how that can even be possible :) | 19:52 | |
eday | jk0: does BK have anything that impresses you? | 19:52 |
jk0 | not really :( | 19:52 |
jk0 | well, except the BK stackers | 19:52 |
soren | mtaylor: Ok, I've found the culprit. | 19:52 |
soren | mtaylor: /var/lib/hudson/src/nova/test-venv | 19:53 |
soren | mtaylor: More specifically /var/lib/hudson/src/nova/test-venv/.nova-venv/lib/python2.6 | 19:53 |
mtaylor | ha | 19:54 |
soren | mtaylor: Is that needed for anything? | 19:54 |
eday | creiht: http://www.blossomnyc.com/ try it if you are ever there :) | 19:54 |
mtaylor | soren: nope | 19:54 |
eday | creiht: I was surprised too | 19:54 |
*** westmaas has joined #openstack | 19:54 | |
mtaylor | soren: although - shouldn't that find command be fixed to not follow symlinks? | 19:54 |
soren | mtaylor: Quite likely, yes. | 19:54 |
soren | mtaylor: Not sure where to report bugs about it though. | 19:55 |
creiht | eday: interesting | 19:55 |
soren | mtaylor: It most likely involves something insane like Jira or whatnot. | 19:55 |
* soren shudders at the thought | 19:55 | |
mtaylor | soren: directly on hudson ... if you can fix the find command, I can follow up on the bug | 19:55 |
*** trin_cz has joined #openstack | 19:55 | |
creiht | The components sound like they would taste good, but at what point does it really stop being a bacon cheesburger, and just let it stand on its own merits? :) | 19:55 |
*** sophiap has quit IRC | 19:56 | |
eday | creiht: agreed, could stand on its own. I guess it's just easier to describe it that way | 19:57 |
soren | mtaylor: Wicked. Give me a minute to test my changes. | 19:58 |
*** kpepple has quit IRC | 19:58 | |
soren | mtaylor: ...but are you saying Hudson has a bugtracker? | 19:58 |
soren | mtaylor: I mean... The software, not the project. | 19:58 |
*** hadrian has joined #openstack | 19:58 | |
*** gustavomzw has joined #openstack | 19:59 | |
mtaylor | soren: oh no. they use jira | 19:59 |
mtaylor | soren: I'm just saying I'm in there already, so getting a patch submitted shouldn't be too terrible | 19:59 |
ttx | Team meeting in one hour in #openstack-meeting | 20:01 |
*** gustavomzw has quit IRC | 20:01 | |
*** irahgel has joined #openstack | 20:01 | |
soren | mtaylor: http://pastebin.com/GvswrHc3 | 20:02 |
* soren breaks | 20:04 | |
dabo | sirp-: jk0: I've verified that tests pass in r542 but fail in r543. Looking further... | 20:05 |
*** mray has quit IRC | 20:07 | |
*** fabiand_ has quit IRC | 20:09 | |
nelson__ | Is there a standard cluster sysadmin solution recommended for OpenStack? I'm looking in the direction of Puppet, but are there other choices? | 20:11 |
*** kpepple has joined #openstack | 20:13 | |
ttx | nelson__: The other choice would be Chef. | 20:15 |
nelson__ | ja sure! B0rk, b0rk, b0rk! | 20:16 |
*** sophiap has joined #openstack | 20:21 | |
*** ctennis has quit IRC | 20:22 | |
creiht | nelson__: Chef and puppet are both mentioned often on here | 20:22 |
creiht | I doubt there will be an "annointed" deployment system for openstack | 20:23 |
*** PiotrSikora has quit IRC | 20:26 | |
*** WonTu has joined #openstack | 20:26 | |
*** WonTu has left #openstack | 20:26 | |
nelson__ | Would make the installation instructions easier if there was. | 20:27 |
nelson__ | Cuz once there was, the "other" unchosen one would feel the pressure to contribute docs. | 20:27 |
nelson__ | Two sets for the price of one. :) | 20:28 |
*** PiotrSikora has joined #openstack | 20:30 | |
dabo | sirp-: jk0: deleting the nova.sqlite file first fixed the errors | 20:32 |
*** littleidea has quit IRC | 20:32 | |
jk0 | ah | 20:34 |
*** ccustine has quit IRC | 20:34 | |
*** adiantum has joined #openstack | 20:36 | |
*** irahgel has left #openstack | 20:38 | |
*** trin_cz has quit IRC | 20:39 | |
*** pandemicsyn has quit IRC | 20:39 | |
*** zykes- has quit IRC | 20:39 | |
*** pothos has quit IRC | 20:39 | |
*** ewanmellor has quit IRC | 20:39 | |
*** sparkycollier has quit IRC | 20:39 | |
*** hky has quit IRC | 20:39 | |
*** jaypipes has quit IRC | 20:39 | |
*** ChrisAM has quit IRC | 20:39 | |
*** gholt has quit IRC | 20:39 | |
*** Daviey has quit IRC | 20:39 | |
*** dabo has quit IRC | 20:39 | |
*** soosfarm_ has quit IRC | 20:39 | |
*** herki has quit IRC | 20:39 | |
*** mjmac has quit IRC | 20:39 | |
*** termie has quit IRC | 20:39 | |
*** creiht has quit IRC | 20:39 | |
*** Adri2000 has quit IRC | 20:40 | |
*** patri0t has quit IRC | 20:40 | |
*** xtoddx has quit IRC | 20:40 | |
*** morfeas has quit IRC | 20:40 | |
*** pothos has joined #openstack | 20:41 | |
*** littleidea has joined #openstack | 20:42 | |
*** kpepple has left #openstack | 20:42 | |
*** trin_cz has joined #openstack | 20:42 | |
*** pandemicsyn has joined #openstack | 20:42 | |
*** zykes- has joined #openstack | 20:42 | |
*** ewanmellor has joined #openstack | 20:42 | |
*** sparkycollier has joined #openstack | 20:42 | |
*** hky has joined #openstack | 20:42 | |
*** jaypipes has joined #openstack | 20:42 | |
*** ChrisAM has joined #openstack | 20:42 | |
*** gholt has joined #openstack | 20:42 | |
*** dabo has joined #openstack | 20:42 | |
*** soosfarm_ has joined #openstack | 20:42 | |
*** herki has joined #openstack | 20:42 | |
*** mjmac has joined #openstack | 20:42 | |
*** termie has joined #openstack | 20:42 | |
*** Adri2000 has joined #openstack | 20:42 | |
*** creiht has joined #openstack | 20:42 | |
*** patri0t has joined #openstack | 20:42 | |
*** xtoddx has joined #openstack | 20:42 | |
*** morfeas has joined #openstack | 20:42 | |
*** zelazny.freenode.net sets mode: +vv pandemicsyn creiht | 20:42 | |
*** critch has left #openstack | 20:42 | |
*** adiantum has quit IRC | 20:43 | |
*** adiantum has joined #openstack | 20:50 | |
*** Daviey has joined #openstack | 20:51 | |
*** ctennis has joined #openstack | 20:55 | |
ttx | Team Meeting in 4 minutes in #openstack-meeting | 20:56 |
soren | mtaylor: Can you take that and run with it, or do I need to do more? | 20:56 |
soren | dubsquared1: https://code.launchpad.net/~soren/nova/iptables-security-groups/+merge/45826 should address that problem you mentioned yesterday, by the way. | 20:57 |
soren | dubsquared1: (It already landed) | 20:57 |
*** adiantum has quit IRC | 20:59 | |
mtaylor | soren: I'm working on submitting a pull request right now - but github seems to be a bit failwhale atm | 21:00 |
ttx | Meeting starting NOW! | 21:00 |
*** littleidea has quit IRC | 21:02 | |
*** lvaughn_ has joined #openstack | 21:12 | |
*** hggdh has joined #openstack | 21:15 | |
*** lvaughn has quit IRC | 21:15 | |
soren | mtaylor: Thanks. You are hereby granted an alcoholic beverage of your own choice for saving me from having to deal with jira. | 21:20 |
dubsquared1 | soren: awesome, ill give it a test here in a moment :D | 21:20 |
mtaylor | soren: woot | 21:20 |
*** johnpur has quit IRC | 21:24 | |
*** sophiap has quit IRC | 21:28 | |
*** mray has joined #openstack | 21:28 | |
ttx | jaypipes: for image-service-use-glance-clients, does sirp-'s branch cover it, or do you have more in store ? | 21:29 |
ttx | soren: that's a cheap price to pay to avoid dealing with JIRA. | 21:32 |
soren | ttx: Yes! | 21:33 |
*** sophiap has joined #openstack | 21:37 | |
*** gustavomzw has joined #openstack | 21:37 | |
*** gustavomzw has quit IRC | 21:39 | |
*** jt_zg has quit IRC | 21:45 | |
*** alekibango has joined #openstack | 21:51 | |
*** miclorb has joined #openstack | 21:51 | |
openstackhudson | Project nova build #385: SUCCESS in 1 min 32 sec: http://hudson.openstack.org/job/nova/385/ | 21:53 |
openstackhudson | Tarmac: Read Full Spec for implementation details and notes on how to boot an instance using OS API. | 21:53 |
openstackhudson | http://etherpad.openstack.org/B2RK0q1CYj | 21:53 |
openstackhudson | Look at these notes for known issues: | 21:53 |
openstackhudson | http://etherpad.openstack.org/BXOU0TTj9M | 21:53 |
*** adiantum has joined #openstack | 21:55 | |
*** opengeard has joined #openstack | 21:56 | |
*** lorinh1 has quit IRC | 22:00 | |
*** adiantum has quit IRC | 22:01 | |
*** brd_from_italy has joined #openstack | 22:03 | |
*** westmaas has quit IRC | 22:05 | |
*** schisamo has joined #openstack | 22:06 | |
*** nelson__ has quit IRC | 22:13 | |
*** nelson__ has joined #openstack | 22:13 | |
*** kainam- is now known as arcane | 22:13 | |
*** adiantum has joined #openstack | 22:14 | |
*** jdarcy has quit IRC | 22:18 | |
*** ccustine has joined #openstack | 22:18 | |
*** kashyapc has quit IRC | 22:30 | |
*** littleidea has joined #openstack | 22:30 | |
*** adiantum has quit IRC | 22:33 | |
*** brd_from_italy has quit IRC | 22:35 | |
*** rnirmal has quit IRC | 22:35 | |
*** DubLo7 has joined #openstack | 22:35 | |
dubsquared1 | soren: has the iptables fix already been rolled into the packages? | 22:36 |
*** kashyapc has joined #openstack | 22:38 | |
*** DubLo7 has quit IRC | 22:41 | |
*** ppetraki has quit IRC | 22:44 | |
*** adiantum has joined #openstack | 22:45 | |
gholt | perm: Can you check storage21-z2.dfw1 out? Just noticed that if you cat /etc/bash.bashrc you get garbage. | 22:47 |
gholt | wc :( | 22:48 |
*** sophiap has quit IRC | 22:53 | |
rlucio | dubsquared1: i think you are referring to commit 544... the trunk ppa is now on 545 | 23:00 |
*** adiantum has quit IRC | 23:01 | |
uvirtbot | New bug: #701706 in nova "Security Group w/o enough parameters should fail more gracefully" [Wishlist,New] https://launchpad.net/bugs/701706 | 23:06 |
dubsquared1 | rlucio: just got the new packages, and still getting this when launching an image —> http://paste.openstack.org/show/465/ | 23:06 |
*** adiantum has joined #openstack | 23:06 | |
rlucio | whoa | 23:07 |
rlucio | im getting an error as well, but not the same as yours | 23:07 |
dubsquared1 | ha | 23:07 |
xtoddx | Quick bugfix for a condition nobody will probably ever hit needs approves: https://code.launchpad.net/~anso/nova/lp701706/+merge/45929 | 23:07 |
dubsquared1 | what are you seeing? | 23:09 |
*** blamar has quit IRC | 23:10 | |
rlucio | http://paste.openstack.org/show/466/ | 23:10 |
rlucio | looks like another typo on mine | 23:10 |
rlucio | if you look at the line 27 | 23:11 |
dubsquared1 | i see | 23:11 |
rlucio | /shrug | 23:11 |
rlucio | i was getting a different issue earlier too, but maybe they are all related | 23:12 |
*** adiantum has quit IRC | 23:14 | |
dubsquared1 | have i already asked you what images you are using? | 23:14 |
rlucio | no | 23:14 |
rlucio | you mean nova build or vm images | 23:14 |
dubsquared1 | rlucio: what images are you using? | 23:15 |
dubsquared1 | vm images | 23:15 |
dubsquared1 | :D | 23:15 |
rlucio | oh, i made my own | 23:15 |
rlucio | 8.04 and 10.04 atm | 23:16 |
dubsquared1 | coo, im using my own as well | 23:16 |
dubsquared1 | and a UEC 10.10 image | 23:16 |
rlucio | ah, yea i dont exactly get the whole uec thing, so i haven't messed with it | 23:16 |
dubsquared1 | uec-publish-tarball (imagetarball) *bucketname* $arch | 23:17 |
dubsquared1 | donezo | 23:17 |
dubsquared1 | well, supposed to be... | 23:17 |
*** gondoi has quit IRC | 23:20 | |
*** kashyapc has quit IRC | 23:25 | |
*** adiantum has joined #openstack | 23:26 | |
*** kashyapc has joined #openstack | 23:27 | |
openstackhudson | Project nova build #386: SUCCESS in 1 min 24 sec: http://hudson.openstack.org/job/nova/386/ | 23:33 |
openstackhudson | Tarmac: Quick bugfix. Also make the error message more specific and unique in the equivalent code in the revoke method. | 23:33 |
*** kashyapc has quit IRC | 23:37 | |
*** gustavomzw has joined #openstack | 23:38 | |
*** gustavomzw has quit IRC | 23:40 | |
*** adiantum has quit IRC | 23:43 | |
rlucio | dubsquared1: oh thats interesting, that script works with nova? | 23:44 |
rlucio | uec-publish-tarball i mean | 23:44 |
*** kashyapc has joined #openstack | 23:44 | |
dubsquared1 | ja, with images that are packaged for it | 23:45 |
dubsquared1 | it's great when it works | 23:45 |
*** reldan has quit IRC | 23:46 | |
*** zul has quit IRC | 23:51 | |
*** dubsquared1 has quit IRC | 23:51 | |
*** DubLo7 has joined #openstack | 23:53 | |
*** abecc has quit IRC | 23:54 | |
*** dirakx has quit IRC | 23:55 | |
*** adiantum has joined #openstack | 23:55 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!