jasonb | Okay, so that's not my problem then.. | 00:00 |
---|---|---|
jasonb | (same error) | 00:00 |
dolphm | jasonb: what's the command? | 00:00 |
jasonb | Oh, wait.. I now put the right token string in there and it worked! | 00:01 |
*** paulmillar has joined #openstack | 00:01 | |
dolphm | jasonb: hmm.. that wasn't a useful error then lol | 00:02 |
dolphm | jasonb: still curious what the command was? | 00:03 |
jasonb | keystone --token 012345SECRET99TOKEN012345 --endpoint http://localhost:35357/v2.0 tenant-create --name openstackDemo --description "Default Tenant" --enabled true | 00:03 |
dolphm | jasonb: and "012345SECRET99TOKEN012345" appears in keystone.conf, i assume? | 00:03 |
dolphm | command looks fine otherwise :) | 00:04 |
dolphm | also, --enabled defaults to true, in case you're lazy | 00:04 |
jasonb | I had copied and pasted that command right off the doc page.. instead, the doc page should probably say "keystone --token ADMIN "... if the token in the conf says ADMIN by default. | 00:05 |
jasonb | But, yeah, that error message sure doesn't tell me what's wrong. | 00:05 |
uvirtbot | New bug: #965810 in horizon "Hitting a URL when not-logged-in gives a misleading error message." [Undecided,In progress] https://launchpad.net/bugs/965810 | 00:06 |
jasonb | Excellent! :) | 00:06 |
*** cctrieloff has joined #openstack | 00:11 | |
*** clopez has joined #openstack | 00:12 | |
cowmix | I'm about to go head first into my first install.. is KVM the best hypervisor to start with? | 00:12 |
*** rnorwood has joined #openstack | 00:13 | |
*** dtroyer is now known as dtroyer_zzz | 00:13 | |
*** relateable has joined #openstack | 00:14 | |
*** alrs has quit IRC | 00:14 | |
jasonb | cowmix: They have their pros and cons, but I like kvm. | 00:15 |
*** rnorwood has quit IRC | 00:16 | |
cowmix | jasonb: Yeah.. I'm coming from a RHEL Xen installation now.. | 00:17 |
*** Aaton has quit IRC | 00:17 | |
*** jimyeh has quit IRC | 00:17 | |
cowmix | I'm sick of the CPU hit I get in Xen.. I think this is a good time to try KVM | 00:17 |
*** scoph has joined #openstack | 00:17 | |
jasonb | cowmix: I think you'll like it. | 00:19 |
cowmix | jasonb: one more thing.. I'm going to use 12.04 beta (or daily build).. bad idea? | 00:19 |
jasonb | cowmix: Well, probably not a bad idea.. just means that you'll probably want to figure out how to get to the final release once it's out. | 00:22 |
*** hermy|away is now known as hermy | 00:22 | |
*** vincentricci has left #openstack | 00:23 | |
cowmix | yeah.. this is just practice... | 00:23 |
jasonb | dolphm: Does the EC2 Service User in the Service Tenant need to be assigned a role? The very end of this doc page says to add a role to a user that we already added in a previous step, so I'm thinking someone forgot to change their cut & paste to show adding a role to the EC2 Service user: http://docs.openstack.org/trunk/openstack-compute/install/content/setting-up-tenants-users-and-roles.html | 00:24 |
*** tmichael has quit IRC | 00:25 | |
*** tmichael has joined #openstack | 00:25 | |
*** maplebed has quit IRC | 00:26 | |
*** Beticious has joined #openstack | 00:28 | |
jasonb | Now I'm creating the service endpoints using keystone.. when specifying the URLs (such as "publicurl"), can that be "0.0.0.0", meaning any address that reaches the server is okay? Or, is this value used to build URLs that are given out to other machines? I'm guessing the latter.. | 00:32 |
*** shaon has quit IRC | 00:34 | |
*** shaon has joined #openstack | 00:34 | |
*** localhost has quit IRC | 00:35 | |
*** shaon has quit IRC | 00:36 | |
*** markmcclain has quit IRC | 00:36 | |
*** justfine has quit IRC | 00:36 | |
*** cctrieloff has quit IRC | 00:37 | |
*** localhost has joined #openstack | 00:37 | |
*** mrjazzcat has quit IRC | 00:39 | |
*** ywu has joined #openstack | 00:40 | |
*** dendro-afk is now known as dendrobates | 00:40 | |
*** tryggvil_ has quit IRC | 00:43 | |
*** agonella has joined #openstack | 00:44 | |
*** B1ackavar has quit IRC | 00:48 | |
*** oNeToWn has joined #openstack | 00:48 | |
*** jimyeh has joined #openstack | 00:49 | |
uvirtbot | New bug: #959262 in python-novaclient "[Errno 13] Permission denied: '/var/www/.novaclient'" [Undecided,Confirmed] https://launchpad.net/bugs/959262 | 00:51 |
uvirtbot | New bug: #965826 in nova "python-novaclient doesn't handle misconfigured 'auth_host'" [Undecided,New] https://launchpad.net/bugs/965826 | 00:51 |
jasonb | Verifying the keystone installation doesn't work for me. It's giving me error 500 messages. | 00:53 |
*** adalbas has quit IRC | 00:55 | |
*** scoph has quit IRC | 00:57 | |
*** gyee has quit IRC | 00:59 | |
*** dendrobates is now known as dendro-afk | 01:00 | |
*** jdurgin has quit IRC | 01:00 | |
*** relateable has quit IRC | 01:02 | |
jasonb | The error in keystone's stack trace says "AttributeError: 'Catalog' object has no attribute 'create_token'" when I'm running curl to verify the installation. | 01:04 |
*** yshh has joined #openstack | 01:04 | |
jasonb | Example command I'm running: curl -d '{"auth": {"tenantName": "openstackDemo", "passwordCredentials":{"username": "adminUser", "password": "mypassword"}}}' -H "Content-type: application/json" http://localhost:5000/v2.0/tokens | 01:05 |
*** rnorwood has joined #openstack | 01:06 | |
wkelly | jasonb: to answer your question re: endpoints, the ip addresses in the service catalog are used to construct urls | 01:07 |
jasonb | wkelly: Okay, thanks. | 01:07 |
*** robbiew has quit IRC | 01:08 | |
jasonb | I guess one more question about them I had was: does each URL for each service have to have a different address:port combo? Or, is it fine for them to have the same address:port as another service? Would help if the docs mentioned this.. | 01:08 |
wkelly | they can all say the same thing | 01:08 |
wkelly | except for keystone! | 01:09 |
jasonb | Hmm.. the docs should certainly say that in bold blinking text. :) | 01:09 |
wkelly | jaja | 01:09 |
wkelly | er, haha as well | 01:09 |
wkelly | the administrative service for keystone usually binds to another port | 01:09 |
wkelly | so the admin_url needs to point to that port | 01:10 |
wkelly | one can separate the admin api for nova as well, and if you were to do that, its admin url would also look different in the endpoint config | 01:11 |
*** livemoon has joined #openstack | 01:11 | |
wkelly | I have used diablo keystone quite a bit more extensively than essex keystone, and they differ quite drastically | 01:13 |
*** spiffxp has quit IRC | 01:13 | |
wkelly | so I am not sure what is going on with your 500 error, but my guess would be to check your conf and make sure that the backend for tokens is set properly | 01:13 |
jasonb | wkelly: Thanks for the ideas on the ports.. | 01:13 |
jasonb | wkelly: I'm not sure about this token stuff. The doc page said something like "for the tokens you already created" and it never told me to create nor configure any tokens. | 01:14 |
*** scoph has joined #openstack | 01:15 | |
jasonb | "In return, you should receive the token you created for the adminUser user." <-- maybe I just don't know what it means by 'token'. | 01:15 |
uvirtbot | New bug: #965839 in horizon "Adding panels to existing dashboards breaks URLConf" [Medium,In progress] https://launchpad.net/bugs/965839 | 01:16 |
wkelly | interesting | 01:17 |
*** ChelseaH has quit IRC | 01:18 | |
*** epim has quit IRC | 01:19 | |
jasonb | Is a token an object identifier? Or is there some kind of 'token' object that I'm supposed to have created for the adminUser ? | 01:19 |
wkelly | a token is the result of a successful login | 01:19 |
jasonb | I guess that's my real question. | 01:20 |
wkelly | it will print out some json | 01:20 |
wkelly | one of the things that will be included is a token object with an id | 01:20 |
wkelly | you will use that token to access other openstack services | 01:20 |
jasonb | Well, if I'm just using the keystone tool to create/configure objects, then using curl to do the requests on this page to verify the installation worked, should any token exist yet?: http://docs.openstack.org/trunk/openstack-compute/install/content/verifying-identity-install.html | 01:21 |
wkelly | the curl command you are running is actually attempting to log in to keystone on behalf of the adminUser | 01:22 |
wkelly | and should result in keystone generating a token for that user | 01:22 |
jasonb | Okay. | 01:23 |
wkelly | which should be returned in its response | 01:23 |
wkelly | it looks like it authenticated successfully and attempted to generate the token and store it | 01:23 |
jasonb | Maybe the login doesn't succeed due to the stack trace / error. | 01:23 |
wkelly | at which point it failed | 01:23 |
jasonb | File "/usr/local/lib/python2.7/dist-packages/keystone-2012.1-py2.7.egg/keystone/common/manager.py", line 44, in __getattr__ | 01:24 |
jasonb | f = getattr(self.driver, name) ... that's where it says AttributeError: 'Catalog' object has no attribute 'create_token' | 01:24 |
*** livemoon1 has joined #openstack | 01:24 | |
*** livemoon has quit IRC | 01:26 | |
*** miclorb_ has quit IRC | 01:32 | |
wkelly | It sounds like the driver is not set correctly in keystone.conf | 01:32 |
wkelly | give me a second to look up a sane value! | 01:32 |
jasonb | Hmm, well, it appears that I have at least three of those in my keystone.conf. | 01:33 |
jasonb | One under each of the following section headings: identity, catalog, and token | 01:33 |
jasonb | oh, and ec2 | 01:33 |
wkelly | the token one is the one in question right now | 01:33 |
jasonb | I only just realized there were multiple 'driver' settings. | 01:35 |
jasonb | I made a change.. testing... | 01:35 |
jasonb | ooh! Actually... I think that fixed it. | 01:36 |
wkelly | awesome | 01:36 |
wkelly | regarding your documentation suggestions, if you are feeling charitable, you might file bugs under https://launchpad.net/openstack-manuals | 01:36 |
jasonb | It's certainly giving me json responses back now, whereas before it wasn't. | 01:37 |
jasonb | wkelly: Thanks for helping me figure it out and fix it! I can continue on to other components now.. | 01:37 |
jasonb | wkelly: I'll see about filing a couple/few doc bugs.. that would sure help.. | 01:38 |
wkelly | no problem! | 01:38 |
*** scoph has quit IRC | 01:41 | |
*** hermy is now known as hermy|away | 01:42 | |
*** roge has joined #openstack | 01:43 | |
*** B1ackavar has joined #openstack | 01:44 | |
*** hermy|away is now known as hermy | 01:44 | |
*** livemoon1 has left #openstack | 01:46 | |
*** rods has quit IRC | 01:47 | |
*** dcramer_ has joined #openstack | 01:48 | |
*** marrusl_ has quit IRC | 01:48 | |
*** halfss has joined #openstack | 01:48 | |
uvirtbot | New bug: #965860 in openstack-manuals "keystone config doc page has repeat step at end" [Undecided,New] https://launchpad.net/bugs/965860 | 01:50 |
*** warik has quit IRC | 01:54 | |
*** wariola has joined #openstack | 01:54 | |
*** flaviamissi has quit IRC | 01:58 | |
*** flaviamissi has joined #openstack | 01:58 | |
*** flaviamissi has quit IRC | 01:58 | |
*** dvogt has quit IRC | 02:00 | |
*** scoph has joined #openstack | 02:00 | |
*** atoato88 has joined #openstack | 02:00 | |
*** Karmaon has quit IRC | 02:00 | |
*** Karmaon has joined #openstack | 02:02 | |
uvirtbot | New bug: #965868 in openstack-manuals "keystone defining services page: improve text about URL values" [Undecided,New] https://launchpad.net/bugs/965868 | 02:06 |
*** livemoon has joined #openstack | 02:07 | |
*** osier has joined #openstack | 02:07 | |
jasonb | glance deb package didn't install (Ubuntu 11) because glance-registry configure didn't complete successfully: File "/usr/lib/python2.7/dist-packages/sqlalchemy/schema.py", line 312, in _extra_kwargs "Invalid argument(s) for Table: %r" % kwargs.keys()) TypeError: Invalid argument(s) for Table: ['extend_existing', 'mysql_engine'] | 02:08 |
wkelly | this is on precise? | 02:08 |
jasonb | This is from ppa:openstack-ppa/milestone-proposed | 02:09 |
wkelly | ah | 02:09 |
*** roge has quit IRC | 02:09 | |
jasonb | Ubuntu 11.04. | 02:09 |
* jasonb is a bug magnet. | 02:10 | |
wkelly | haha | 02:12 |
*** dpippenger has quit IRC | 02:12 | |
*** jog0 has left #openstack | 02:17 | |
*** clopez has quit IRC | 02:17 | |
*** erkules has quit IRC | 02:19 | |
*** marrusl has quit IRC | 02:19 | |
*** warik has joined #openstack | 02:22 | |
*** sandywalsh has quit IRC | 02:25 | |
*** warik has left #openstack | 02:29 | |
*** MrRoot has joined #openstack | 02:29 | |
*** erkules has joined #openstack | 02:32 | |
*** stewart has quit IRC | 02:33 | |
*** philips has quit IRC | 02:33 | |
*** philips has joined #openstack | 02:34 | |
*** egant has quit IRC | 02:34 | |
*** natea_ has joined #openstack | 02:39 | |
*** clopez has joined #openstack | 02:40 | |
*** littleidea has joined #openstack | 02:42 | |
*** egant has joined #openstack | 02:42 | |
*** natea has quit IRC | 02:42 | |
*** natea_ is now known as natea | 02:42 | |
*** miclorb_ has joined #openstack | 02:44 | |
*** stewart has joined #openstack | 02:46 | |
*** yaguang has joined #openstack | 02:46 | |
*** mnewby has quit IRC | 02:46 | |
*** johnpostlethwait has quit IRC | 02:47 | |
*** atoato88 has quit IRC | 02:48 | |
*** Karmaon has quit IRC | 02:49 | |
*** mjfork has quit IRC | 02:49 | |
*** atoato88 has joined #openstack | 02:53 | |
*** jimbaker has quit IRC | 02:54 | |
*** jimbaker has joined #openstack | 02:56 | |
*** littleidea has quit IRC | 02:56 | |
*** littleidea has joined #openstack | 02:58 | |
*** tkleinscea has quit IRC | 03:01 | |
*** sandywalsh has joined #openstack | 03:05 | |
*** mdrnstm has left #openstack | 03:07 | |
*** mdrnstm has joined #openstack | 03:07 | |
*** natea has quit IRC | 03:08 | |
*** epim has joined #openstack | 03:09 | |
uvirtbot | New bug: #965883 in quantum "add a general funtion to read item in plugins.ini" [Undecided,In progress] https://launchpad.net/bugs/965883 | 03:11 |
*** Karmaon has joined #openstack | 03:11 | |
*** miclorb_ has quit IRC | 03:12 | |
*** clopez has quit IRC | 03:12 | |
*** Ryan_Lane has joined #openstack | 03:12 | |
*** FallenPegasus has quit IRC | 03:13 | |
*** shang has joined #openstack | 03:13 | |
*** lahlfors has joined #openstack | 03:14 | |
*** dcramer_ has quit IRC | 03:15 | |
*** ywu has quit IRC | 03:16 | |
*** FallenPegasus has joined #openstack | 03:17 | |
*** dtroyer_zzz is now known as dtroyer | 03:21 | |
*** epim has quit IRC | 03:23 | |
*** mnewby has joined #openstack | 03:24 | |
*** atoato88 has quit IRC | 03:31 | |
*** agonella has quit IRC | 03:33 | |
*** agonella has joined #openstack | 03:34 | |
*** mnewby has quit IRC | 03:37 | |
*** clopez has joined #openstack | 03:37 | |
wkelly | jasonb: this is a bit late, but https://bugs.launchpad.net/glance/+bug/959787 says you need a newer version of sqlalchemy | 03:39 |
*** agonella has quit IRC | 03:39 | |
wkelly | obviously, this is not a good production fix, but if this is a test box 'easy_install -U sqlalchemy' will get you going | 03:39 |
*** wilmoore has joined #openstack | 03:40 | |
jasonb | hmm, okay. | 03:40 |
wkelly | then remove glance-registry and reinstall it | 03:40 |
jasonb | wkelly: I'll see if I can do that.. thanks! | 03:40 |
wkelly | the post config will complete | 03:40 |
wkelly | no prob | 03:40 |
*** dolphm has quit IRC | 03:40 | |
*** dendro-afk is now known as dendrobates | 03:40 | |
jasonb | I set up the bridge config and ran into networking problems (like, the machine doesn't answer over the network, but only sometimes).. | 03:41 |
*** dolphm has joined #openstack | 03:42 | |
wkelly | wow, that's a weird one | 03:42 |
*** avoine has left #openstack | 03:43 | |
*** clopez has quit IRC | 03:43 | |
*** sniperd has quit IRC | 03:43 | |
*** clopez has joined #openstack | 03:44 | |
*** dvogt has joined #openstack | 03:44 | |
*** adamgamble has joined #openstack | 03:46 | |
*** paulstallworth has quit IRC | 03:47 | |
*** adamgamble has left #openstack | 03:49 | |
*** hermy is now known as hermy|away | 03:51 | |
*** crescendo has joined #openstack | 03:58 | |
*** scoph has quit IRC | 04:03 | |
*** natea has joined #openstack | 04:06 | |
*** atoato88 has joined #openstack | 04:11 | |
*** nelson1234 has left #openstack | 04:13 | |
*** nelson1234 has joined #openstack | 04:13 | |
*** miclorb_ has joined #openstack | 04:15 | |
*** Ryan_Lane has quit IRC | 04:17 | |
*** issackelly has quit IRC | 04:19 | |
uvirtbot | New bug: #965901 in nova "when instance resize error,it can not be rollback to active. " [Undecided,New] https://launchpad.net/bugs/965901 | 04:21 |
*** sniperd has joined #openstack | 04:22 | |
*** llang629 has joined #openstack | 04:23 | |
jasonb | Ahh.. nova inserts iptables rules, and I bet those are the cause of my network issues.. hmmm | 04:28 |
*** supriya has joined #openstack | 04:28 | |
jasona | hmm | 04:31 |
*** armaan has joined #openstack | 04:31 | |
*** freeflyi1g has quit IRC | 04:31 | |
*** philhsmith has joined #openstack | 04:32 | |
*** armaan has left #openstack | 04:33 | |
jasona | hmm | 04:33 |
*** rnorwood has quit IRC | 04:33 | |
jasona | hmm | 04:34 |
jasona | anyone seen michael fork around lately ? | 04:34 |
uvirtbot | New bug: #965910 in horizon "Polling on numerous rows can overwhelm server" [Medium,In progress] https://launchpad.net/bugs/965910 | 04:36 |
*** freeflying has joined #openstack | 04:36 | |
philhsmith | Question: is there a way to use keystone for swift authentication in the diablo release, as pulled down from managedit on ubuntu 11.10? | 04:37 |
philhsmith | I've found several conflicting configurations, and so far none of them work. | 04:37 |
jasonb | Looks like iptables wasn't the cause of my networking issues. | 04:40 |
*** ldlework has quit IRC | 04:45 | |
*** cryptk|offline is now known as cryptk | 04:46 | |
*** clopez_ has joined #openstack | 04:51 | |
*** spiffxp has joined #openstack | 04:51 | |
*** FallenPegasus has quit IRC | 04:52 | |
*** MarkAtwood has joined #openstack | 04:52 | |
*** llang629 has left #openstack | 04:52 | |
*** supriya has quit IRC | 04:54 | |
jasonb | Actually, I was wrong. It was indeed the NAT chains/rules that the nova package(s) added that caused my networking problems! | 04:57 |
jasonb | After I did iptables -t nat -F then everything works again. | 04:58 |
*** dolphm has quit IRC | 04:59 | |
*** egant has quit IRC | 05:00 | |
*** clopez_ has quit IRC | 05:00 | |
jasonb | wkelly: Looks like your easy_install -U sqlalchemy trick worked .. glance essex rc1 installed smoothly on Ubuntu 11.10 after that. | 05:02 |
wkelly | jasonb: good! | 05:02 |
wkelly | nova-network and nova-compute can be a little aggressive with their rules, so I would try to carve out a separate ip space for instances if possible | 05:03 |
jasonb | Ugh. | 05:03 |
*** hattwick has quit IRC | 05:03 | |
wkelly | it is easier that way, but it is quite possible to run in the same ip space if you have a strong preference for it. | 05:04 |
jasonb | wkelly: Well, I'm not the network admin here, and I don't have my own network / equipment for it.. | 05:06 |
wkelly | understood! | 05:06 |
*** andrewsmedina has quit IRC | 05:08 | |
*** jcannava has joined #openstack | 05:08 | |
jasonb | wkelly: Thanks for all the help.. | 05:08 |
*** egant has joined #openstack | 05:08 | |
*** koolhead11 has joined #openstack | 05:10 | |
wkelly | jasonb: my pleasure | 05:11 |
koolhead11 | hi all | 05:11 |
wkelly | jasonb: how many nodes are you doing this install on? | 05:14 |
jasonb | Well, I have 5 machines at the moment to try this on.. though I'm hitting all sorts of snags getting the software on the first one. | 05:14 |
wkelly | yeah | 05:15 |
wkelly | once you get one going, the rest are easy | 05:15 |
jasonb | Now glance add is saying: "glance: error: no such option: --username" | 05:15 |
*** juergh has joined #openstack | 05:16 | |
wkelly | is there an os_username? | 05:16 |
*** supriya has joined #openstack | 05:17 | |
*** sniperd has quit IRC | 05:17 | |
jasonb | wkelly: Hmm, I added "os_" to several switch names, and finally it did something.. that doc page needs to change.. | 05:18 |
wkelly | which one are you looking at? | 05:18 |
jasonb | But, uploading the image didn't work: "Uploading image 'tty-linux-kernel' .. Failed to add image. Got error: An object with the specified identifier was not found. Details: 404 Not Found | 05:19 |
jasonb | It's this page: http://docs.openstack.org/trunk/openstack-compute/install/content/images-verifying-install.html | 05:19 |
jasonb | Very first command trying to verify the installation of Glance. | 05:19 |
wkelly | yep, that looks wrong indeed | 05:20 |
wkelly | the part at the bottom about environment variables is correct | 05:20 |
wkelly | you can use them instead of lots of the flags | 05:20 |
jasonb | Well, that would help, yeah. | 05:21 |
*** dvogt has quit IRC | 05:21 | |
*** dolphm_ has joined #openstack | 05:22 | |
*** dolphm__ has joined #openstack | 05:24 | |
wkelly | jasonb: that's a pretty innocuous add command. my first suspicion would be that the keystone endpoint for glance is incorrect | 05:24 |
wkelly | and it is actually talking to some other thing | 05:25 |
jasonb | glance index shows a big python stack trace.. near the bottom saying OperationalError: (OperationalError) no such table: image_members | 05:25 |
wkelly | ah! | 05:25 |
wkelly | try glance-manage db_sync | 05:25 |
jasonb | That fixes the glance index stack trace, but not the image uploading problem. | 05:26 |
wkelly | interesting | 05:26 |
wkelly | well, if glance index works, your endpoint is correct | 05:26 |
jasonb | It gives no output.. does that count as "works"? | 05:27 |
wkelly | yep! that is expected with no images | 05:27 |
jasonb | okay. | 05:27 |
jasonb | How do I restart glance? | 05:27 |
*** lahlfors has quit IRC | 05:27 | |
jasonb | oh, glance-api or glance-registry | 05:28 |
*** dolphm_ has quit IRC | 05:28 | |
wkelly | both, to be safe | 05:28 |
jasonb | Even after a restart, the image upload doesn't work. | 05:28 |
wkelly | anything interesting in the logs? | 05:28 |
jasonb | Doesn't seem so. | 05:29 |
jasonb | Looks pretty happy. | 05:29 |
jasonb | Happy & broken. :/ | 05:29 |
wkelly | try setting verbose = True and debug = True in the confs and restarting | 05:30 |
*** clopez has quit IRC | 05:30 | |
*** sniperd has joined #openstack | 05:31 | |
*** egant has quit IRC | 05:31 | |
jasonb | Slightly more verbose, in the logs.. but no errors, nor any output specifically about my upload request. | 05:32 |
wkelly | if you have those environment variables set | 05:33 |
jasonb | I didn't set any. | 05:33 |
wkelly | do you have python-novaclient installed? | 05:34 |
jasonb | Yep. | 05:34 |
*** vincentricci has joined #openstack | 05:34 | |
wkelly | I would like to see the output of 'nova endpoints' | 05:34 |
*** vincentricci has left #openstack | 05:34 | |
wkelly | and the command line you're running | 05:34 |
jasonb | ERROR: You must provide a username via either --os_username or env[OS_USERNAME] | 05:34 |
wkelly | ah, sorry | 05:35 |
wkelly | you'll need to pass the --os blah blah blahs | 05:35 |
jasonb | glance --os_username=adminUser --os_password=mypassword --os_tenant=openstackDemo --os_auth_url=http://127.0.0.1:5000/v2.0 add name="tty-linux-kernel" disk_format=aki container_format=aki < ttylinux-uec-amd64-12.1_2.6.35-22_1-vmlinuz | 05:35 |
*** almaisan-away is now known as al-maisan | 05:35 | |
koolhead11 | ivoks: hi there | 05:37 |
jasonb | wkelly: http://pastebin.com/sd9R9teW | 05:37 |
wkelly | ah! these are incorrect | 05:39 |
jasonb | How are they wrong? | 05:41 |
wkelly | for glance, they should all be something like http://IPOFYOURNODE:9292/v1 | 05:41 |
jasonb | Hmm. Okay, I guess the doc page neglected to say that. | 05:41 |
wkelly | the glance client authenticates against keystone, which provides it these endpoints | 05:42 |
wkelly | yeah | 05:42 |
*** chutku has joined #openstack | 05:42 | |
wkelly | you may have to make some config changes on the glance side as well | 05:42 |
wkelly | to get it speaking properly with keystone | 05:42 |
wkelly | http://glance.openstack.org/authentication.html | 05:42 |
*** chutku has left #openstack | 05:43 | |
wkelly | that looks accurate | 05:43 |
wkelly | (but still doesn't cover endpoints) | 05:43 |
wkelly | the same thing is true of the other services--the urls need to point to wherever it is you are actually running the api for the appropriate service | 05:44 |
wkelly | here are the endpoints from the hp public cloud | 05:45 |
*** dpippenger has joined #openstack | 05:46 | |
wkelly | I lied! those are not helpful | 05:46 |
wkelly | haha | 05:46 |
rmk | jasonb: not sure if anyone answered but you need a newer sqlalchemy to resolve that glance error | 05:46 |
wkelly | Nova: http://YOURIP:8774/v1.1/%tenant_id% | 05:47 |
jasonb | rmk: Yep, fixed that one.. getting closer to working.. thanks. | 05:47 |
wkelly | jasonb: http://keystone.openstack.org/configuringservices.html | 05:48 |
wkelly | under "Setting up services" | 05:48 |
wkelly | when you authenticate against keystone, keystone tells the client where to look for the api | 05:49 |
jasonb | Okay. Yeah, only the docs that show how to configure these in keystone make no mention about what their hosts:ports should be set to. | 05:50 |
jasonb | I already filed a doc bug about that. | 05:50 |
wkelly | haha, yes, that is really not as helpful as it could be | 05:51 |
wkelly | Glance: 9292, Nova: 8774, Nova-compat (ec2 compat): 8773. Keystone will be 5000 for public and internal, and 35357 for admin | 05:52 |
wkelly | are you going to do nova-volume or swift? | 05:52 |
jasonb | That's the first common port list for these compoments I've seen.. and that would have been helpful to have up front. | 05:53 |
jasonb | I don't know how to answer your question about nova-volume vs swift if I've never heard of either of them before. | 05:53 |
wkelly | ah, that was not meant to be an exclusive or | 05:54 |
wkelly | nova-volume is a service for presenting disks to instances (similar to elastic block storage from amazon) | 05:54 |
wkelly | and swift is an object storage system, similar to s3 (and the software that runs rackspace's cloud files offering) | 05:55 |
wkelly | a lot of people deploy without either one | 05:55 |
philhsmith | That's not a reason for them to be mutually exclusive. Can they both be used? (I need them both as well.) | 05:56 |
jasonb | Okay, well, for the project I'm currently working on, I mainly just needed a way to track the provisioning/unprovisioning of VMs. | 05:56 |
wkelly | then you probably do not need either | 05:56 |
jasonb | yeah.. at least for now. | 05:56 |
jasonb | But, I figure that while I'm at this, I might as well get it bringing up VMs, and helping with more features, if the software works well enough. | 05:57 |
wkelly | it can be a bit of a beast to configure initially | 05:58 |
wkelly | but once it is up and running, it works pretty well | 05:58 |
wkelly | and adding new compute nodes is very easy | 05:58 |
jasonb | This is what glance is saying now: NotAuthenticated: You are not authenticated. | 05:59 |
*** rocambole has joined #openstack | 05:59 | |
jasonb | Is nova a v1 or v2 thing? | 06:01 |
wkelly | in glance-registry-paste.ini and glance-api-paste.ini, make sure that the values in the [filter:authtoken] section have a correct username and password and so on | 06:01 |
*** natea has quit IRC | 06:03 | |
*** littleidea has quit IRC | 06:03 | |
wkelly | "v2.0" | 06:03 |
wkelly | ah | 06:04 |
*** ghe_ is now known as GheRivero | 06:04 | |
wkelly | in glance-registry.conf and glance-api.conf also make sure you have: | 06:04 |
wkelly | [paste_deploy] | 06:04 |
wkelly | flavor = keystone | 06:04 |
wkelly | I apologize, but it is my bed time! | 06:04 |
jasonb | like http://host:8774/v2.0 or http://host:8774/v2 ? | 06:05 |
jasonb | Okay.. yeah, I have to go too. | 06:05 |
wkelly | v2.0 | 06:05 |
jasonb | Okay, I'll set it like that. | 06:05 |
jasonb | Thanks again! I'll continue tomorrow on it.. :/ | 06:05 |
uvirtbot | New bug: #965939 in nova "Instance remains in scheduling state if Scheduler is down during instance creation" [Undecided,New] https://launchpad.net/bugs/965939 | 06:06 |
*** melmoth has joined #openstack | 06:11 | |
*** al-maisan is now known as almaisan-away | 06:15 | |
*** dachary has quit IRC | 06:17 | |
*** jasonb has quit IRC | 06:18 | |
*** dieterdemeyer has joined #openstack | 06:19 | |
*** arBmind has joined #openstack | 06:21 | |
*** mindpixel has joined #openstack | 06:23 | |
*** berendt has joined #openstack | 06:23 | |
*** wilmoore has quit IRC | 06:29 | |
*** arBmind has quit IRC | 06:36 | |
*** natea has joined #openstack | 06:45 | |
*** davepigott has joined #openstack | 06:45 | |
*** natea has joined #openstack | 06:45 | |
*** philhsmith has quit IRC | 06:45 | |
*** mdrnstm has quit IRC | 06:48 | |
*** davepigott has quit IRC | 06:48 | |
*** davepigott has joined #openstack | 06:48 | |
halfss | is there any doc about different of diablo and essex? | 06:51 |
*** halfss_ has joined #openstack | 06:52 | |
*** halfss has quit IRC | 06:52 | |
*** shaon has joined #openstack | 06:53 | |
*** Karmaon has quit IRC | 06:59 | |
*** garyk has joined #openstack | 07:06 | |
*** reidrac has joined #openstack | 07:07 | |
*** rkukura has joined #openstack | 07:10 | |
Razique | hello yes | 07:14 |
Razique | the Essex doc is called "master" | 07:14 |
Razique | while the diablo one is the "stable/diablo" | 07:14 |
*** dachary has joined #openstack | 07:18 | |
berendt | halfss_: take a look in the release notes for essex: http://wiki.openstack.org/ReleaseNotes/Essex | 07:21 |
halfss_ | barendt thanks :) | 07:21 |
*** mdrnstm has joined #openstack | 07:28 | |
*** Deathvalley122 has quit IRC | 07:31 | |
*** Razique has quit IRC | 07:31 | |
ttx | jasonb, dolphm: soren was working on it | 07:33 |
ttx | (adding keystone to the openstack-ppa PPAs) | 07:34 |
soren | Uh.. Was I? | 07:34 |
ttx | soren: I think you told me that :) | 07:34 |
* ttx greps logs | 07:34 | |
soren | I make shit up as I goes all the time. | 07:34 |
*** Deathvalley122 has joined #openstack | 07:34 | |
soren | "I goes"? Seriously? | 07:34 |
* soren applies caffeine to the grammar centre of his brain | 07:35 | |
ttx | <ttx> you said you were working on packaging keystone properly ? | 07:35 |
ttx | <ttx> does that plan include pushing it to the common openstack-ppa PPAs ? | 07:35 |
ttx | <soren> Once I'm happy with it, yes. | 07:35 |
ttx | no indication of time, though :) | 07:36 |
soren | Ah. | 07:36 |
ttx | soren: does it mean you're not actually working on it ? | 07:36 |
soren | I am. | 07:36 |
soren | And it just so happens that I think I'm happy with it now. Since yesterday afternoon. | 07:37 |
soren | I had just forgotten there was no packaging at all in the openstack ppa's. | 07:37 |
*** Deathvalley122 has quit IRC | 07:37 | |
soren | I'm more reluctant to replace existing packaging, because the new stuff is rather different. Way cooler, but rather different. | 07:37 |
soren | I'd hate to break something at this stage. | 07:37 |
*** Deathvalley122 has joined #openstack | 07:38 | |
*** natea has quit IRC | 07:38 | |
ttx | you mean it could break people using ppa and distribution packages at the same time | 07:39 |
soren | Hmm.. | 07:40 |
soren | I... uh.. | 07:40 |
soren | Well, yes, sort of. | 07:40 |
soren | But to some extent that's true already. | 07:40 |
soren | For all the projects. | 07:40 |
soren | Since the packaging has diverged, you might be switching between PPA stuff and Ubuntu stuff on every other update. | 07:41 |
soren | Up until now, it hasn't been /that/ different, but the devil's in the details. | 07:41 |
soren | However, if you switch back and forth between the stuff I have and the Ubuntu stuff.. That might be less smooth than one would expect. | 07:42 |
soren | Notably, all the various configuration files are conffiles in the Ubuntu packages.. I've un-conffile-ified them in my packaging. | 07:42 |
soren | And generally awesomeified things. | 07:43 |
soren | Switching back and forth /can/ be handled... I just haven't tried. | 07:43 |
*** shaon has quit IRC | 07:46 | |
ttx | Guess your packaging can be synced in Q ? | 07:48 |
ttx | soren: does your work use the openstack-ubuntu packaging repos ? Or somewhere else ? Could we for Essex push old-style packaging (copied from Ubuntu) in PPA ? | 07:49 |
*** Triade has joined #openstack | 07:50 | |
soren | ttx: Yeah, I'll push my stuff for Q. It's too late for Precise. | 07:50 |
soren | ttx: Yeah, I suppose we can use the ubuntu packaging. That makes sense. | 07:51 |
soren | ttx: Do you want to go ahead and push that, or shall I? | 07:51 |
ttx | soren: please do | 07:51 |
* soren does so | 07:51 | |
soren | Er.. | 07:51 |
*** aryan_ has joined #openstack | 07:51 | |
soren | There's already something there? | 07:51 |
soren | https://code.launchpad.net/~openstack-ubuntu-packagers/keystone/ubuntu/ | 07:52 |
soren | ttx: I don't know if it's up-to-date, but it's certainly there. Any idea why it's not used? | 07:55 |
ttx | soren: could be some gremlin hiding in Jenkins | 07:55 |
Madkiss | ttx: the bug was closed due to being invalid, btw. :) | 07:55 |
ttx | i see no reason why. | 07:55 |
*** darraghb has joined #openstack | 07:55 | |
ttx | Madkiss: checking | 07:56 |
*** spiffxp has quit IRC | 07:56 | |
soren | ttx: Oh, I see why | 07:57 |
ttx | Madkiss: cool. Better safe than sorry | 07:57 |
Madkiss | :) | 07:58 |
*** mnabil has joined #openstack | 07:58 | |
*** hattwick has joined #openstack | 07:59 | |
soren | ttx: Triggering the keystone-ppa job should still be safe, right | 08:03 |
soren | ? | 08:03 |
*** Deathvalley122 has quit IRC | 08:03 | |
*** uksysadmin has joined #openstack | 08:04 | |
*** Triade has quit IRC | 08:04 | |
*** kaz__ has quit IRC | 08:05 | |
*** Triade has joined #openstack | 08:05 | |
*** kaz_ has joined #openstack | 08:05 | |
ttx | soren: yes | 08:05 |
*** Deathvalley122 has joined #openstack | 08:05 | |
*** derekh has joined #openstack | 08:06 | |
soren | ttx: Cool. kicked off a build for both master and milestone-proposed. | 08:07 |
*** dneary has joined #openstack | 08:07 | |
*** koolhead11 has quit IRC | 08:09 | |
*** woodoo has joined #openstack | 08:09 | |
*** reidrac has quit IRC | 08:11 | |
*** stewart has quit IRC | 08:12 | |
*** reidrac has joined #openstack | 08:13 | |
*** Deathvalley122 has quit IRC | 08:14 | |
*** Razique has joined #openstack | 08:15 | |
*** Deathvalley122 has joined #openstack | 08:16 | |
*** supriya has quit IRC | 08:17 | |
*** almaisan-away is now known as al-maisan | 08:21 | |
*** arBmind has joined #openstack | 08:22 | |
*** LinuxJedi has quit IRC | 08:24 | |
*** stewart has joined #openstack | 08:25 | |
*** LinuxJedi has joined #openstack | 08:25 | |
*** paulmillar has quit IRC | 08:27 | |
*** al-maisan is now known as almaisan-away | 08:28 | |
*** atoato88 has quit IRC | 08:31 | |
*** clauden_ has quit IRC | 08:31 | |
*** pixelbeat has joined #openstack | 08:33 | |
*** shaibn has joined #openstack | 08:36 | |
*** miclorb__ has joined #openstack | 08:37 | |
*** miclorb_ has quit IRC | 08:40 | |
*** qazwsx has joined #openstack | 08:41 | |
*** miclorb__ has quit IRC | 08:41 | |
*** po has joined #openstack | 08:44 | |
*** almaisan-away is now known as al-maisan | 08:44 | |
*** robix has quit IRC | 08:45 | |
uksysadmin | hello all | 08:45 |
uksysadmin | any horizon devs in here? | 08:45 |
uksysadmin | in fact python-nova people / envvar help is needed... | 08:47 |
*** robix has joined #openstack | 08:48 | |
uksysadmin | I've noticed my Horizon isn't giving correct credential files to be sourced into my environment | 08:48 |
uksysadmin | on looking at this I noticed that I have: export OS_TENANT_NAME=01b1e8df305b49998e6ecbac02cb9f70, which doesn't work. | 08:48 |
*** bbcmicrocomputer has joined #openstack | 08:48 | |
uksysadmin | but setting export OS_TENANT_NAME=tenant (i.e. an actual tenant name) works | 08:48 |
uksysadmin | I wanted to see if I had something incorrect in my keystone.table or its a bug in Horizon | 08:49 |
FlorianOtel | uksysadmin, You again. | 08:49 |
FlorianOtel | :) | 08:49 |
*** scoph has joined #openstack | 08:49 | |
*** asavu has joined #openstack | 08:50 | |
*** Deathvalley122 has quit IRC | 08:50 | |
Razique | hey uksysadmin :) | 08:51 |
yadel | Hi, I'm trying to install nova with this package: nova-2011.3.tar.gz in Debian squeeze. | 08:52 |
yadel | I have installed the requirement (normaly). | 08:52 |
uksysadmin | hey all | 08:52 |
yadel | But when I run this command: python setup.py build, I meet these errors: | 08:52 |
*** shaon has joined #openstack | 08:52 | |
yadel | ERROR: Python module pluginlib_nova not found | 08:52 |
yadel | ERROR: Python module novalib not found | 08:53 |
yadel | ERROR: Python module novalib not found | 08:53 |
yadel | ERROR: Python module faults not found | 08:53 |
uksysadmin | FlorianOtel: Razique either of you know the correct value type for export OS_TENANT_NAME= ? I've always used the actual tenant name (so, say, development, or production) not the ID which Horizon has put in. Before I end up wasting people's time is it a bug? | 08:53 |
yadel | etc ... | 08:53 |
FlorianOtel | uksysadmin, sorry mate, still not out of the glance RC1 woods myself... | 08:54 |
uksysadmin | oh | 08:55 |
*** nid0 has joined #openstack | 08:55 | |
uksysadmin | fair enough | 08:55 |
*** arBmind has quit IRC | 08:55 | |
FlorianOtel | did you got it sorted ? | 08:55 |
uksysadmin | yeah I gave up on glance+swift+keystone - glance's swift backend configs don't seem comprehensive enough to cater for the keystone+swift backend to work properly imho | 08:56 |
FlorianOtel | btw, I think I know where that strange config comes | 08:56 |
*** Deathvalley122 has joined #openstack | 08:56 | |
Razique | uksysadmin: the OS_TENANT_NAME should be the id yes :) | 08:56 |
Razique | which version ? | 08:57 |
uksysadmin | so... OS_TENANT_NAME should be an ID?! #ffs | 08:57 |
uksysadmin | Essex RC1 of everything - python-novaclient, keystone | 08:57 |
Razique | let me check | 08:58 |
uksysadmin | There's too much inconsistency in OpenStack! :S | 08:58 |
Razique | yup | 08:59 |
Razique | -export OS_TENANT_ID={{ tenant_id }} | 08:59 |
Razique | 14 | 08:59 |
Razique | +export OS_TENANT_NAME={{ tenant_id }} | 08:59 |
*** jimbaker has quit IRC | 08:59 | |
Razique | so it's the id, not the plain name itself | 08:59 |
uksysadmin | but on using the id, I get an error | 08:59 |
uksysadmin | on using the name, python-nova works | 08:59 |
uksysadmin | "python-novaclient" | 09:00 |
uksysadmin | I'l raise a bug in horizon then - the tenant was created in horizon and therefore its settings should be consistent - but I have to manually change the resource file to put in an actual name and then it works | 09:01 |
uksysadmin | so something is screwy | 09:01 |
hwestman | Anyone here been working on horizon? | 09:03 |
hwestman | Like new panels and dashboards etc? | 09:03 |
*** shaibn has quit IRC | 09:03 | |
Razique | hwestman: nope | 09:07 |
*** Oneiroi^gone is now known as oneiroi | 09:07 | |
hwestman | Worth a shot:/ | 09:12 |
Razique | I dunno, I've never found the dashboard that usefull to me | 09:19 |
Razique | since I fin the CLI way more efficient (nothing but a personal choice :) ) | 09:19 |
uksysadmin | Razique: that's a feeling shared by many and goes without saying, equally, there are lots of use cases for having a gui like dashboard - its a tool to help people use OpenStack that compliments a command line - not an either/or situation. | 09:22 |
chmouel | uksysadmin: review has just been opened this morning https://review.openstack.org/#change,5856 | 09:23 |
chmouel | uksysadmin: (about Glance / Swift+Keystone) | 09:23 |
uksysadmin | ah, chmouel - good! :)_ | 09:23 |
chmouel | uksysadmin: hopefully this should be very straighforward, just setting swift_auth_version = 2 | 09:23 |
uksysadmin | brilliant | 09:23 |
Razique | chmouel: great :) | 09:28 |
*** jimbaker has joined #openstack | 09:30 | |
*** jimbaker has quit IRC | 09:30 | |
*** jimbaker has joined #openstack | 09:30 | |
*** pretec has joined #openstack | 09:32 | |
halfss_ | chmouel hi,does glance+keystone+swift work well now? | 09:35 |
*** miclorb_ has joined #openstack | 09:35 | |
chmouel | halfss_: it's in review process on 5856 | 09:37 |
halfss_ | chmouel oh thanks :D | 09:37 |
*** arBmind has joined #openstack | 09:39 | |
*** msavy has joined #openstack | 09:42 | |
chmouel | work well :) http://pastie.org/private/4mecew8tjzcuvhvsvt9pa | 09:46 |
uvirtbot | New bug: #966069 in horizon "/etc/apache2/conf.d/dashboard.conf contains wrong paths in the Ubuntu package" [Undecided,New] https://launchpad.net/bugs/966069 | 09:46 |
uksysadmin | chmouel: will this land before essex final? | 09:46 |
chmouel | uksysadmin: yes | 09:49 |
chmouel | the bug is release critical | 09:49 |
chmouel | fyi, the configuration changes needed http://pastie.org/private/z6fjrevpvar9fvw8ei4kw | 09:50 |
Daviey | chmouel: what is the bug you are seeing? | 09:51 |
*** tryggvil__ has joined #openstack | 09:51 | |
chmouel | Daviey: do you mean the bug I am referencing? | 09:53 |
chmouel | bug 944946 | 09:54 |
chmouel | bug #944946 | 09:54 |
chmouel | https://bugs.launchpad.net/glance/+bug/944946 | 09:54 |
chmouel | (never can't figure out when uvirtbot catch bug number for full links) | 09:54 |
Daviey | thanks chmouel | 09:55 |
FlorianOtel | chmouel, Did I read that change correctly that it will be using v1 of swift auth ? | 09:56 |
FlorianOtel | chmouel, whereas your temp patch uses version 2. | 09:57 |
chmouel | FlorianOtel: no in Juerg patch it defult to v1, I have advised to use v2 | 09:57 |
FlorianOtel | chmouel, yes, that's what I meant. | 09:57 |
chmouel | FlorianOtel: yes that's correct, I think v2 by default make more sense | 09:58 |
FlorianOtel | ah, so you mean that the _default_ is 1, but we can override in config to 2 ? hmm.. | 09:58 |
chmouel | yes | 09:58 |
chmouel | currently | 09:58 |
chmouel | could change when this is merged | 09:58 |
halfss_ | i want use novaclient:>>> from novaclient.v1_1 import client | 10:01 |
halfss_ | >>> nt=client.Client('test','test','f4b7ad3136124541ad6a0f16b372869b','http://192.168.10.103:5000/v2.0') | 10:01 |
halfss_ | nt.flavors.list() | 10:01 |
halfss_ | but return : File "/opt/stack/python-novaclient/novaclient/service_catalog.py", line 67, in url_for | 10:01 |
halfss_ | raise novaclient.exceptions.EndpointNotFound() | 10:01 |
halfss_ | novaclient.exceptions.EndpointNotFound | 10:01 |
FlorianOtel | chmouel, on smth else but related: the format of "swift_store_auth_address" in "glance-api.conf". It says it is "Address where the Swift authentication service lives". In the config I got from uksysadmin it actually points to Keystone service port (i.e. 5000) whereas the default in the source is Swift itself... | 10:01 |
halfss_ | is there anybody know why? | 10:01 |
chmouel | FlorianOtel: feel free to comment on the review so Juerg can update it | 10:03 |
FlorianOtel | chmouel, Will do. | 10:03 |
chmouel | FlorianOtel: cheers | 10:03 |
*** livemoon has left #openstack | 10:04 | |
halfss_ | FlorianOtel hi does you glance+keystone+swift download image work well? | 10:05 |
FlorianOtel | halfss_, Still working out the "proper" way to config glance on swift w/ keystone auth. So the answer is still "no". | 10:06 |
FlorianOtel | sorry. | 10:06 |
halfss_ | FlorianOtel :) | 10:06 |
halfss_ | FlorianOtel this is my:swift_store_auth_address = http://192.168.10.103:5000/v2.0/ i can upload image normal | 10:07 |
halfss_ | but can't download the image | 10:07 |
FlorianOtel | halfss_, Can you please post your API and registry conf somewhere to check ? there are some confusions as to what must go where. At least to me. | 10:08 |
uksysadmin | I'm away now guys. have a good one. | 10:09 |
*** uksysadmin has quit IRC | 10:09 | |
chmouel | halfss_: which very of glance you are using? a patched one that add auth 2.0 support? | 10:09 |
halfss_ | FlorianOtel when i change file to swift just change this file:http://paste.openstack.org/show/12175/ | 10:09 |
FlorianOtel | halfss_, That's your keystone service port. So the variable name "swift_store_auth_addres" -- or at least the description -- are misleading IMHO. | 10:10 |
*** atoato88 has joined #openstack | 10:10 | |
*** dneary has quit IRC | 10:10 | |
halfss_ | chmouel my glance version is 2012.1 | 10:10 |
halfss_ | now i can upload image via glance to swift, but when i want to download the image ,ruturn 404 | 10:11 |
uvirtbot | New bug: #966079 in quantum "starting "plugins/linuxbridge/agent/linuxbridge_quantum_agent.py" failed: no such table: vlan_bindings" [Undecided,New] https://launchpad.net/bugs/966079 | 10:11 |
halfss_ | chmouel : i have already fix that bug | 10:11 |
chmouel | halfss_: the default version don't support 2.0 until the review is landed https://review.openstack.org/#change,5856 | 10:11 |
chmouel | halfss_: you probably want to backout your change and use 5856 changes, it works well (i have just tested it) | 10:12 |
halfss_ | chmouel : let me try :) | 10:12 |
*** robix1 has joined #openstack | 10:12 | |
*** robix has quit IRC | 10:13 | |
chmouel | I am going to be AFK for the rest of the day (on leave I should be on my bike outside not on IRC :)) but take this configuration change as example http://pastie.org/private/z6fjrevpvar9fvw8ei4kw after you merged 5856 | 10:14 |
FlorianOtel | chmouel, great to have that, thanks | 10:15 |
FlorianOtel | chmouel, Sorry to keep you inside, but I have a hard time figuring out what "swift_store_key" is / is used for. | 10:16 |
FlorianOtel | chmouel, Sounds like a long lived / unscoped token -- and I thought we were moving away from that to user/pass | 10:17 |
*** robix1 has quit IRC | 10:20 | |
*** nelson has quit IRC | 10:21 | |
*** siwos has joined #openstack | 10:22 | |
siwos | hi | 10:22 |
siwos | I need some information on ring rebalancing in swift | 10:22 |
siwos | does it do any other things than just commiting your changes to the ring? | 10:23 |
*** wariola has quit IRC | 10:26 | |
uvirtbot | New bug: #966087 in nova "Instance remains in deleting state if libvirt down during deletion" [Undecided,New] https://launchpad.net/bugs/966087 | 10:26 |
*** paulmillar has joined #openstack | 10:35 | |
*** paulmillar has quit IRC | 10:39 | |
*** paulmillar has joined #openstack | 10:39 | |
uvirtbot | New bug: #966107 in nova "Instances stuck in Image_snapshot/Queued should be cleaned up" [Undecided,New] https://launchpad.net/bugs/966107 | 10:41 |
*** mjfork has joined #openstack | 10:42 | |
*** tryggvil__ has quit IRC | 10:42 | |
*** Ard1t has quit IRC | 10:43 | |
*** miclorb_ has quit IRC | 10:44 | |
*** Ard1t has joined #openstack | 10:45 | |
*** B1ackavar has quit IRC | 10:47 | |
*** clopez has joined #openstack | 10:53 | |
*** sandywalsh has quit IRC | 10:57 | |
*** GheRivero has quit IRC | 11:00 | |
*** tryggvil__ has joined #openstack | 11:01 | |
*** agonella has joined #openstack | 11:01 | |
*** dieterdemeyer has quit IRC | 11:04 | |
*** agonella has quit IRC | 11:05 | |
*** sandywalsh has joined #openstack | 11:11 | |
*** qazwsx has quit IRC | 11:13 | |
*** arBmind has quit IRC | 11:16 | |
*** marrusl has joined #openstack | 11:18 | |
*** livemoon has joined #openstack | 11:25 | |
*** vitiho_ has joined #openstack | 11:30 | |
*** vitiho has quit IRC | 11:30 | |
*** eirikbb_ has joined #openstack | 11:32 | |
*** eirikbb has quit IRC | 11:35 | |
wedjat | hi guys | 11:36 |
wedjat | did anyone alreadu succeed in installing openstack nova on Debian ? | 11:37 |
wedjat | seems that many python modules are missing after the first build | 11:37 |
Razique | mmm a projets has been opened | 11:40 |
Razique | in order to make OPS running under debian | 11:40 |
Razique | let me dig | 11:40 |
Razique | there http://wiki.debian.org/OpenStackHowto | 11:41 |
Razique | :) | 11:41 |
*** arBmind has joined #openstack | 11:41 | |
*** littleidea has joined #openstack | 11:42 | |
*** st4n has joined #openstack | 11:42 | |
st4n | Hi, when trying to add a role to a user, I get this error message : 'NoneType' object has no attribute 'iteritems' | 11:43 |
st4n | any clue? | 11:43 |
*** dieterdemeyer has joined #openstack | 11:43 | |
st4n | I'm using trunk version | 11:44 |
*** randomubuntuguy has joined #openstack | 11:44 | |
st4n | of keystone | 11:44 |
*** bsza has joined #openstack | 11:44 | |
*** rubiojr has joined #openstack | 11:50 | |
*** littleidea has quit IRC | 11:52 | |
*** mdrnstm has quit IRC | 11:52 | |
*** st4n has quit IRC | 11:54 | |
*** stewart_ has joined #openstack | 11:54 | |
*** randomubuntuguy has quit IRC | 11:55 | |
*** stewart has quit IRC | 11:55 | |
*** stewart has joined #openstack | 11:55 | |
*** garyk has quit IRC | 11:58 | |
*** clopez has quit IRC | 12:01 | |
*** markvoelker has joined #openstack | 12:01 | |
*** ahasenack has joined #openstack | 12:02 | |
*** dwcramer has joined #openstack | 12:02 | |
*** Susanne-Balle has joined #openstack | 12:03 | |
*** swiftindia has quit IRC | 12:15 | |
*** paulmillar has quit IRC | 12:17 | |
*** paulmillar has joined #openstack | 12:17 | |
*** ohad_ is now known as ohad | 12:19 | |
*** oneiroi has quit IRC | 12:21 | |
*** oneiroi has joined #openstack | 12:22 | |
*** randomubuntuguy has joined #openstack | 12:22 | |
*** nelson has joined #openstack | 12:23 | |
*** j^2 has quit IRC | 12:24 | |
*** koolhead17|away has joined #openstack | 12:24 | |
*** j^2 has joined #openstack | 12:25 | |
*** Ard1t has quit IRC | 12:26 | |
*** egant has joined #openstack | 12:26 | |
uvirtbot | New bug: #966175 in nova "Get rid of fixed_range flag" [Undecided,New] https://launchpad.net/bugs/966175 | 12:26 |
*** Ard1t has joined #openstack | 12:27 | |
*** koolhead17|away is now known as koolhead17 | 12:27 | |
*** paulmillar has quit IRC | 12:28 | |
*** robix has joined #openstack | 12:31 | |
*** Ryan_Lane has joined #openstack | 12:34 | |
*** yaguang has quit IRC | 12:35 | |
*** randomubuntuguy has quit IRC | 12:38 | |
*** lts has joined #openstack | 12:39 | |
*** heyho has quit IRC | 12:46 | |
*** shaon has quit IRC | 12:47 | |
*** heyho has joined #openstack | 12:47 | |
*** pretec has quit IRC | 12:47 | |
*** pretec has joined #openstack | 12:48 | |
*** sdomme has joined #openstack | 12:49 | |
*** dendrobates is now known as dendro-afk | 12:49 | |
wedjat | thanks Razique | 12:50 |
Razique | sure :) | 12:50 |
sdomme | hello, we are currently installing keystone rc1 from tar-ball and running in the following issue at executinh keystone commands: Unable to communicate with identity service: (403, 'Forbidden'). (HTTP 400) | 12:51 |
sdomme | it also occures if keystone-all is not even running | 12:51 |
*** oneiroi has left #openstack | 12:52 | |
*** oneiroi has joined #openstack | 12:52 | |
*** oneiroi has left #openstack | 12:52 | |
*** nelson has quit IRC | 12:52 | |
*** dwcramer has quit IRC | 12:53 | |
*** dprince has joined #openstack | 12:54 | |
*** oneiroi has joined #openstack | 12:55 | |
*** ldlework has joined #openstack | 12:55 | |
*** emorisse has joined #openstack | 12:57 | |
*** juergh has quit IRC | 12:57 | |
sdomme | OMG: we just found our syntaxerror. it is important to have a trailing slash at "--endpoint http://localhost:35357/v2.0/" | 12:58 |
*** dneary has joined #openstack | 12:58 | |
*** maploin has joined #openstack | 12:59 | |
*** maploin has joined #openstack | 12:59 | |
sdomme | the new doc "OpenStack Install and Deploy Manual - essex" describes it not correctly at "Setting up tenants, users, and roles" | 13:00 |
*** markmcclain has joined #openstack | 13:00 | |
*** msavy has quit IRC | 13:00 | |
*** msavy has joined #openstack | 13:01 | |
*** rektide has quit IRC | 13:02 | |
*** rektide has joined #openstack | 13:03 | |
*** kyriakos has quit IRC | 13:03 | |
*** nelson has joined #openstack | 13:03 | |
*** jimyeh has quit IRC | 13:03 | |
*** lborda has joined #openstack | 13:04 | |
*** sashank has joined #openstack | 13:08 | |
sashank | hi | 13:08 |
sashank | anybody der ? | 13:08 |
* koolhead17 hi backs sashank | 13:09 | |
sashank | i want to know how to integrate or run hadoop on openstack | 13:09 |
sashank | any pointers ? help greately appreciated | 13:09 |
sashank | there is no offshelf project i came acrosss , apache whirr iam not sure it has any openstack adaptor | 13:10 |
sashank | so any help in this ? | 13:11 |
*** kyriakos has joined #openstack | 13:13 | |
sashank | ??? | 13:13 |
*** hggdh has quit IRC | 13:13 | |
*** judd7 has joined #openstack | 13:15 | |
*** hggdh has joined #openstack | 13:16 | |
*** souza has joined #openstack | 13:18 | |
souza | Hello Folks! | 13:18 |
*** livemoon has quit IRC | 13:18 | |
*** dieterdemeyer has quit IRC | 13:20 | |
*** joesavak has joined #openstack | 13:21 | |
Razique | damn https://www.networkworld.com/news/2012/032612-hp39s-server-strategy-focuses-on-257664.html?source=NWWNLE_nlt_storage_2012-03-27 | 13:21 |
Razique | :D | 13:21 |
Razique | hello souza : ) | 13:21 |
*** oneiroi has quit IRC | 13:21 | |
*** oneiroi has joined #openstack | 13:21 | |
*** oneiroi has joined #openstack | 13:21 | |
*** rods has joined #openstack | 13:22 | |
souza | I have a question, i'm going to install the essex on ubuntu 12.04 following this tutorial >> http://www.hastexo.com/resources/docs/installing-openstack-essex-4-ubuntu-1204-precise-pangolin << and at first step it shows a server that has two network interfaces, but i just have one network interface on my server, what's changes i must to do when i'm following this steps? | 13:23 |
Madkiss | err. | 13:23 |
Madkiss | i'm just looking up the answer for you right now | 13:23 |
Madkiss | (i'm the author of that document) | 13:23 |
*** nelson has quit IRC | 13:23 | |
sashank | i want to know how to integrate or run hadoop mapreduce on openstack , any pointers ? | 13:23 |
koolhead17 | Madkiss, ^^ :P | 13:24 |
Madkiss | koolhead17: yeah? | 13:25 |
*** jimyeh has joined #openstack | 13:25 | |
souza | Razique: Hello =D | 13:25 |
*** natea has joined #openstack | 13:26 | |
*** tkleinscea has joined #openstack | 13:27 | |
*** andrewsmedina has joined #openstack | 13:27 | |
Madkiss | souza: From what I can see, in order to achieve the very same setup with one NIC present only, all you have to do is replace every occurance of eth1 with eth0 (assuming eth0 is the network interface you have), and the rest should just work. | 13:31 |
Madkiss | souza: Did you have trouble in doing so? | 13:31 |
*** cctrieloff has joined #openstack | 13:34 | |
*** sdomme has quit IRC | 13:34 | |
souza | Madkiss: Thanks, i'll try it. | 13:34 |
*** sashank has quit IRC | 13:36 | |
Razique | hey koolhead17 ! | 13:37 |
Razique | go back at work u lazy | 13:37 |
*** halfss_ has quit IRC | 13:37 | |
*** cryptk is now known as cryptk|offline | 13:37 | |
tobin | Does anyone know if the functionality of keystone-all (logging to stdout) changed from essex-4 --> rc1? | 13:38 |
*** juergh has joined #openstack | 13:42 | |
*** osier has quit IRC | 13:43 | |
*** kbringard has joined #openstack | 13:45 | |
*** halfss has joined #openstack | 13:46 | |
*** roge has joined #openstack | 13:47 | |
*** blamar has joined #openstack | 13:47 | |
*** issackelly has joined #openstack | 13:50 | |
*** halfss has quit IRC | 13:51 | |
*** imsplitbit has joined #openstack | 13:51 | |
*** halfss has joined #openstack | 13:52 | |
*** clopez has joined #openstack | 13:52 | |
*** eglynn_ has joined #openstack | 13:52 | |
*** eglynn has quit IRC | 13:53 | |
*** GheRivero has joined #openstack | 13:53 | |
*** siwos has quit IRC | 13:54 | |
*** robbiew has joined #openstack | 13:57 | |
*** jastr has quit IRC | 13:58 | |
*** clopez has quit IRC | 14:00 | |
koolhead17 | tobin, not sure but i doubt it would have, what issue you are facing? | 14:02 |
*** randomubuntuguy has joined #openstack | 14:02 | |
*** MarkAtwood has quit IRC | 14:02 | |
*** fowler_ has joined #openstack | 14:03 | |
*** clopez has joined #openstack | 14:03 | |
*** eglynn__ has joined #openstack | 14:05 | |
*** dwcramer has joined #openstack | 14:05 | |
*** eglynn_ has quit IRC | 14:08 | |
*** swiftindia has joined #openstack | 14:08 | |
*** shadowe989 has joined #openstack | 14:10 | |
uvirtbot | New bug: #966241 in glance "auto-created DB is not under version control" [Undecided,New] https://launchpad.net/bugs/966241 | 14:10 |
uvirtbot | New bug: #966242 in glance "Cannot specify a version to 'glance-manage version_control'" [Undecided,New] https://launchpad.net/bugs/966242 | 14:10 |
uvirtbot | New bug: #966243 in glance "Use of BIGINT for image size column causes sqlite problems" [Undecided,New] https://launchpad.net/bugs/966243 | 14:10 |
uvirtbot | New bug: #966240 in glance "Image can be registered even though the length of the name exceeds 255 characters" [Undecided,New] https://launchpad.net/bugs/966240 | 14:11 |
*** Blackavar has joined #openstack | 14:12 | |
*** swiftindia has quit IRC | 14:14 | |
*** nphase has quit IRC | 14:19 | |
*** rnirmal has joined #openstack | 14:19 | |
*** nphase has joined #openstack | 14:20 | |
*** nphase has joined #openstack | 14:20 | |
*** nphase has joined #openstack | 14:20 | |
*** rnirmal has quit IRC | 14:20 | |
uvirtbot | New bug: #966249 in keystone "Tenant can be created with name more than 64 characters in length" [Undecided,New] https://launchpad.net/bugs/966249 | 14:21 |
uvirtbot | New bug: #966251 in keystone "User can be created with name more than 64 characters in length" [Undecided,New] https://launchpad.net/bugs/966251 | 14:21 |
*** ryanpetrello has joined #openstack | 14:21 | |
*** jaypipes has quit IRC | 14:24 | |
*** troytoman-away is now known as troytoman | 14:25 | |
*** rnirmal has joined #openstack | 14:25 | |
*** spiffxp has joined #openstack | 14:28 | |
*** davepigott has quit IRC | 14:28 | |
*** dxd828 has joined #openstack | 14:29 | |
*** jaypipes has joined #openstack | 14:30 | |
*** littleidea has joined #openstack | 14:30 | |
Razique | https://qloudstat.com/welcome | 14:31 |
*** arBmind has quit IRC | 14:32 | |
*** arBmind has joined #openstack | 14:33 | |
uvirtbot | New bug: #966261 in keystone "500 error on deleting a non-existing user" [Undecided,New] https://launchpad.net/bugs/966261 | 14:36 |
*** nelson_ has joined #openstack | 14:40 | |
*** al-maisan is now known as almaisan-away | 14:40 | |
*** troytoman is now known as troytoman-away | 14:41 | |
*** osier has joined #openstack | 14:43 | |
*** mrjazzcat has joined #openstack | 14:45 | |
*** dachary has quit IRC | 14:46 | |
*** nelson_ has quit IRC | 14:47 | |
FlorianOtel | . | 14:49 |
*** FlorianOtel has quit IRC | 14:49 | |
*** armaan has joined #openstack | 14:50 | |
*** zzed has joined #openstack | 14:51 | |
*** adamgamble has joined #openstack | 14:51 | |
adamgamble | Is it possible to take a snapshot of a nova instance and upload it to amazon ec2? | 14:51 |
*** spiffxp has quit IRC | 14:52 | |
*** jdg has joined #openstack | 14:54 | |
*** Free_maN has joined #openstack | 14:56 | |
*** Free_maN has joined #openstack | 14:56 | |
*** hazmat is now known as kapilt | 15:02 | |
*** clopez has quit IRC | 15:02 | |
Razique | mmm | 15:02 |
Razique | yes! | 15:03 |
Razique | via euca2ools | 15:03 |
Razique | for which the endpoint would be your amazon cloud | 15:03 |
Razique | nova image-create in order to create an image from a running instance | 15:03 |
*** ppradhan has joined #openstack | 15:04 | |
Razique | then upload that image to ec2 services | 15:04 |
*** avoine has joined #openstack | 15:04 | |
*** Glacee has joined #openstack | 15:04 | |
*** ppradhan has left #openstack | 15:04 | |
*** ppradhan has joined #openstack | 15:04 | |
adamgamble | awesome thanks for your help | 15:05 |
uvirtbot | New bug: #966287 in devstack "service_* variables are no longer used and should be cleaned up " [Undecided,New] https://launchpad.net/bugs/966287 | 15:06 |
*** Deathvalley122 has quit IRC | 15:07 | |
*** aliguori has quit IRC | 15:10 | |
*** Free_maN has quit IRC | 15:10 | |
*** Gordonz has joined #openstack | 15:10 | |
*** freeflying has quit IRC | 15:10 | |
*** freeflying has joined #openstack | 15:10 | |
*** davepigott has joined #openstack | 15:11 | |
*** spiffxp has joined #openstack | 15:11 | |
*** Blackavar has quit IRC | 15:12 | |
*** davepigott has quit IRC | 15:13 | |
*** davepigott has joined #openstack | 15:13 | |
*** adamgamble has quit IRC | 15:13 | |
*** deshantm has joined #openstack | 15:13 | |
*** marrusl_ has joined #openstack | 15:13 | |
*** marrusl__ has joined #openstack | 15:13 | |
*** marrusl_ has quit IRC | 15:14 | |
*** marrusl__ has quit IRC | 15:14 | |
*** marrusl_ has joined #openstack | 15:14 | |
*** reidrac has quit IRC | 15:16 | |
uvirtbot | New bug: #957359 in keystone "passlib segfaults when keystone is sent a large password" [High,In progress] https://launchpad.net/bugs/957359 | 15:16 |
*** clopez has joined #openstack | 15:17 | |
*** atoato88 has quit IRC | 15:17 | |
*** shaon has joined #openstack | 15:20 | |
*** mrjazzcat has quit IRC | 15:20 | |
*** zzed has quit IRC | 15:20 | |
*** zzed has joined #openstack | 15:20 | |
Madkiss | hmm. am I right in assuming that it's not possible to pass the name of the configuration file to keystone-all at the moment? | 15:21 |
*** adamgamble has joined #openstack | 15:22 | |
*** arBmind has quit IRC | 15:23 | |
adamgamble | So I created a snapshot from the dashboard, and that succeeded, but lets say I wanted to back that snapshot up and restore it on a brand new Open stack setup. I tried to add the snapshot as a new image since I thought it was just an ami image. I used this command glance add is_public=true name="Jenkins" container_format=ami disk_format=ami < 5642dcdf-583b-46b3-b3d3-d9ca42cab09a it uploaded the image, said it succeeded, but when I try | 15:24 |
*** zzed_ has joined #openstack | 15:24 | |
*** MarkAtwood has joined #openstack | 15:24 | |
*** rodlabs has joined #openstack | 15:25 | |
*** vitiho_ has quit IRC | 15:25 | |
*** zzed_ has quit IRC | 15:26 | |
*** zzed has quit IRC | 15:26 | |
*** zzed_ has joined #openstack | 15:26 | |
Madkiss | ttx? | 15:28 |
*** deepakgarg has joined #openstack | 15:29 | |
*** lts has quit IRC | 15:29 | |
*** arBmind has joined #openstack | 15:29 | |
*** lts has joined #openstack | 15:30 | |
*** egant has quit IRC | 15:30 | |
adamgamble | is ttx a format? | 15:30 |
ttx | no. | 15:30 |
Madkiss | no. ttx is a nickname. ;) | 15:30 |
*** halfss has quit IRC | 15:31 | |
adamgamble | oh hehe | 15:31 |
*** wilmoore has joined #openstack | 15:31 | |
adamgamble | sorry i'm such a newb, i've been trying to RTFM but haven't been successful in solving my problems | 15:31 |
adamgamble | I guess i'm going to have to start digging into the python to see what its doing :) | 15:31 |
*** chrisfer has quit IRC | 15:32 | |
adamgamble | I have never been successful in adding an image with glance that would actually boot, even though it looks like i'm doing the same thing that the devstack bash script does (which works) | 15:32 |
*** NashTrash has joined #openstack | 15:32 | |
NashTrash | I am seeing a very odd and sporadic failure on some of my VMs. They startup but fail on metadata. | 15:33 |
NashTrash | I put a tcpdump on their vnet interface but there is nothing coming or going. | 15:34 |
NashTrash | It is not consistent across hosts or anything else. | 15:34 |
*** egant has joined #openstack | 15:34 | |
NashTrash | Is there any way to see if the virtual interface failed to get setup correctly? | 15:34 |
*** andrewsmedina has quit IRC | 15:36 | |
uvirtbot | New bug: #966314 in openstack-ci "manifest.log should rotate" [Undecided,New] https://launchpad.net/bugs/966314 | 15:36 |
*** pretec has quit IRC | 15:38 | |
*** mrjazzcat has joined #openstack | 15:40 | |
uvirtbot | New bug: #966319 in keystone "keystone-all ignores the "--config-file" parameter" [Undecided,New] https://launchpad.net/bugs/966319 | 15:41 |
*** randomubuntuguy has quit IRC | 15:42 | |
*** aliguori has joined #openstack | 15:42 | |
NashTrash | I see nothing in any log that would indicate a problem with the vnet interface | 15:42 |
*** nelson has joined #openstack | 15:43 | |
*** vitiho has joined #openstack | 15:44 | |
*** dachary has joined #openstack | 15:46 | |
*** oneiroi has left #openstack | 15:46 | |
*** sandywalsh has quit IRC | 15:47 | |
*** tkleinscea has quit IRC | 15:47 | |
*** rods has quit IRC | 15:48 | |
*** souza has quit IRC | 15:48 | |
*** nelson has quit IRC | 15:48 | |
*** dolphm has joined #openstack | 15:50 | |
*** Deathvalley122 has joined #openstack | 15:50 | |
*** tkleinscea has joined #openstack | 15:51 | |
uvirtbot | New bug: #966329 in nova "RAX-specific auth in novaclient" [Undecided,New] https://launchpad.net/bugs/966329 | 15:51 |
*** epim has joined #openstack | 15:53 | |
*** littleidea has quit IRC | 15:54 | |
*** clauden has joined #openstack | 15:54 | |
*** vincentricci has joined #openstack | 15:55 | |
*** jtanner has quit IRC | 15:56 | |
*** dtroyer is now known as dtroyer_zzz | 15:57 | |
*** davepigott has quit IRC | 15:57 | |
*** kindaopsdevy has joined #openstack | 15:57 | |
*** kindaopsdevy has left #openstack | 15:57 | |
*** littleidea has joined #openstack | 15:58 | |
*** epim has quit IRC | 15:58 | |
*** oneiroi has joined #openstack | 15:59 | |
*** sandywalsh has joined #openstack | 16:00 | |
*** rods has joined #openstack | 16:00 | |
*** robix has quit IRC | 16:00 | |
*** vincentricci has quit IRC | 16:00 | |
*** vincentricci has joined #openstack | 16:01 | |
*** epim has joined #openstack | 16:04 | |
*** jdurgin has joined #openstack | 16:05 | |
*** justfine has joined #openstack | 16:07 | |
*** dtroyer_zzz is now known as dtroyer | 16:08 | |
*** Deathvalley122 has quit IRC | 16:09 | |
*** oneiroi is now known as Oneiroi^gone | 16:09 | |
*** jimyeh has quit IRC | 16:09 | |
*** Susanne-Balle has quit IRC | 16:13 | |
*** natea has quit IRC | 16:14 | |
*** Blackavar has joined #openstack | 16:15 | |
*** zzed_ has quit IRC | 16:16 | |
*** llang629 has joined #openstack | 16:16 | |
*** osier has quit IRC | 16:17 | |
*** ayoung has quit IRC | 16:17 | |
*** jdg has quit IRC | 16:18 | |
*** llang629 has left #openstack | 16:18 | |
*** Birk_ has joined #openstack | 16:22 | |
*** armaan has left #openstack | 16:23 | |
*** kindaopsdevy_ has joined #openstack | 16:25 | |
*** markmcclain has quit IRC | 16:25 | |
*** ayoung has joined #openstack | 16:25 | |
*** mindpixel has quit IRC | 16:27 | |
*** Razique has quit IRC | 16:29 | |
*** jasonb has joined #openstack | 16:30 | |
*** natea has joined #openstack | 16:31 | |
*** warik has joined #openstack | 16:33 | |
*** Gordonz has quit IRC | 16:34 | |
*** AlanClark has joined #openstack | 16:34 | |
*** Gordonz has joined #openstack | 16:34 | |
*** maploin has quit IRC | 16:34 | |
*** asavu has quit IRC | 16:36 | |
*** maplebed has joined #openstack | 16:38 | |
*** deepakgarg has quit IRC | 16:41 | |
*** dendro-afk is now known as dendrobates | 16:42 | |
*** derekh has quit IRC | 16:45 | |
*** vitiho has quit IRC | 16:46 | |
*** dneary has quit IRC | 16:46 | |
*** rafaduran has joined #openstack | 16:46 | |
*** vitiho has joined #openstack | 16:47 | |
*** clopez has quit IRC | 16:48 | |
*** rafaduran has quit IRC | 16:49 | |
*** rafaduran has joined #openstack | 16:49 | |
*** kindaopsdevy_ has left #openstack | 16:51 | |
uvirtbot | New bug: #966376 in nova "nova api show ips of instance" [Undecided,New] https://launchpad.net/bugs/966376 | 16:51 |
*** Triade has quit IRC | 16:51 | |
*** yshh has quit IRC | 16:52 | |
*** rkukura has quit IRC | 16:53 | |
*** robix has joined #openstack | 16:55 | |
*** Nithya_HP has joined #openstack | 16:55 | |
*** clopez has joined #openstack | 16:55 | |
*** natea has quit IRC | 16:56 | |
*** reed has joined #openstack | 16:56 | |
*** rnorwood has joined #openstack | 16:59 | |
*** dwcramer has quit IRC | 17:00 | |
*** johnpur has joined #openstack | 17:05 | |
*** praefect has joined #openstack | 17:05 | |
*** ChanServ sets mode: +v johnpur | 17:06 | |
*** jog0 has joined #openstack | 17:06 | |
*** adalbas has joined #openstack | 17:08 | |
*** dolphm has quit IRC | 17:09 | |
*** scoph has quit IRC | 17:12 | |
*** llang629_ has joined #openstack | 17:12 | |
*** robix has quit IRC | 17:14 | |
*** darraghb has quit IRC | 17:14 | |
*** hub_cap has joined #openstack | 17:14 | |
*** mrjazzcat has quit IRC | 17:20 | |
*** gyee has joined #openstack | 17:20 | |
*** llang629_ has quit IRC | 17:23 | |
*** jog0 has left #openstack | 17:23 | |
*** alrs has joined #openstack | 17:23 | |
*** datajerk1 has quit IRC | 17:24 | |
*** llang629_ has joined #openstack | 17:24 | |
*** mchenetz has joined #openstack | 17:24 | |
*** llang629_ is now known as llang629 | 17:25 | |
*** Susanne-Balle has joined #openstack | 17:27 | |
*** datajerk has joined #openstack | 17:27 | |
*** sstent has joined #openstack | 17:29 | |
*** sstent_ has quit IRC | 17:29 | |
Madkiss | hm. can I do something to make all the OpenStack components background themselves automatically after start? | 17:29 |
*** sstent has quit IRC | 17:29 | |
*** juergh has left #openstack | 17:30 | |
*** rafaduran has quit IRC | 17:31 | |
*** robix has joined #openstack | 17:32 | |
*** sstent has joined #openstack | 17:34 | |
*** littleidea has quit IRC | 17:37 | |
*** dolphm has joined #openstack | 17:37 | |
*** swendel has joined #openstack | 17:39 | |
*** reed has quit IRC | 17:40 | |
*** mrmartin has joined #openstack | 17:42 | |
*** blakehaggerty has joined #openstack | 17:45 | |
*** Deathvalley122 has joined #openstack | 17:45 | |
*** dendrobates is now known as dendro-afk | 17:46 | |
*** andrewsmedina has joined #openstack | 17:46 | |
*** shaon has quit IRC | 17:47 | |
*** jog0 has joined #openstack | 17:48 | |
*** llang629 has left #openstack | 17:49 | |
*** BalleS_ has joined #openstack | 17:49 | |
*** jtanner has joined #openstack | 17:51 | |
*** troytoman-away is now known as troytoman | 17:51 | |
*** fukushima has quit IRC | 17:51 | |
*** Susanne-Balle has quit IRC | 17:53 | |
*** kyriakos has quit IRC | 17:54 | |
*** CrazyThinker has quit IRC | 17:54 | |
*** CrazyThinker has joined #openstack | 17:55 | |
*** natea has joined #openstack | 17:56 | |
*** robix has quit IRC | 17:56 | |
*** po has quit IRC | 17:56 | |
*** swendel has quit IRC | 17:57 | |
*** heckj has joined #openstack | 17:57 | |
*** mrjazzcat has joined #openstack | 17:57 | |
jasonb | Could someone define the following settings (what they're for)?: internalURL, publicURL, adminURL | 17:58 |
*** rnorwood1 has joined #openstack | 17:58 | |
*** rnorwood has quit IRC | 17:59 | |
*** heckj has quit IRC | 18:00 | |
*** littleidea has joined #openstack | 18:02 | |
*** steve426f has quit IRC | 18:03 | |
*** natea has quit IRC | 18:03 | |
*** natea has joined #openstack | 18:03 | |
*** Nithya_HP has quit IRC | 18:05 | |
*** clopez has quit IRC | 18:06 | |
*** johnpostlethwait has joined #openstack | 18:06 | |
*** dendro-afk is now known as dendrobates | 18:07 | |
*** relateable has joined #openstack | 18:07 | |
*** Ard1t has quit IRC | 18:07 | |
*** clauden has quit IRC | 18:08 | |
*** clauden_ has joined #openstack | 18:08 | |
*** Ard1t has joined #openstack | 18:09 | |
*** jog0 has left #openstack | 18:10 | |
*** imsplitbit has quit IRC | 18:12 | |
*** Ard1t has quit IRC | 18:15 | |
*** Ard1t has joined #openstack | 18:17 | |
*** dwcramer has joined #openstack | 18:18 | |
*** lts has quit IRC | 18:20 | |
jasonb | With Glance essex, what should the URLs look like: http://$GLANCE_HOST:9292/v1 ?? Is the v1 part right? | 18:20 |
*** mnewby has joined #openstack | 18:21 | |
*** vitiho_ has joined #openstack | 18:21 | |
*** vitiho has quit IRC | 18:22 | |
dprince | jasonb: yes. v1 is right. | 18:22 |
jasonb | Thanks. | 18:22 |
*** albert23 has joined #openstack | 18:24 | |
jasonb | For Nova, does this look right?: http://$NOVA_HOST:8774/v2.0 | 18:24 |
*** armaan has joined #openstack | 18:26 | |
*** shaon has joined #openstack | 18:27 | |
dprince | jasonb: yes. | 18:27 |
jasonb | dprince: Thanks again. | 18:27 |
*** vincentricci has quit IRC | 18:29 | |
jasonb | Ahh.. just now got glance image upload to work. Wasn't working only because my glance-api-paste.ini and glance-registry-paste.ini didn't have: auth_token = ADMIN and admin_token = ADMIN | 18:30 |
*** vitiho has joined #openstack | 18:31 | |
*** vitiho_ has quit IRC | 18:31 | |
*** lts has joined #openstack | 18:33 | |
*** rnorwood1 has quit IRC | 18:34 | |
Madkiss | Okay. | 18:34 |
*** rnorwood has joined #openstack | 18:36 | |
*** rnorwood1 has joined #openstack | 18:37 | |
*** rnorwood has quit IRC | 18:37 | |
*** rgoodwin is now known as rgoodwin_away | 18:39 | |
*** pixelbeat has quit IRC | 18:39 | |
*** NashTrash has quit IRC | 18:40 | |
*** rgoodwin_away is now known as rgoodwin | 18:41 | |
*** adam__ has quit IRC | 18:47 | |
*** bbcmicrocomputer has quit IRC | 18:49 | |
*** adam__ has joined #openstack | 18:49 | |
*** jfluhmann has joined #openstack | 18:49 | |
*** kozze89 has joined #openstack | 18:50 | |
uvirtbot | New bug: #966457 in devstack "Devstack should use sql backend for keystone service catalaog" [Undecided,New] https://launchpad.net/bugs/966457 | 18:50 |
*** NashTrash has joined #openstack | 18:54 | |
*** lts has quit IRC | 18:56 | |
*** Ard1t has quit IRC | 18:57 | |
*** Ard1t has joined #openstack | 18:59 | |
*** rnorwood1 has quit IRC | 18:59 | |
*** Ard1t has quit IRC | 19:01 | |
*** Ard1t has joined #openstack | 19:01 | |
*** emorisse has quit IRC | 19:03 | |
*** armaan has left #openstack | 19:04 | |
*** wilmoore has quit IRC | 19:04 | |
*** wilmoore has joined #openstack | 19:04 | |
*** dpippenger has quit IRC | 19:05 | |
*** jdg has joined #openstack | 19:06 | |
*** Birk_ has quit IRC | 19:07 | |
jasonb | If I've installed via the debs, where would I find a file showing what iptables rules nova adds? (And a way to view and configure them would be preferable) | 19:09 |
*** lts has joined #openstack | 19:10 | |
*** jcannava has joined #openstack | 19:10 | |
*** imsplitbit has joined #openstack | 19:10 | |
*** robix has joined #openstack | 19:10 | |
*** dwcramer has quit IRC | 19:11 | |
*** rnorwood has joined #openstack | 19:11 | |
uvirtbot | New bug: #966482 in tempest "UnboundLocalError: local variable 'password' referenced before assignment" [Critical,Invalid] https://launchpad.net/bugs/966482 | 19:15 |
*** mdrnstm has joined #openstack | 19:16 | |
* jasonb finds nova/network/linux_net.py | 19:17 | |
*** jfluhmann has quit IRC | 19:18 | |
Madkiss | jasonb: call "iptables-save" :) | 19:20 |
jasonb | Yeah, I know about that one, but I wanted to see how these rules get installed, and maybe some text about what they're trying to do.. maybe a way of modifying the net block being configured, etc. | 19:21 |
*** Ard1t has quit IRC | 19:21 | |
jasonb | It | 19:22 |
jasonb | It's using 169.254.169.254/32 and I'm not real sure what that is. | 19:22 |
*** Ard1t has joined #openstack | 19:23 | |
*** arBmind has quit IRC | 19:24 | |
*** arBmind has joined #openstack | 19:31 | |
*** rnorwood has quit IRC | 19:32 | |
*** llang629 has joined #openstack | 19:35 | |
uvirtbot | New bug: #966414 in nova "Invalid Authorize Rules can cause a Compute DoS (dup-of: 869979)" [Critical,Fix released] https://launchpad.net/bugs/966414 | 19:35 |
*** llang629 has left #openstack | 19:37 | |
*** rnorwood has joined #openstack | 19:38 | |
*** dpippenger has joined #openstack | 19:42 | |
*** dwcramer has joined #openstack | 19:43 | |
*** oc80z has quit IRC | 19:44 | |
*** oc80z has joined #openstack | 19:44 | |
*** marrusl_ has quit IRC | 19:44 | |
*** Ard1t has quit IRC | 19:44 | |
*** marrusl has quit IRC | 19:45 | |
*** marrusl has joined #openstack | 19:45 | |
*** nelson has joined #openstack | 19:45 | |
*** jfluhmann has joined #openstack | 19:46 | |
*** Ard1t has joined #openstack | 19:47 | |
*** Ard1t has joined #openstack | 19:47 | |
*** mal__ has quit IRC | 19:49 | |
*** clopez has joined #openstack | 19:51 | |
*** jcannava has quit IRC | 19:51 | |
*** normanm has joined #openstack | 19:52 | |
*** Razique has joined #openstack | 19:53 | |
*** jcannava has joined #openstack | 19:56 | |
*** sebastianstadil has joined #openstack | 19:57 | |
*** mchenetz has quit IRC | 19:58 | |
*** Razique has quit IRC | 19:58 | |
*** adamgamble has left #openstack | 19:58 | |
*** Razique has joined #openstack | 19:58 | |
uvirtbot | New bug: #966529 in nova "floating ip does not move with live migration with multi_host" [Undecided,New] https://launchpad.net/bugs/966529 | 20:01 |
*** DavidLevin has joined #openstack | 20:02 | |
*** bruges_ has joined #openstack | 20:03 | |
*** mattstep has quit IRC | 20:03 | |
*** mattstep has joined #openstack | 20:03 | |
*** arBmind has quit IRC | 20:03 | |
*** bruges has quit IRC | 20:04 | |
*** littleidea has quit IRC | 20:04 | |
*** PiotrSikora has quit IRC | 20:06 | |
*** jcannava has left #openstack | 20:08 | |
*** PiotrSikora has joined #openstack | 20:09 | |
*** shaon has quit IRC | 20:12 | |
*** arBmind has joined #openstack | 20:16 | |
*** nhm has quit IRC | 20:19 | |
hub_cap | anyone know why libvirt+qemu doesnt set the hostname to whats defined in the instances table? | 20:19 |
*** natea_ has joined #openstack | 20:19 | |
*** adalbas has quit IRC | 20:20 | |
*** justfine has quit IRC | 20:21 | |
*** dprince has quit IRC | 20:21 | |
*** ldlework has quit IRC | 20:21 | |
*** nhm has joined #openstack | 20:23 | |
*** natea has quit IRC | 20:24 | |
*** natea_ is now known as natea | 20:24 | |
*** epim has quit IRC | 20:24 | |
*** rubiojr has quit IRC | 20:25 | |
*** DavidLevin has quit IRC | 20:26 | |
*** NashTrash has quit IRC | 20:28 | |
*** shaon has joined #openstack | 20:28 | |
*** rnorwood has quit IRC | 20:29 | |
*** lts has quit IRC | 20:31 | |
soren | hub_cap: Which hostname? | 20:32 |
hub_cap | VM hostname | 20:32 |
hub_cap | not the hypervisor | 20:32 |
soren | Still not sure what you mean. | 20:32 |
soren | The hostname as seen by operating system in the guest? | 20:33 |
*** rnorwood has joined #openstack | 20:33 | |
hub_cap | yes, like when i log in to the vm and type hostname | 20:33 |
soren | Because it has no business fiddling with that. | 20:33 |
hub_cap | sorry im used to openvz, not libvirt | 20:33 |
soren | openvz can make half a bajillion assumptions about its "guests". | 20:34 |
*** DavidLevin has joined #openstack | 20:34 | |
hub_cap | prolly more ;) | 20:34 |
*** ldlework has joined #openstack | 20:34 | |
soren | For all libvirt knows, the VM could be running OS/2. | 20:34 |
soren | Or MS-DOS 3.3. | 20:35 |
*** cctrieloff has quit IRC | 20:35 | |
soren | There's no portable way to impose a hostname setting on an operating system. | 20:35 |
*** judd7 has quit IRC | 20:35 | |
soren | If you want your guest to set something like that, it needs to pull the info from the metadata service and set it itself. | 20:35 |
soren | cloud-init can do that for you. | 20:36 |
soren | It's not libvirt or QEmu's job. | 20:36 |
hub_cap | ok cool, metadata might be the way to go w/ that one then | 20:36 |
hub_cap | thx for the info dude! | 20:36 |
soren | sure | 20:36 |
* soren goes to acquire caffeine | 20:37 | |
*** wonk has quit IRC | 20:41 | |
*** BalleS_ has quit IRC | 20:42 | |
*** berendt has quit IRC | 20:42 | |
*** pixelbeat has joined #openstack | 20:43 | |
*** deshantm_ has joined #openstack | 20:43 | |
*** deshantm has quit IRC | 20:46 | |
*** alekibango has quit IRC | 20:48 | |
*** alekibango has joined #openstack | 20:49 | |
*** Susanne-Balle has joined #openstack | 20:49 | |
pvo | hub_cap: guest agent | 20:49 |
hub_cap | ya thats what we are going to have to do, yall hook up w/ the metadata svc and get that info i assume? | 20:50 |
pvo | xenstore messaging | 20:50 |
hub_cap | Ah of course, the _easy_ way :P | 20:50 |
pvo | heh. totally easy. :p | 20:50 |
hub_cap | haha | 20:50 |
hub_cap | cool thx dude | 20:50 |
*** wonk has joined #openstack | 20:51 | |
*** roge has quit IRC | 20:51 | |
*** rnorwood has quit IRC | 20:52 | |
*** hingo has quit IRC | 20:52 | |
*** GheRivero has quit IRC | 20:52 | |
*** nelson has quit IRC | 20:53 | |
jasonb | I'm confused about what kind of content should be in nova.conf. This page shows an example, like a conf file with sections containing settings: http://docs.openstack.org/trunk/openstack-compute/install/content/nova-conf-file.html .. but then after I installed the deb, it contains command line switches only (like --logdir=/var/log/nova), one switch on each line. It's totally different content. Which one is right? Or, is it | 20:53 |
*** rnorwood has joined #openstack | 20:53 | |
*** DavidLevin has quit IRC | 20:53 | |
*** arBmind has quit IRC | 20:54 | |
*** vincentricci has joined #openstack | 20:55 | |
*** heckj has joined #openstack | 20:56 | |
*** kerouac has quit IRC | 20:59 | |
*** DavidLevin has joined #openstack | 21:00 | |
soren | jasonb: Both work for now. What you see in the packages is the old style, they haven't been converted yet. | 21:00 |
*** avoine has left #openstack | 21:00 | |
annegentle | jasonb: yes, what soren said. Wow docs ahead of code. WHAT? | 21:02 |
*** jbrogan has joined #openstack | 21:03 | |
*** dendrobates is now known as dendro-afk | 21:03 | |
*** asavu has joined #openstack | 21:04 | |
*** roge has joined #openstack | 21:04 | |
*** jbrogan has left #openstack | 21:04 | |
*** dendro-afk is now known as dendrobates | 21:05 | |
*** emorisse has joined #openstack | 21:05 | |
jasonb | hehe. Okay. I'm just trying to understand when I should follow the web docs and when I shouldn't. Thanks soren and annegentle. | 21:08 |
*** avoine has joined #openstack | 21:09 | |
*** jbwiv has joined #openstack | 21:09 | |
*** marrusl_ has joined #openstack | 21:10 | |
*** marrusl_ has joined #openstack | 21:10 | |
uvirtbot | New bug: #966612 in keystone "Build artifacts are missing from .gitignore" [Undecided,In progress] https://launchpad.net/bugs/966612 | 21:11 |
*** avoine has quit IRC | 21:14 | |
*** lts has joined #openstack | 21:14 | |
*** koolhead17 has quit IRC | 21:14 | |
*** melmoth has quit IRC | 21:15 | |
*** mutex has left #openstack | 21:19 | |
*** agonella has joined #openstack | 21:19 | |
*** kbringard has quit IRC | 21:22 | |
*** kbringard has joined #openstack | 21:23 | |
*** Susanne-Balle has quit IRC | 21:23 | |
*** ldlework has quit IRC | 21:24 | |
*** ayoung is now known as ayoung-afk | 21:26 | |
*** nelson has joined #openstack | 21:26 | |
*** marrusl_ has quit IRC | 21:26 | |
*** marrusl has quit IRC | 21:26 | |
*** marrusl has joined #openstack | 21:27 | |
*** alrs has quit IRC | 21:27 | |
*** alrs has joined #openstack | 21:28 | |
*** DanF_ has joined #openstack | 21:28 | |
*** lts has quit IRC | 21:28 | |
*** nelson has quit IRC | 21:31 | |
jasonb | Sometimes when I do "restart <componentname>" it says "restart: Unknown instance:" (but only sometimes) I'm sort of left to wonder what that means, but I'm guessing my server component didn't get restarted. | 21:33 |
kbringard | that tends to happen when you run restart on a service that isn't currently running | 21:33 |
kbringard | so like, if it happened with nova-compute | 21:33 |
kbringard | try | 21:33 |
kbringard | service nova-compute start | 21:34 |
kbringard | then service nova-compute restart | 21:34 |
kbringard | or, ps aux | grep nova-compute to make sure it's really running | 21:34 |
kbringard | then when you probably see that it's not, check the log and see why | 21:34 |
jasonb | # service nova-api restart | 21:34 |
jasonb | restart: Unknown instance: | 21:34 |
jasonb | (that's after a service nova-api start succeeded) | 21:34 |
kbringard | is nova-api running? | 21:35 |
jasonb | I guess it's not actually starting. | 21:35 |
jasonb | The last line in its log was: 2012-03-27 13:42:09 INFO nova.wsgi [-] Started metadata on 0.0.0.0:8775 | 21:36 |
*** blakehaggerty has quit IRC | 21:36 | |
jasonb | Just lots of DEBUG lines in the log. | 21:36 |
*** oNeToWn has quit IRC | 21:38 | |
*** bhall has joined #openstack | 21:39 | |
*** mikal has quit IRC | 21:41 | |
*** bsza has quit IRC | 21:44 | |
jasonb | hmm.. OSError: [Errno 13] Permission denied: '/usr/lib/python2.7/dist-packages/keys' | 21:44 |
*** aliguori has quit IRC | 21:44 | |
*** joesavak has quit IRC | 21:45 | |
*** nelson has joined #openstack | 21:46 | |
jasonb | nova's not starting because /usr/lib/python2.7/dist-packages/keys is missing. | 21:46 |
jasonb | Is there another package I should install? | 21:46 |
*** lborda has quit IRC | 21:47 | |
*** Ruetobas has quit IRC | 21:49 | |
*** davlaps has joined #openstack | 21:50 | |
*** hub_cap has quit IRC | 21:53 | |
jasonb | ahh, it's trying to create that keys directory.. as user 'nova'. | 21:54 |
*** nelson has quit IRC | 21:54 | |
uvirtbot | New bug: #966643 in keystone "Running keystone-all without argument will error out" [Undecided,New] https://launchpad.net/bugs/966643 | 21:56 |
*** msavy has quit IRC | 21:57 | |
*** Ruetobas has joined #openstack | 21:57 | |
*** dvogt has joined #openstack | 21:59 | |
*** reed has joined #openstack | 22:00 | |
*** blakehaggerty has joined #openstack | 22:01 | |
*** mrmartin has quit IRC | 22:02 | |
jasonb | .. nova-compute was not starting because it needed /usr/lib/python2.7/dist-packages/instances. I just mkdir it and chown it to nova and then it begins running. | 22:03 |
*** imsplitbit has quit IRC | 22:08 | |
*** Neptu has joined #openstack | 22:12 | |
*** Karmaon has joined #openstack | 22:14 | |
*** asavu has quit IRC | 22:16 | |
*** jfluhmann has quit IRC | 22:16 | |
*** Neptu has quit IRC | 22:17 | |
*** andrewsmedina has quit IRC | 22:19 | |
*** avoine has joined #openstack | 22:19 | |
*** miclorb_ has joined #openstack | 22:20 | |
*** dwcramer has quit IRC | 22:22 | |
*** Razique has quit IRC | 22:22 | |
*** hggdh has quit IRC | 22:23 | |
*** paulstallworth has joined #openstack | 22:24 | |
jasonb | On this page: http://docs.openstack.org/trunk/openstack-compute/install/content/compute-create-network.html .. it talks about how to create the network, and shows marking it "private". What does that do? I'm trying to figure out if I should mark mine private or not if I have several machines all on the same LAN. | 22:24 |
*** kbringard has quit IRC | 22:24 | |
*** dvogt has quit IRC | 22:24 | |
*** dvogt has joined #openstack | 22:24 | |
*** hggdh has joined #openstack | 22:26 | |
*** crago has joined #openstack | 22:26 | |
*** mikal has joined #openstack | 22:27 | |
*** ppradhan has quit IRC | 22:28 | |
jasonb | Actually instead of 'private' I should have my cloud name there it seems. | 22:28 |
*** reed has quit IRC | 22:29 | |
*** rodlabs has quit IRC | 22:32 | |
*** Neptu has joined #openstack | 22:32 | |
*** rnorwood has quit IRC | 22:32 | |
*** ikke-t has quit IRC | 22:35 | |
*** ikke-t has joined #openstack | 22:35 | |
uvirtbot | New bug: #966670 in keystone "keystone-manage only looks in source tree for keystone.conf" [Undecided,New] https://launchpad.net/bugs/966670 | 22:36 |
uvirtbot | New bug: #966671 in swift "Improve error reporting when running on an unsupported filesystem" [Undecided,New] https://launchpad.net/bugs/966671 | 22:36 |
*** blamar has quit IRC | 22:39 | |
jasonb | Next problem: When I run "sudo a2ensite dash" it says "ERROR: Site dash does not exist!" | 22:40 |
*** nelson has joined #openstack | 22:42 | |
*** davlaps has quit IRC | 22:42 | |
*** kapilt is now known as hazmat | 22:42 | |
*** MarkAtwood has quit IRC | 22:43 | |
*** vizsla has joined #openstack | 22:49 | |
*** tryggvil__ has quit IRC | 22:49 | |
*** albert23 has left #openstack | 22:53 | |
*** nelson has quit IRC | 22:54 | |
*** rnirmal has quit IRC | 22:58 | |
*** natea has quit IRC | 22:59 | |
*** natea has joined #openstack | 23:00 | |
*** andrewsmedina has joined #openstack | 23:00 | |
*** nphase has quit IRC | 23:01 | |
*** tkleinscea has quit IRC | 23:03 | |
*** Neptu has quit IRC | 23:05 | |
*** sebastianstadil has quit IRC | 23:07 | |
*** sebastianstadil has joined #openstack | 23:07 | |
*** roge has quit IRC | 23:09 | |
*** zomGreg has quit IRC | 23:09 | |
*** sebastianstadil has quit IRC | 23:13 | |
*** nelson has joined #openstack | 23:13 | |
*** zomGreg has joined #openstack | 23:15 | |
*** nelson has quit IRC | 23:20 | |
*** tkleinscea has joined #openstack | 23:20 | |
*** ahasenack has quit IRC | 23:20 | |
*** Neptu has joined #openstack | 23:20 | |
*** troytoman is now known as troytoman-away | 23:20 | |
*** andrewsmedina has quit IRC | 23:21 | |
*** sandywalsh has quit IRC | 23:23 | |
*** nelson has joined #openstack | 23:24 | |
*** agonella has quit IRC | 23:28 | |
*** agonella has joined #openstack | 23:28 | |
*** nelson has quit IRC | 23:30 | |
*** epim has joined #openstack | 23:31 | |
*** ryanpetrello has quit IRC | 23:32 | |
*** vitiho has quit IRC | 23:32 | |
*** agonella has quit IRC | 23:33 | |
*** Glacee has quit IRC | 23:35 | |
*** sandywalsh has joined #openstack | 23:36 | |
*** epim has quit IRC | 23:36 | |
*** warik has quit IRC | 23:40 | |
*** warik has joined #openstack | 23:41 | |
*** Karmaon has quit IRC | 23:41 | |
*** andrewsmedina has joined #openstack | 23:41 | |
*** emorisse has quit IRC | 23:41 | |
*** DanF_ has quit IRC | 23:42 | |
*** epim has joined #openstack | 23:42 | |
*** johnpostlethwait has quit IRC | 23:42 | |
*** jdg has quit IRC | 23:44 | |
*** andrewsmedina has quit IRC | 23:46 | |
*** sandywalsh has quit IRC | 23:48 | |
*** vizsla has quit IRC | 23:48 | |
*** thomasvandoren has joined #openstack | 23:49 | |
*** rnorwood has joined #openstack | 23:49 | |
*** vitiho has joined #openstack | 23:51 | |
*** Blackavar has quit IRC | 23:53 | |
*** johnpur has quit IRC | 23:55 | |
*** agonella has joined #openstack | 23:58 | |
*** nelson has joined #openstack | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!