*** LinstatSDR has quit IRC | 00:02 | |
*** LinstatSDR has joined #openstack-containers | 00:05 | |
*** unicell has quit IRC | 00:10 | |
*** LinstatSDR has quit IRC | 00:13 | |
*** jay-lau-513 has quit IRC | 00:32 | |
*** EricGonczer_ has joined #openstack-containers | 00:47 | |
*** Kennan has joined #openstack-containers | 01:00 | |
yuanying | morning | 01:34 |
---|---|---|
*** jay-lau-513 has joined #openstack-containers | 01:36 | |
*** unicell has joined #openstack-containers | 01:45 | |
*** EricGonczer_ has quit IRC | 01:48 | |
*** kebray has quit IRC | 01:48 | |
*** daneyon has joined #openstack-containers | 02:05 | |
*** LinstatSDR has joined #openstack-containers | 02:12 | |
*** daneyon has quit IRC | 02:12 | |
*** daneyon has joined #openstack-containers | 02:13 | |
*** daneyon has quit IRC | 02:17 | |
*** EricGonczer_ has joined #openstack-containers | 02:19 | |
*** EricGonczer_ has quit IRC | 02:42 | |
openstackgerrit | Merged stackforge/magnum: Add oslo concurrency namespace https://review.openstack.org/144858 | 02:50 |
*** erkules_ has joined #openstack-containers | 02:54 | |
*** erkules has quit IRC | 02:56 | |
openstackgerrit | Motohiro/Yuanying Otsuka proposed stackforge/magnum: Remove unnecessary line in opts.py https://review.openstack.org/144913 | 02:59 |
openstackgerrit | Motohiro/Yuanying Otsuka proposed stackforge/magnum: Remove unnecessary line in opts.py https://review.openstack.org/144913 | 03:00 |
sdake | yi yuanying | 03:03 |
sdake | yi/hi | 03:03 |
sdake | did you see the new atomic based template from larsks? | 03:04 |
yuanying | hi | 03:13 |
yuanying | I read a mail, but not see the code yet. | 03:13 |
sdake | its a big improvement imo | 03:13 |
sdake | but still no bare metal template | 03:13 |
sdake | i'm alsot not sure how to make a bare metal template since I'm not sure how the network is configured via ironic on bare metal | 03:14 |
sdake | on my network I have a private which vms connect to and a public where I allocate floating ips which represent the "outside world" | 03:14 |
sdake | I'm not sure if ironic has the same thing or not | 03:14 |
sdake | I could just hvae a public - in which case all traffic would be external | 03:15 |
yuanying | maybe, fixed network should be configurable via parameter. | 03:15 |
sdake | not sure | 03:16 |
sdake | I will ask the guys in ironic monday morning | 03:16 |
sdake | and see if they have any idea how network should operate | 03:16 |
yuanying | hmmm | 03:16 |
sdake | you can set the fixed cidr via parameter, but IIRC that is the network used by flannel | 03:16 |
yuanying | ok, i will see and test a larsks template. | 03:18 |
yuanying | I mean, template fixed network should be configurable with net_id, not fixed_network_cidr. | 03:19 |
yuanying | oh | 03:20 |
yuanying | larks/heat-kube supports fixed_network_id.. | 03:20 |
sdake | yup | 03:20 |
sdake | yuanying bay create is giving : | 03:28 |
sdake | File "/home/sdake/repos/magnum/magnum/api/controllers/v1/bay.py", line 263, in post | 03:29 |
sdake | res_bay = pecan.request.rpcapi.bay_create(new_bay) | 03:29 |
sdake | TypeError: bay_create() takes exactly 3 arguments (2 given) | 03:29 |
sdake | hmm takes a ctxt now | 03:29 |
sdake | wonder what ctxt is supposed to be in this instance | 03:29 |
yuanying | it is unnecessary. | 03:32 |
sdake | bay_create uses it in the handlers | 03:32 |
sdake | where should it get the osc client context? | 03:32 |
sdake | iirc that happened automatically via rpc | 03:33 |
sdake | the ctxt on the receive side I mean | 03:33 |
yuanying | By default, context is given by rpc. | 03:34 |
yuanying | conductor api looks like strange. | 03:34 |
sdake | ya I think a patch got in that busted things :( | 03:35 |
sdake | need the rpcapi->backend to be unit tested | 03:35 |
sdake | rather handlers | 03:35 |
sdake | rpcapi->handlers should be unit tested I mean | 03:35 |
yuanying | agree | 03:35 |
sdake | taking out ctxt fixes it | 03:36 |
sdake | on the rpcpapi side | 03:36 |
yuanying | and, bay_list should be deleted. | 03:37 |
sdake | fixing now | 03:38 |
yuanying | it calls objects.Bay.list directly | 03:38 |
sdake | btw, we are on the +2/+a two separate reviews process now | 03:38 |
sdake | ya no reason for that to go through AMQP | 03:38 |
openstackgerrit | Steven Dake proposed stackforge/magnum: bay-create does not need ctxt on the rpcapi side https://review.openstack.org/144916 | 03:39 |
sdake | I think bay_list is ok there | 03:39 |
sdake | its ok for the api to call the db operation directly | 03:39 |
sdake | it is just one extra function call, not through AMQP | 03:40 |
sdake | that way the data access model is in one place (api.py) | 03:40 |
sdake | unless it needs to be handled via conductor because it is long-lived | 03:40 |
yuanying | maybe bay_delete and bay_show don't need ctxt? | 03:41 |
sdake | magnum bay-delete is not deleting the stack either | 03:42 |
*** fandi has joined #openstack-containers | 03:43 | |
yuanying | now, does magnum need two +2? | 03:46 |
sdake | yes | 03:46 |
sdake | with you and jay we think we have enough folks to keep the review queue moving along | 03:47 |
sdake | and provide better review quality | 03:47 |
yuanying | OK | 03:47 |
yuanying | but now I have approved... | 03:47 |
sdake | dont sweat the past man :) | 03:48 |
openstackgerrit | Merged stackforge/magnum: bay-create does not need ctxt on the rpcapi side https://review.openstack.org/144916 | 03:48 |
sdake | File "/home/sdake/repos/magnum/magnum/api/controllers/v1/pod.py", line 280, in post | 03:48 |
sdake | pecan.response.location = link.build_url('pods', new_pod.uuid) | 03:48 |
sdake | pod create is busted too | 03:48 |
sdake | and its executing cmd is ['kubectl', 'create', '-f', './mariadb-pod.yaml'] | 03:49 |
sdake | needs to -s float-of-master | 03:49 |
sdake | :8080 I think ;-) | 03:49 |
openstackgerrit | Steven Dake proposed stackforge/magnum: Remove ctxt from rpcapi for pod create https://review.openstack.org/144917 | 03:50 |
yuanying | authentication will be failed | 03:51 |
yuanying | if `-s master_address` is provieded. | 03:51 |
sdake | huh? | 03:52 |
sdake | there is no authentication atm | 03:52 |
yuanying | hm | 03:52 |
sdake | ya, its wide open | 03:52 |
sdake | we need to improve those templates at some point to install cert keys or something | 03:52 |
sdake | I don't know how that part works | 03:52 |
yuanying | I try 'kubectl -s master_address' directly. | 03:52 |
yuanying | it's not worked last year. | 03:53 |
sdake | - kubectl create --server=192.168.1.245:8080 -f "k8s/service/${svc}-service.yaml" | 03:53 |
sdake | the 8080 is mandatory | 03:53 |
yuanying | I will try it. thanks | 03:53 |
yuanying | Where is latest atomic host image which dated later than 2015-01-01? | 04:07 |
sdake | I built a new one | 04:08 |
yuanying | thanks | 04:08 |
sdake | sec I'll find a link for where I put it | 04:08 |
sdake | https://fedorapeople.org/groups/heat/kolla/fedora-21-atomic.qcow2 | 04:10 |
sdake | this is dated 1/1/2015, but it works fine | 04:10 |
sdake | I have tested it outside of magnum with kolla | 04:10 |
yuanying | thank you very much! | 04:10 |
sdake | I think he is talking about centos not fedora where the 1/1 iamge doesn't work | 04:10 |
sdake | selinux is busted on fedora atomic upgrades | 04:10 |
sdake | I've got a bug filed, but in the meantime I just set it to permissive in that image | 04:11 |
yuanying | ok | 04:11 |
sdake | well i'm off to bed, yuanying if you manage to get pod creation working send a note to the mail list would you? | 04:16 |
sdake | that will be a good step in pointing out the project is coming alive ;) | 04:16 |
yuanying | OK, good night. | 04:17 |
jay-lau-513 | I see that you are talking a lot for k8s, just want to share you with another installation process https://github.com/jay-lau/jay-work/tree/master/k8s/install for multi node k8s install | 04:24 |
jay-lau-513 | Yes, seems we are losing -s option for all kubectl command | 04:24 |
*** suro_ has joined #openstack-containers | 04:27 | |
yuanying | hi jay-lau-513, it's good document for me. | 04:29 |
jay-lau-513 | yuanying my pleasure :-) | 04:33 |
jay-lau-513 | yuanying some comments for https://review.openstack.org/#/c/144917/1 | 04:33 |
jay-lau-513 | ctxt was still needed as we need to put the pod to db once the pod was created | 04:33 |
jay-lau-513 | yuanying https://github.com/stackforge/magnum/blob/master/magnum/conductor/handlers/kube.py#L83 | 04:35 |
yuanying | ya, this is handler. | 04:36 |
yuanying | context is provided by default from rpc. | 04:36 |
jay-lau-513 | yuanying oh, my bad. I c | 04:38 |
*** dharmit has joined #openstack-containers | 04:41 | |
*** achanda has joined #openstack-containers | 04:46 | |
yuanying | Oh | 04:54 |
yuanying | `kubectl version -s https://master_address:8080` requires authentication, but I should use http instead of https | 04:55 |
yuanying | I had used bad address. | 04:55 |
jay-lau-513 | [root@sym110 log]# kubectl --server=http://9.21.61.71:8080 get pods NAME IMAGE(S) HOST LABELS STATUS 75eccaf4-9497-11e4-95d9-5254000e3dc4 brendanburns/redis-slave <unassigned> name=redisslave,uses=redis-master Pending af69a3ef-9490-11e4-95d9-5254000e3dc4 brendanburns/redis-slave 9.21.61.186/ name=re | 05:00 |
*** suro_ has quit IRC | 05:07 | |
openstackgerrit | Jay Lau proposed stackforge/magnum: Remove ctxt from RPC API https://review.openstack.org/144920 | 05:11 |
*** suro_ has joined #openstack-containers | 05:12 | |
*** achanda has quit IRC | 05:20 | |
*** daneyon has joined #openstack-containers | 05:29 | |
*** nshaikh has joined #openstack-containers | 05:30 | |
*** suro_ has quit IRC | 05:34 | |
sdake | jay-lau-513 if you use larsks repo, it does all the config automatically | 05:37 |
sdake | and kub/flannel are pre-installed in the image | 05:37 |
jay-lau-513 | sdake does it can also handle multi node installation? | 05:37 |
sdake | yup | 05:37 |
sdake | you set minion count to 2 | 05:37 |
sdake | it will make two minions and 1 master | 05:38 |
sdake | lars stedman's email is on the mailing list with a link to the repo | 05:38 |
jay-lau-513 | sdake Cool, I was always using GCE and chef cook book for multi node installation | 05:38 |
sdake | it is meant to work with magnum/kolla | 05:38 |
jay-lau-513 | sdake will try larsks | 05:38 |
sdake | http://github.com/larsks/heat-kubernetes | 05:38 |
sdake | I guess we should document that dependency | 05:38 |
sdake | when you create a bay, it uses that template | 05:39 |
sdake | that is what the baymodel sets up (the template) | 05:40 |
*** daneyon has quit IRC | 05:40 | |
sdake | bay create creates a stack based upon larsks template repo | 05:40 |
sdake | make sense? | 05:40 |
*** daneyon has joined #openstack-containers | 05:40 | |
jay-lau-513 | sdake yes, I c | 05:41 |
sdake | we need to get his repo working for ironic case | 05:41 |
jay-lau-513 | sdake it can make a whole story for magnum | 05:41 |
sdake | but for now, virt is good enough I think for milestone #1 | 05:41 |
*** daneyon has quit IRC | 05:41 | |
sdake | ya bay create -f ollowed by pod/service create, bang you have a fully functional high speed bare metal cluster | 05:41 |
*** daneyon has joined #openstack-containers | 05:41 | |
sdake | (when running via ironic) | 05:41 |
sdake | hey daneyon | 05:41 |
jay-lau-513 | sdake I think that we still need https://review.openstack.org/#/c/144917/ as my patch was depending on this one | 05:42 |
sdake | got it, restored it | 05:42 |
jay-lau-513 | cool | 05:43 |
*** daneyon has quit IRC | 05:46 | |
sdake | jay to use the template, install under /etc/magnum/templates | 05:47 |
sdake | put the heat-kubernetes directory in that path | 05:47 |
sdake | there is a config option, but I think that will work as the default | 05:48 |
sdake | ok i'm off to bed | 05:48 |
sdake | night all :) | 05:48 |
yuanying | In the future, can we use another template which provides kubernetes? | 05:50 |
jay-lau-513 | yuanying why use another template? Does current heat-k8s template has some problem? | 05:53 |
yuanying | Sometimes even I want to try other OS ^_^; | 05:54 |
jay-lau-513 | yuanying me too ;-) | 05:54 |
jay-lau-513 | yuanying I think it make sense that we provide other ways to provide kubernetes | 05:56 |
yuanying | jay-lau-513: I think so, like a amazon, it permit `user can boot a host by hand` | 05:57 |
jay-lau-513 | yuanying make sense | 05:57 |
jay-lau-513 | yuanying can we file a bp to trace this? | 05:58 |
yuanying | It sounds good | 05:58 |
*** yuanying_ has joined #openstack-containers | 06:07 | |
*** yuanying has quit IRC | 06:09 | |
*** yuanying_ has quit IRC | 06:22 | |
*** yuanying has joined #openstack-containers | 06:23 | |
*** suro_ has joined #openstack-containers | 06:37 | |
*** ygoto has quit IRC | 06:48 | |
*** ygoto has joined #openstack-containers | 06:49 | |
*** achanda has joined #openstack-containers | 06:56 | |
*** diga has joined #openstack-containers | 07:10 | |
*** suro_ has quit IRC | 07:23 | |
*** LinstatSDR has quit IRC | 07:30 | |
*** achanda has quit IRC | 07:44 | |
*** achanda has joined #openstack-containers | 07:45 | |
*** achanda_ has joined #openstack-containers | 07:47 | |
*** achanda has quit IRC | 07:49 | |
*** achanda_ has quit IRC | 07:52 | |
openstackgerrit | Jay Lau proposed stackforge/magnum: Remove bay_uuid from replication controller db object https://review.openstack.org/144945 | 07:57 |
*** yuanying_ has joined #openstack-containers | 08:15 | |
*** achanda has joined #openstack-containers | 08:17 | |
*** yuanying has quit IRC | 08:18 | |
*** jay-lau-513 has quit IRC | 08:37 | |
*** ygoto has quit IRC | 08:43 | |
*** ygoto has joined #openstack-containers | 08:44 | |
*** mikedillion has joined #openstack-containers | 08:49 | |
*** jay-lau-513 has joined #openstack-containers | 08:51 | |
*** achanda has quit IRC | 08:59 | |
*** mikedillion has quit IRC | 09:00 | |
*** achanda has joined #openstack-containers | 09:03 | |
*** fandi has quit IRC | 09:11 | |
*** stannie has joined #openstack-containers | 09:17 | |
*** achanda has quit IRC | 09:28 | |
openstackgerrit | Motohiro/Yuanying Otsuka proposed stackforge/magnum: Add test and refactor bay_create on rpc handler https://review.openstack.org/144959 | 09:46 |
*** fandi has joined #openstack-containers | 09:48 | |
*** jay-lau-513 has quit IRC | 10:13 | |
openstackgerrit | Motohiro/Yuanying Otsuka proposed stackforge/magnum: Add test and refactoring on bay_create https://review.openstack.org/144959 | 10:16 |
yuanying_ | hmmmm, I can't understand some point on pod creation.. | 10:21 |
openstackgerrit | Kai Qiang Wu proposed stackforge/magnum: Fix the opts in genconfig issue https://review.openstack.org/144964 | 10:25 |
*** nshaikh has quit IRC | 10:41 | |
openstackgerrit | Motohiro/Yuanying Otsuka proposed stackforge/python-magnumclient: Support file path as a pod data https://review.openstack.org/144965 | 10:52 |
openstackgerrit | Motohiro/Yuanying Otsuka proposed stackforge/python-magnumclient: Support file path as a pod data https://review.openstack.org/144965 | 10:54 |
*** junhongl has quit IRC | 11:05 | |
*** junhongl has joined #openstack-containers | 11:06 | |
*** Slower has quit IRC | 11:08 | |
*** ygoto has quit IRC | 11:09 | |
*** unicell has quit IRC | 11:11 | |
*** dharmit has quit IRC | 11:31 | |
*** nshaikh has joined #openstack-containers | 11:38 | |
*** unicell has joined #openstack-containers | 11:46 | |
*** unicell has quit IRC | 11:52 | |
*** fandi has quit IRC | 11:53 | |
*** jay-lau-513 has joined #openstack-containers | 12:26 | |
openstackgerrit | Merged stackforge/magnum: Fix the opts in genconfig issue https://review.openstack.org/144964 | 12:29 |
openstackgerrit | Merged stackforge/magnum: Remove ctxt from rpcapi for pod create https://review.openstack.org/144917 | 12:32 |
openstackgerrit | Merged stackforge/magnum: Remove ctxt from RPC API https://review.openstack.org/144920 | 12:33 |
*** dims has joined #openstack-containers | 12:35 | |
openstackgerrit | Jay Lau proposed stackforge/magnum: Add bay_uuid for replication controller https://review.openstack.org/144979 | 12:59 |
openstackgerrit | Davanum Srinivas (dims) proposed stackforge/magnum: Add missing Exceptions https://review.openstack.org/144980 | 13:08 |
openstackgerrit | Davanum Srinivas (dims) proposed stackforge/magnum: Add missing Exceptions https://review.openstack.org/144980 | 13:16 |
*** jeckersb_gone has quit IRC | 13:23 | |
*** jeckersb_gone has joined #openstack-containers | 13:23 | |
*** erkules_ is now known as erkules | 13:26 | |
*** jeckersb_gone is now known as jeckersb | 13:50 | |
sdake | morning | 13:51 |
dims | hi sdake | 13:51 |
*** stannie has quit IRC | 13:53 | |
sdake | hey dims | 13:54 |
*** stannie has joined #openstack-containers | 14:08 | |
*** unicell has joined #openstack-containers | 14:19 | |
*** LinstatSDR has joined #openstack-containers | 14:21 | |
*** mikedillion has joined #openstack-containers | 14:36 | |
*** thomasem has joined #openstack-containers | 14:38 | |
*** LinstatSDR has quit IRC | 14:41 | |
*** unicell has quit IRC | 14:45 | |
*** jeckersb is now known as jeckersb_gone | 14:47 | |
openstackgerrit | Davanum Srinivas (dims) proposed stackforge/magnum: Add missing Exceptions https://review.openstack.org/144980 | 14:48 |
sdake | dims what is bay locked? | 14:51 |
sdake | how do you lock a bay? | 14:51 |
dims | sdake: ENOCLUE, just trying to make sure we define an exception that is being thrown | 14:52 |
sdake | where is the excception thrown? | 14:54 |
sdake | perhaps it makes more sense to delete the throw of the exception | 14:54 |
sdake | atm, there is no way to lock a bay from deletion | 14:54 |
sdake | the only error that hsould be thrown (on delete) is bayNotEmpty | 14:55 |
sdake | rather exception not error | 14:55 |
dims | https://github.com/stackforge/magnum/blob/master/magnum/db/sqlalchemy/api.py#L101 | 14:55 |
dims | sdake: added in https://review.openstack.org/#/c/127532/ | 14:56 |
*** EricGonczer_ has joined #openstack-containers | 14:58 | |
sdake | that api isn't called | 14:58 |
sdake | it can be deleted | 14:58 |
sdake | can you remove the bay from your change | 14:58 |
dims | sdake: yep sure thing | 14:59 |
*** jeckersb_gone is now known as jeckersb | 14:59 | |
openstackgerrit | Davanum Srinivas (dims) proposed stackforge/magnum: Add missing Exceptions https://review.openstack.org/144980 | 14:59 |
openstackgerrit | Steven Dake proposed stackforge/magnum: Remove usage of BayLocked https://review.openstack.org/145003 | 15:00 |
*** fandi has joined #openstack-containers | 15:00 | |
sdake | dims we need m0ar unit tests | 15:02 |
dims | sdake: i have the container stuff working against a remote docker as specified in host_url under [docker] section. what do we do next to point to docker daemon(s) deployed by bay/pods? | 15:02 |
sdake | dims I am not clear on what should be done with bare docker | 15:04 |
sdake | I was always thinking pods/services would do the job | 15:04 |
sdake | but then someone added in containers, so I thought they had a vision of where that was going | 15:04 |
sdake | my guess is the rest API takes a docker endpoint address, so just connect to it | 15:04 |
sdake | the problem is scheduling among the bays, how is that done | 15:05 |
sdake | among the bay I mean | 15:05 |
sdake | nodes in the bay | 15:05 |
*** openstack has joined #openstack-containers | 15:06 | |
*** unicell has joined #openstack-containers | 15:17 | |
sdake | wow we are up to 226 test cases | 15:26 |
sdake | when did that happen! | 15:26 |
sdake | jay-lau-513 there are test cases for database for replication controller that could be copied | 15:28 |
sdake | jay-lau-513 can you tackle that? | 15:28 |
sdake | ie copy from test_bay.py to test_replicationcontroller.py | 15:28 |
*** achanda has joined #openstack-containers | 15:30 | |
*** nshaikh has quit IRC | 15:35 | |
*** unicell has quit IRC | 15:44 | |
openstackgerrit | Steven Dake proposed stackforge/magnum: Remove usage of BayLocked https://review.openstack.org/145003 | 16:00 |
openstackgerrit | Steven Dake proposed stackforge/magnum: WIP: Add unit tests for the conductor AMQP API https://review.openstack.org/145012 | 16:00 |
sdake | dims, can you look at that second patch and tell me why my unit tests are not running? | 16:00 |
sdake | codebase has 60% coverage so far | 16:04 |
sdake | not terrible. | 16:04 |
dims | sdake: https://review.openstack.org/145003? | 16:04 |
dims | ah the WIP one | 16:05 |
sdake | right | 16:05 |
sdake | my test cases aren't running | 16:05 |
sdake | and I haven't faintest idea why | 16:05 |
sdake | pep8 passes no errors | 16:05 |
sdake | nosetests returns 0 tests run | 16:05 |
*** diga_ has joined #openstack-containers | 16:05 | |
*** achanda has quit IRC | 16:06 | |
*** openstackgerrit has quit IRC | 16:06 | |
*** openstackgerrit has joined #openstack-containers | 16:07 | |
*** achanda has joined #openstack-containers | 16:07 | |
*** daneyon has joined #openstack-containers | 16:08 | |
dims | sdake: pep8 does kick in for me | 16:11 |
dims | ./magnum/tests/conductor/test_rpcapi.py:22:1: H305 imports not grouped correctly (copy: stdlib, mock: third-party) | 16:11 |
dims | ERROR: InvocationError: '/Users/dims/openstack/magnum/.tox/pep8/bin/flake8' | 16:11 |
dims | looking at test case | 16:11 |
*** achanda has quit IRC | 16:12 | |
*** pradk has joined #openstack-containers | 16:14 | |
sdake | happy new year pradk | 16:14 |
*** pradk is now known as prad-afk | 16:14 | |
dims | sdake: s/def bay_create(self)/def test_bay_create(self)/ | 16:14 |
prad-afk | sdake, you too :) | 16:14 |
*** unicell has joined #openstack-containers | 16:14 | |
sdake | sweet thanks dims | 16:14 |
sdake | i'll fix the rest up :) | 16:15 |
*** achanda has joined #openstack-containers | 16:16 | |
diga_ | Hi All | 16:20 |
diga_ | Happy New year to you all | 16:20 |
sdake | hey diga_ | 16:20 |
diga_ | Hi sdake | 16:20 |
diga_ | Happy new year to you | 16:21 |
diga_ | I am setting up magnum demo on vm | 16:22 |
sdake | that should work if you have neutron running on your vm | 16:22 |
sdake | if not, it wont | 16:22 |
diga_ | but I have created container & setting up the magnum under the container | 16:22 |
diga_ | ok | 16:22 |
sdake | bay creation requires neutron | 16:23 |
diga_ | okay | 16:23 |
diga_ | do I need devstack setup also in container to setup a magnum ? | 16:23 |
sdake | yes | 16:23 |
diga_ | ok | 16:24 |
diga_ | will do that also | 16:24 |
*** prad-afk is now known as pradk | 16:30 | |
*** achanda has quit IRC | 16:32 | |
*** junhongl has quit IRC | 16:34 | |
*** junhongl has joined #openstack-containers | 16:35 | |
*** fawadkhaliq has joined #openstack-containers | 16:38 | |
*** adrian_otto has joined #openstack-containers | 16:40 | |
*** adrian_otto has quit IRC | 16:40 | |
*** adrian_otto has joined #openstack-containers | 16:41 | |
openstackgerrit | Steven Dake proposed stackforge/magnum: WIP: Add unit tests for the conductor AMQP API https://review.openstack.org/145012 | 16:48 |
sdake | dims any idea why that would output this: | 16:49 |
sdake | http://paste.fedoraproject.org/165861/14204765 | 16:49 |
sdake | i printed out kwargs, it does not have the same arguments | 16:49 |
*** openstackgerrit has quit IRC | 16:51 | |
*** openstackgerrit has joined #openstack-containers | 16:51 | |
dims | sdake: just added "test_" to the 2 method names? | 16:52 |
sdake | yup and changed the implementation a bit | 16:53 |
*** unicell has quit IRC | 16:58 | |
sdake | TypeError: bay_delete() got multiple values for keyword argument 'uuid' | 16:59 |
*** openstackgerrit has quit IRC | 17:04 | |
*** EricGonc_ has joined #openstack-containers | 17:04 | |
*** openstackgerrit has joined #openstack-containers | 17:04 | |
*** EricGonczer_ has quit IRC | 17:05 | |
*** stannie has quit IRC | 17:06 | |
*** achanda has joined #openstack-containers | 17:15 | |
dims | sdake: can't use **kwargs in getattr()(), plain ol' kwargs | 17:22 |
*** mikedillion has quit IRC | 17:24 | |
*** achanda has quit IRC | 17:28 | |
*** achanda has joined #openstack-containers | 17:29 | |
sdake | dims cool I'll try that | 17:34 |
*** achanda has quit IRC | 17:34 | |
*** diga_ has quit IRC | 17:37 | |
*** daneyon_ has joined #openstack-containers | 17:42 | |
openstackgerrit | Steven Dake proposed stackforge/magnum: Add unit tests for the conductor AMQP API https://review.openstack.org/145012 | 17:43 |
*** daneyon has quit IRC | 17:45 | |
*** daneyon_ has quit IRC | 17:49 | |
*** achanda has joined #openstack-containers | 17:50 | |
*** suro_ has joined #openstack-containers | 17:57 | |
*** achanda has quit IRC | 17:59 | |
*** achanda has joined #openstack-containers | 17:59 | |
openstackgerrit | Steven Dake proposed stackforge/magnum: Add unit tests for the conductor AMQP API https://review.openstack.org/145012 | 18:01 |
*** Slower has joined #openstack-containers | 18:02 | |
*** achanda has quit IRC | 18:04 | |
*** suro_ has quit IRC | 18:10 | |
*** suro_ has joined #openstack-containers | 18:11 | |
*** erw has quit IRC | 18:12 | |
*** stevebaker has quit IRC | 18:14 | |
*** suro_ has quit IRC | 18:15 | |
*** suro_ has joined #openstack-containers | 18:16 | |
*** stevebaker has joined #openstack-containers | 18:16 | |
*** PaulCzar has quit IRC | 18:18 | |
*** erw has joined #openstack-containers | 18:18 | |
*** fawadkhaliq has quit IRC | 18:24 | |
*** achanda has joined #openstack-containers | 18:26 | |
*** PaulCzar has joined #openstack-containers | 18:30 | |
*** achanda has quit IRC | 18:31 | |
*** adrian_otto has quit IRC | 18:37 | |
*** junhongl has quit IRC | 18:38 | |
*** junhongl has joined #openstack-containers | 18:42 | |
*** adrian_otto has joined #openstack-containers | 18:46 | |
adrian_otto | Reminder: Our team meeting is coming tomorrow - 2015-01-06 1600 UTC | 19:01 |
*** junhongl has quit IRC | 19:11 | |
*** junhongl has joined #openstack-containers | 19:14 | |
*** daneyon has joined #openstack-containers | 19:36 | |
*** pradk is now known as prad-afk | 19:39 | |
*** GeneralSalty has joined #openstack-containers | 19:45 | |
*** Slower has quit IRC | 20:37 | |
*** dims has quit IRC | 20:57 | |
*** LinstatSDR has joined #openstack-containers | 21:05 | |
*** daneyon has quit IRC | 21:56 | |
*** daneyon has joined #openstack-containers | 21:57 | |
*** daneyon has quit IRC | 22:02 | |
*** thomasem has quit IRC | 22:03 | |
*** dims__ has joined #openstack-containers | 22:04 | |
*** suro_ has quit IRC | 22:05 | |
*** suro_ has joined #openstack-containers | 22:05 | |
*** LinstatSDR has quit IRC | 22:07 | |
*** EricGonc_ has quit IRC | 22:27 | |
jay-lau-513 | sdake ok, I will take a look at the rc test case | 22:28 |
*** jeckersb is now known as jeckersb_gone | 22:41 | |
openstackgerrit | Steven Dake proposed stackforge/magnum: Add unit tests for the conductor AMQP API https://review.openstack.org/145012 | 22:48 |
sdake | so my wife saw a demo of these atthe store | 22:49 |
sdake | http://www.mbl-northamerica.com/mbl-101-x-treme/ | 22:50 |
sdake | they cost 250k USD | 22:50 |
openstackgerrit | Merged stackforge/magnum: Add bay_uuid for replication controller https://review.openstack.org/144979 | 23:03 |
*** dims__ has quit IRC | 23:17 | |
*** prad-afk has quit IRC | 23:48 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!