Thursday, 2015-06-25

*** david-ly_ has joined #openstack-containers00:06
Kennanhi apmelton:00:07
*** david-lyle has quit IRC00:08
*** dims_ has joined #openstack-containers00:14
*** dims has quit IRC00:16
*** adrian_otto has joined #openstack-containers00:19
Kennanhi adrian_otto:00:19
Kennanmadhuri_ there?00:21
madhuri_Hi Kennan00:21
madhuri_What's up?00:21
Kennanhi madhuri_ for this hongbin patch https://review.openstack.org/#/c/194866/1/magnum/conductor/handlers/k8s_conductor.py00:21
KennanI have one question for that00:21
madhuri_Yes00:22
Kennando you know if kubernets allow create pods with same name in the same namespace. I remembered it is not allow to do that00:22
*** adrian_otto has quit IRC00:23
madhuri_Yes it is not allowed00:25
Kennanso madhuri_ I am not sure how can this patch https://review.openstack.org/#/c/194866/1/magnum/conductor/handlers/k8s_conductor.py00:26
Kennanfix that?00:26
Kennanis it the right fix?00:26
madhuri_Yes, but the issue is something different that you got00:26
madhuri_When we have multiple bays, lets say bay1 and bay200:27
madhuri_Both have different master ip. So different connection object must be created for each bay or for each call00:27
madhuri_The issue here is connection object is created only once and reused over and over again until the magnum-conductor is restarted00:28
*** hongbin has joined #openstack-containers00:29
madhuri_Hence, each call for pod-create even on other bays is targeted for the same bay00:29
madhuri_Does this make sense?00:29
KennanOK madhuri_: Thanks for your explain. Got it00:30
madhuri_hongbin, if you can see my messages, am I right?00:30
madhuri_wcl Kennan00:30
hongbinmadhuri_: absolutely right00:30
madhuri_Thanks hongbin00:31
*** harshs has joined #openstack-containers00:31
*** dboik has quit IRC00:32
Kennanhi hongbin: and madhuri_: if I understand it correctly00:34
Kennaneven same bay, we would create difference connection every time for k8s call00:34
Kennanright ?00:34
Kennanfor this fix00:34
hongbinKennan: Yes, that is right.00:35
madhuri_Yes00:35
hongbinThis is slightly not so efficient, but it is simple00:35
KennanOK. That's ok now. hongbin:00:35
madhuri_+100:35
Kennanhongbin: have approved and merged00:36
hongbinKennan: thx00:36
Kennanwcl00:36
hongbinmadhuri_: I left you a message this morning about this bug https://bugs.launchpad.net/magnum/+bug/146841400:38
openstackLaunchpad bug 1468414 in Magnum "Duplicated methods at generated k8s api client" [Undecided,New]00:38
hongbinmadhuri_: Were you aware that before?00:38
openstackgerritMerged openstack/magnum: Create new k8s_api instance on every calls  https://review.openstack.org/19486600:39
madhuri_hongbin, I did the change for same issue but for the methods only we need00:43
hongbinmadhuri_: I see00:44
madhuri_Unless not needed we shouldn't do any change in pythonk8sclient code as it is auto generated00:44
madhuri_imo00:44
madhuri_What do you think?00:44
hongbinsure00:44
hongbinIt looks like a bug, so I raise it00:45
hongbinBut it is not, so that is fine00:45
madhuri_Yes it is a bug00:45
madhuri_But not affecting us00:45
hongbinTrue, the code is working. I can confirm00:46
*** tobe has joined #openstack-containers00:56
eliqiao1hi  hongbin00:57
hongbineliqiao1: hi eli00:58
*** yuanying-alt has joined #openstack-containers00:58
hongbinwhat's up00:58
eliqiao1it's re https://review.openstack.org/#/c/193031/4/magnum/db/sqlalchemy/api.py00:58
eliqiao1hmm. thanks for your comments, but I don't think it's easy to make this change00:58
eliqiao1for nova sample, are you talking https://github.com/openstack/nova/blob/master/nova/api/openstack/compute/servers.py#L19800:59
hongbinYes00:59
eliqiao1search_opts are added in REST API layer, not in db layer.00:59
hongbinI think you can do it step by step01:00
hongbinFirst, on db layer01:00
eliqiao1if we add opts in db api layer, then lots of code need to be changes.01:00
hongbinCould you elaborate it01:00
eliqiao1lots of db api call _add_tenant_filters, do then need to pass opts? and take get_bay_list for example, where we add opts?01:01
hongbinyou can add it to the method, as an optional parameter01:02
hongbindef _add_tenant_filters(self, context, query, opts=None):01:02
hongbinThis is backward-compatible01:02
eliqiao1yeah, but where we add opts?01:02
*** yuanying-alt has quit IRC01:02
hongbinEn..01:02
eliqiao1I mean, where we pass opts?01:03
hongbinJust brainstorm01:03
hongbinHow about create another mothod01:03
eliqiao1Bay.list_all()01:04
eliqiao1?01:04
hongbinand pass this option with all_tenants01:04
hongbinsort of01:04
eliqiao1okay , get you.01:04
hongbinbecause listing all tenants for admin is very straight01:04
hongbina lot of ppl will find it surprise I think01:05
hongbinSo we have to find a way to walk around it01:05
eliqiao1one thing I need to clarify is , in an periodic task, I fake an admin context, project_id and uer_id is None, so using that admin_context, I can not query any thing01:05
hongbinI am not sure if I have enough information to give you any suggest01:06
eliqiao1hongbin: that's why I just return the query if it's an admin_context.01:06
Kennanmadhuri_ please take a look at this bug https://bugs.launchpad.net/magnum/+bug/1466817 if your time is possible. apmelton:  have some input01:07
openstackLaunchpad bug 1466817 in Magnum "Fedora image failed to setup swarm cluster" [Undecided,New]01:07
hongbineliqiao1: Still not following01:07
madhuri_Kennan, sure01:07
Kennanfor this bug and fix, I am collecting team member options for swarm pin version01:07
hongbineliqiao1: So the problem is from your test case, or somewhere else01:08
eliqiao1hongbin:  if you see my following patches(how I use Bay.list()), then you will find why I need return the query if it's an admin_context01:08
eliqiao1hongbin: check https://review.openstack.org/#/c/194514/5/magnum/service/periodic.py01:08
eliqiao1line 42 to line 4801:09
hongbinI saw that01:09
hongbinbut how it relates to your argument01:10
madhuri_dims_, ping01:11
eliqiao1that ctx 's project_id is None, so with that ctx, then I will get no bays from db.01:11
hongbineliqiao1: I guest I am kind of lose in the details01:12
*** harshs has quit IRC01:12
hongbineliqiao1: I'd better to give you a high level suggestion. For details, I have to comment on the reviews line-by-line01:13
eliqiao1 hongbin: this is another nova db api example https://github.com/openstack/nova/blob/master/nova/db/sqlalchemy/api.py#L186401:14
eliqiao1hongbin: we shouldn01:14
hongbinAgain, I am totally lost01:15
eliqiao1hongbin: okay , I will think about your comments and try to do some changs, thx.01:15
hongbineliqiao1: Could you write down your argument inline on the review? I will reply them later01:16
dims_madhuri_: pong01:16
madhuri_glad to find you01:17
dims_madhuri_: :) what's up?01:17
eliqiao1 hongbin: okay01:17
madhuri_dims_, About my patch https://review.openstack.org/#/c/190444/01:17
hongbineliqiao1: Thx01:17
madhuri_I tried to implement using setUpClass so that bay is created only once01:17
madhuri_dims_, But that seems to fail. I suspect bay to be created once but it was created 3 times due to 3 test in TestKubernetesAPIs class01:18
madhuri_dims_, do you have any idea why does setUpClass doesn't work?01:18
*** harshs has joined #openstack-containers01:19
dims_looking01:21
madhuri_thanks01:22
*** sdake has joined #openstack-containers01:28
*** eghobo_ has quit IRC01:29
*** sdake_ has joined #openstack-containers01:29
*** sdake has quit IRC01:33
dims_madhuri_: so TestKubernetesAPIs extends BaseMagnumClient, right. you should define a "def setUpClass(cls):" with @classmethod annotation and call the super class setupClass from that method01:33
dims_"super(TestKubernetesAPIs, cls).setUpClass()"01:33
dims_definitely avoid setUp01:34
dims_then you can have test_k8s_pods, test_k8s_services, test_k8s_rcs as Kennan says and still take the hit for bay creation just once01:34
*** jay-lau-513 has joined #openstack-containers01:36
*** david-ly_ is now known as david-lyle01:36
*** EricGonczer_ has joined #openstack-containers01:36
*** sthillma has quit IRC01:42
*** dims_ has quit IRC01:45
*** harshs_ has joined #openstack-containers01:46
madhuri_dims_ https://review.openstack.org/#/c/190444/3/magnum/tests/functional/test_magnum_python_client.py if you see this patch set01:46
madhuri_I have already implemented the same way01:46
*** harshs has quit IRC01:49
*** harshs_ is now known as harshs01:49
*** muralia has joined #openstack-containers01:50
*** dims has joined #openstack-containers01:50
*** dontalton has quit IRC01:56
*** erkules_ has joined #openstack-containers01:59
dimsmadhuri_: and the patch #3 did not work?01:59
madhuri_Yes, that was what I was asking :)01:59
*** erkules has quit IRC02:01
*** yuanying has joined #openstack-containers02:02
madhuri_dims, should I upload the previous patch again?02:04
*** dims has quit IRC02:04
madhuri_dims, so that you can see the failure02:04
*** dims has joined #openstack-containers02:10
*** jruano has joined #openstack-containers02:11
dimsmadhuri_: don't follow you. what was the problem with patch #3?02:13
*** sdake has joined #openstack-containers02:13
madhuri_dims, That patch failed02:14
dimsdiagnosed why?02:14
madhuri_only 1 bay was supposed to be created but 3 was created02:15
madhuri_It means setUpClass was called 3 times02:15
madhuri_Don't get it02:15
*** sdake_ has quit IRC02:17
*** jjlehr has joined #openstack-containers02:17
*** unicell has quit IRC02:17
openstackgerritEli Qiao proposed openstack/magnum: Fix unit test case error  https://review.openstack.org/19538102:20
*** rlrevell has joined #openstack-containers02:20
*** rlrevell has quit IRC02:23
*** muralia has quit IRC02:26
*** muralia has joined #openstack-containers02:28
*** sankarshan_away is now known as sankarshan02:34
*** hongbin has quit IRC02:44
*** yuanying-alt has joined #openstack-containers02:46
*** yuanying-alt has quit IRC02:51
*** skoar has quit IRC02:55
dimsmadhuri_: that's because there are many processes running the test sure02:55
dimssuite02:55
dimsmadhuri_: resurrect the patch #3 and throw in this change in post_test_hook.sh02:55
madhuri_dims, So how can we avoid it?02:55
dimssudo -E -H -u jenkins tox -e functional --concurrency=102:55
dimspost_test_hook.sh has "sudo -E -H -u jenkins tox -e functional" now02:56
dimsadd the "--concurrency=1"02:56
madhuri_Ok got it02:56
dimsit's late here, will check on it when i wake up. ttyl02:57
madhuri_Thanks dims :)02:57
madhuri_Good night02:57
dimsyw02:57
dimsbye02:58
*** dims has quit IRC02:58
*** EricGonczer_ has quit IRC03:00
openstackgerritMadhuri Kumari proposed openstack/magnum: Adding functional test cases for Kubernetes APIs  https://review.openstack.org/19044403:01
*** adrian_otto has joined #openstack-containers03:03
*** harshs has left #openstack-containers03:06
*** adrian_otto has quit IRC03:07
*** sthillma has joined #openstack-containers03:08
*** zhenguo has joined #openstack-containers03:09
openstackgerritMadhuri Kumari proposed openstack/magnum: Adding functional test cases for Kubernetes APIs  https://review.openstack.org/19044403:10
*** harshs has joined #openstack-containers03:12
*** amit213 has quit IRC03:12
*** zul has quit IRC03:13
*** amit213 has joined #openstack-containers03:13
*** harshs has left #openstack-containers03:13
*** jruano has quit IRC03:15
*** yuanying has quit IRC03:16
*** zul has joined #openstack-containers03:17
*** skoar has joined #openstack-containers03:18
*** kebray has joined #openstack-containers03:18
*** eghobo has joined #openstack-containers03:23
*** tobe has quit IRC03:26
*** macjack has joined #openstack-containers03:30
*** jruano has joined #openstack-containers03:34
*** tobe has joined #openstack-containers03:39
*** jjlehr has quit IRC03:41
*** harshs has joined #openstack-containers03:43
*** yuanying has joined #openstack-containers03:47
*** adrian_otto has joined #openstack-containers03:54
*** adrian_otto has quit IRC03:56
*** yuanying has quit IRC03:59
*** adrian_otto has joined #openstack-containers04:00
*** coolsvap|away is now known as coolsvap04:04
*** adrian_otto has quit IRC04:05
*** yuanying has joined #openstack-containers04:09
*** eghobo has quit IRC04:10
*** jruano has quit IRC04:13
*** adrian_otto has joined #openstack-containers04:13
*** eghobo has joined #openstack-containers04:17
*** muralia has quit IRC04:17
*** adrian_otto1 has joined #openstack-containers04:17
*** eghobo_ has joined #openstack-containers04:18
*** adrian_otto1 has quit IRC04:19
*** adrian_otto has quit IRC04:20
*** eghobo has quit IRC04:22
*** achanda has joined #openstack-containers04:23
*** harshs has quit IRC04:27
*** kebray has quit IRC04:29
*** kebray has joined #openstack-containers04:30
*** jruano has joined #openstack-containers04:34
*** yuanying-alt has joined #openstack-containers04:35
*** yuanying-alt has quit IRC04:39
*** unicell has joined #openstack-containers04:40
*** skoar has quit IRC04:42
*** sthillma has quit IRC04:51
*** Marga_ has joined #openstack-containers05:02
*** jruano has quit IRC05:05
*** achanda has quit IRC05:06
*** sthillma has joined #openstack-containers05:19
*** Tango|2 has joined #openstack-containers05:21
*** sthillma has quit IRC05:22
*** unicell1 has joined #openstack-containers05:24
*** Tango has quit IRC05:24
*** unicell has quit IRC05:25
*** skoar has joined #openstack-containers05:29
*** skoar has quit IRC05:37
*** madhuri has joined #openstack-containers06:07
*** destiny has joined #openstack-containers06:07
*** destiny has left #openstack-containers06:08
*** tobe has quit IRC06:14
*** yuanying_ has joined #openstack-containers06:15
*** yuanying_ has quit IRC06:17
*** yuanying_ has joined #openstack-containers06:18
*** yuanying has quit IRC06:18
*** yuanying_ has quit IRC06:19
*** yuanying-alt has joined #openstack-containers06:24
*** yuanying-alt has quit IRC06:28
*** yuanying has joined #openstack-containers06:32
*** BertrandN has joined #openstack-containers06:32
*** yuanying has quit IRC06:32
*** tobe has joined #openstack-containers06:33
*** blixt_ is now known as hblixt06:41
*** achanda has joined #openstack-containers06:44
*** nihilifer has joined #openstack-containers06:45
*** belmoreira has joined #openstack-containers06:53
*** oro has joined #openstack-containers06:57
*** achanda has quit IRC06:58
*** Tango|2 has quit IRC06:59
*** bradjones has quit IRC07:02
*** yuanying has joined #openstack-containers07:02
*** bradjones has joined #openstack-containers07:04
*** bradjones has quit IRC07:04
*** bradjones has joined #openstack-containers07:04
*** yuanying has quit IRC07:05
*** yuanying has joined #openstack-containers07:05
*** kebray has quit IRC07:06
*** madhuri has quit IRC07:07
*** achanda has joined #openstack-containers07:08
*** lan has quit IRC07:20
*** lan has joined #openstack-containers07:20
*** unicell has joined #openstack-containers07:22
*** unicell1 has quit IRC07:23
*** unicell has quit IRC07:29
*** sthillma has joined #openstack-containers07:38
*** eghobo_ has quit IRC07:44
*** oro has quit IRC07:44
*** sthillma has quit IRC07:46
*** erkules_ is now known as erkules07:46
*** erkules has quit IRC07:46
*** erkules has joined #openstack-containers07:46
*** tobe has quit IRC07:48
*** alex_klimov has joined #openstack-containers08:03
*** tobe has joined #openstack-containers08:04
*** yuanying-alt has joined #openstack-containers08:13
*** oro has joined #openstack-containers08:15
*** coolsvap is now known as coolsvap|away08:16
*** yuanying-alt has quit IRC08:17
*** coolsvap|away is now known as coolsvap08:19
zhenguohi, how is the project magnum-ui going?08:44
*** oro has quit IRC09:01
*** oro has joined #openstack-containers09:02
*** oro_ has joined #openstack-containers09:13
openstackgerritEli Qiao proposed openstack/magnum: Fix unit test case error  https://review.openstack.org/19538109:17
*** mfalatic has quit IRC09:29
*** oro has quit IRC09:33
*** oro_ has quit IRC09:34
*** jay-lau-513 has quit IRC09:35
*** jay-lau-513 has joined #openstack-containers09:36
*** oro_ has joined #openstack-containers09:49
openstackgerritMadhuri Kumari proposed openstack/magnum: Adds TLS support in pythonk8sclient.  https://review.openstack.org/19548809:52
openstackgerritEli Qiao proposed openstack/magnum: Devstack: Add admin creds in magnum.conf  https://review.openstack.org/19492509:52
openstackgerritEli Qiao proposed openstack/magnum: Add periodic task framework  https://review.openstack.org/18709009:52
openstackgerritEli Qiao proposed openstack/magnum: Add periodic task to sync bay status  https://review.openstack.org/19451409:52
openstackgerritEli Qiao proposed openstack/magnum: Add Bay.list_all method to allow admin context to query all tenants bay  https://review.openstack.org/19303109:52
*** oro has joined #openstack-containers09:52
openstackgerritMadhuri Kumari proposed openstack/magnum: Adds TLS support in pythonk8sclient.  https://review.openstack.org/19548809:55
*** yuanying-alt has joined #openstack-containers10:01
*** yuanying-alt has quit IRC10:06
*** jay-lau-513 has quit IRC10:10
*** jay-lau-513 has joined #openstack-containers10:11
openstackgerritDavanum Srinivas (dims) proposed openstack/magnum: [Work in Progress] Switch on concurrency to 1 for functional tests  https://review.openstack.org/19549910:11
*** Kennan2 has joined #openstack-containers10:14
*** Kennan has quit IRC10:14
*** dims has joined #openstack-containers10:14
*** Kennan2 is now known as Kennan10:17
openstackgerritTom Cammann proposed openstack/magnum: Replace dict.iteritems() with dict.items()  https://review.openstack.org/19527010:19
*** jay-lau-513 has quit IRC10:29
*** Marga_ has quit IRC10:50
*** sdake has quit IRC10:50
*** dims has quit IRC11:02
*** dims has joined #openstack-containers11:05
*** dims_ has joined #openstack-containers11:10
*** dims has quit IRC11:11
*** tobe has quit IRC11:11
*** dims_ has quit IRC11:16
*** david-lyle has quit IRC11:17
*** rlrevell has joined #openstack-containers11:19
*** rlrevell has quit IRC11:20
*** dims has joined #openstack-containers11:21
*** david-lyle has joined #openstack-containers11:21
openstackgerritDavanum Srinivas (dims) proposed openstack/magnum: [work in progress] set concurrency to 1 for functional tests  https://review.openstack.org/19552611:22
*** achanda has quit IRC11:25
*** oro_ has quit IRC11:28
*** oro has quit IRC11:28
*** Marga_ has joined #openstack-containers11:32
*** bradjones has quit IRC11:38
*** rlrevell has joined #openstack-containers11:39
*** bradjones has joined #openstack-containers11:41
*** bradjones has quit IRC11:41
*** bradjones has joined #openstack-containers11:41
*** oro_ has joined #openstack-containers11:41
*** oro has joined #openstack-containers11:41
*** Marga_ has quit IRC11:48
*** yuanying-alt has joined #openstack-containers11:50
*** sankarshan is now known as sankarshan_away11:50
*** yuanying-alt has quit IRC11:54
*** apuimedo has joined #openstack-containers11:55
*** yuanying has quit IRC11:57
*** rlrevell has quit IRC12:01
*** zhenguo has quit IRC12:04
*** rlrevell has joined #openstack-containers12:13
*** rlrevell has quit IRC12:13
*** EricGonczer_ has joined #openstack-containers12:25
*** coolsvap is now known as coolsvap|away12:26
*** EricGonc_ has joined #openstack-containers12:29
*** dims has quit IRC12:31
*** EricGonczer_ has quit IRC12:31
*** dims has joined #openstack-containers12:31
*** EricGonc_ has quit IRC12:32
*** rlrevell has joined #openstack-containers12:32
*** EricGonczer_ has joined #openstack-containers12:33
*** EricGonczer_ has quit IRC12:35
*** coolsvap|away is now known as coolsvap12:35
*** EricGonczer_ has joined #openstack-containers12:35
*** david-ly_ has joined #openstack-containers12:35
*** coolsvap is now known as coolsvap|away12:36
*** david-lyle has quit IRC12:39
openstackgerritMerged openstack/magnum: Fix the wrong number for minion node  https://review.openstack.org/19499312:45
*** bradjones has quit IRC12:47
*** EricGonczer_ has quit IRC12:50
*** bradjones has joined #openstack-containers12:50
*** bradjones has quit IRC12:50
*** bradjones has joined #openstack-containers12:50
*** sankarshan_away is now known as sankarshan12:52
*** EricGonczer_ has joined #openstack-containers12:53
*** absubram has quit IRC12:55
*** EricGonc_ has joined #openstack-containers12:56
*** EricGonczer_ has quit IRC12:56
*** sdake has joined #openstack-containers12:56
*** EricGonc_ has quit IRC12:58
*** EricGonczer_ has joined #openstack-containers12:58
*** coolsvap|away is now known as coolsvap13:00
*** julim has joined #openstack-containers13:01
*** EricGonczer_ has quit IRC13:02
*** EricGonc_ has joined #openstack-containers13:02
*** jjlehr has joined #openstack-containers13:04
*** EricGonczer_ has joined #openstack-containers13:04
*** EricGonc_ has quit IRC13:05
*** belmoreira has quit IRC13:05
*** suro-patz1 has joined #openstack-containers13:05
*** yuanying-alt has joined #openstack-containers13:06
openstackgerritMerged openstack/magnum: Not need to use bay uuid  https://review.openstack.org/19494613:09
*** EricGonczer_ has quit IRC13:10
*** suro-patz has joined #openstack-containers13:10
*** suro-patz1 has quit IRC13:10
*** yuanying-alt has quit IRC13:10
*** jruano has joined #openstack-containers13:11
*** husanux1 has joined #openstack-containers13:15
*** suro-patz has quit IRC13:15
*** husanux1 has quit IRC13:18
*** suro-patz has joined #openstack-containers13:19
*** husanux3 has joined #openstack-containers13:20
*** husanux3 has quit IRC13:21
*** coolsvap is now known as coolsvap|away13:21
*** Marga_ has joined #openstack-containers13:22
*** husanux0 has joined #openstack-containers13:25
*** apuimedo has quit IRC13:28
*** husanux0 has quit IRC13:29
*** Marga_ has quit IRC13:31
*** Marga_ has joined #openstack-containers13:31
*** jjfreric has joined #openstack-containers13:32
*** absubram has joined #openstack-containers13:35
*** julim has quit IRC13:44
*** dboik has joined #openstack-containers13:46
*** hongbin has joined #openstack-containers13:49
*** harshs has joined #openstack-containers13:57
*** harshs has quit IRC13:57
*** suro-patz has quit IRC13:57
*** harshs has joined #openstack-containers13:57
*** yapeng has joined #openstack-containers13:58
*** suro-patz has joined #openstack-containers14:00
*** suro-patz1 has joined #openstack-containers14:00
*** suro-patz1 has quit IRC14:01
*** julim has joined #openstack-containers14:04
*** suro-patz has quit IRC14:04
*** eghobo has joined #openstack-containers14:06
*** yuanying-alt has joined #openstack-containers14:07
*** eghobo_ has joined #openstack-containers14:08
*** eghobo has quit IRC14:11
*** yuanying-alt has quit IRC14:11
*** suro-patz has joined #openstack-containers14:49
*** Drago has joined #openstack-containers14:50
*** Drago has quit IRC14:51
*** rlrevell has quit IRC14:52
*** Drago has joined #openstack-containers14:52
*** rpothier has joined #openstack-containers14:56
*** muralia has joined #openstack-containers14:57
*** rlrevell has joined #openstack-containers14:58
*** rlrevell has quit IRC14:58
*** rlrevell has joined #openstack-containers14:59
*** Tango|2 has joined #openstack-containers14:59
*** rlrevell has quit IRC14:59
openstackgerritMerged openstack/magnum: Add Bay.list_all method to allow admin context to query all tenants bay  https://review.openstack.org/19303114:59
*** suro-patz has quit IRC15:00
*** david-ly_ is now known as david-lyle15:01
*** yuanying-alt has joined #openstack-containers15:07
*** unicell has joined #openstack-containers15:07
*** yuanying-alt has quit IRC15:12
*** eghobo_ has quit IRC15:12
*** oro_ has quit IRC15:16
*** oro has quit IRC15:16
*** rlrevell has joined #openstack-containers15:18
*** alex_klimov has quit IRC15:20
*** alex_klimov has joined #openstack-containers15:20
openstackgerritTom Cammann proposed openstack/magnum: Replace dict.iteritems() with dict.items()  https://review.openstack.org/19527015:21
openstackgerritMerged openstack/magnum: Fix unit test case error  https://review.openstack.org/19538115:21
*** hblixt has quit IRC15:27
*** daneyon has joined #openstack-containers15:33
*** daneyon_ has joined #openstack-containers15:34
*** daneyon has quit IRC15:37
*** dboik has quit IRC15:47
*** dboik has joined #openstack-containers15:48
*** alex_klimov has quit IRC15:50
*** sdake_ has joined #openstack-containers15:50
*** sdake has quit IRC15:54
*** unicell has quit IRC15:54
*** oro has joined #openstack-containers15:54
*** Drago1 has joined #openstack-containers16:05
*** Drago has quit IRC16:05
*** yuanying-alt has joined #openstack-containers16:08
*** sthillma has joined #openstack-containers16:12
*** yuanying-alt has quit IRC16:13
*** jjlehr has quit IRC16:13
*** suro-patz has joined #openstack-containers16:16
*** harshs has quit IRC16:16
*** jjfreric1 has joined #openstack-containers16:20
*** jjfreric has quit IRC16:21
*** sdake_ is now known as sdake16:25
*** harshs has joined #openstack-containers16:28
*** jjfreric1 has quit IRC16:28
*** jjfreric has joined #openstack-containers16:29
*** achanda has joined #openstack-containers16:31
*** BertrandN has quit IRC16:39
*** unicell has joined #openstack-containers16:43
*** eghobo has joined #openstack-containers16:44
*** rpothier has quit IRC16:50
*** jjlehr has joined #openstack-containers16:50
*** Tango|2 has quit IRC16:53
*** jjlehr has quit IRC16:56
*** harshs_ has joined #openstack-containers16:58
*** sankarshan is now known as sankarshan_away16:59
*** harshs has quit IRC17:01
*** harshs_ is now known as harshs17:01
*** jjlehr has joined #openstack-containers17:01
*** dboik has quit IRC17:03
*** achanda has quit IRC17:08
*** yuanying-alt has joined #openstack-containers17:09
*** Marga_ has quit IRC17:09
*** Marga_ has joined #openstack-containers17:10
*** yuanying-alt has quit IRC17:13
*** hblixt has joined #openstack-containers17:14
*** blixt_ has joined #openstack-containers17:14
*** hblixt has quit IRC17:18
*** sdake_ has joined #openstack-containers17:20
*** sdake has quit IRC17:24
*** achanda has joined #openstack-containers17:25
*** bradjones has quit IRC17:26
*** bradjones has joined #openstack-containers17:28
*** bradjones has quit IRC17:28
*** bradjones has joined #openstack-containers17:28
*** sdake_ is now known as sdake17:29
*** blixt__ has joined #openstack-containers17:33
*** jjfreric1 has joined #openstack-containers17:36
*** blixt_ has quit IRC17:36
*** blixt__ has quit IRC17:37
*** jjfreric has quit IRC17:38
*** dboik has joined #openstack-containers17:40
*** Tango|2 has joined #openstack-containers17:40
*** Marga_ has quit IRC17:42
*** jjfreric has joined #openstack-containers17:46
*** kebray has joined #openstack-containers17:46
*** jjfreric1 has quit IRC17:46
*** DRoBeR has quit IRC17:47
*** jjfreric has left #openstack-containers17:54
*** Marga_ has joined #openstack-containers17:55
*** jjfreric has joined #openstack-containers17:55
*** SourabhP has joined #openstack-containers17:56
*** ameybhide has joined #openstack-containers18:00
*** hblixt has joined #openstack-containers18:00
*** dontalton has joined #openstack-containers18:02
*** husanu5 has joined #openstack-containers18:02
*** blixt_ has joined #openstack-containers18:02
*** hblixt has quit IRC18:05
*** yuanying-alt has joined #openstack-containers18:10
*** yuanying-alt has quit IRC18:14
*** husanu5 has quit IRC18:14
*** harshs has quit IRC18:17
*** harshs has joined #openstack-containers18:18
*** julim has quit IRC18:28
*** julim has joined #openstack-containers18:28
*** jhova has joined #openstack-containers18:29
*** blixt__ has joined #openstack-containers18:31
*** jruano has quit IRC18:33
*** blixt_ has quit IRC18:35
*** hblixt has joined #openstack-containers18:38
*** blixt__ has quit IRC18:40
*** dontalton has quit IRC18:44
*** suro-patz has quit IRC18:44
*** rpothier has joined #openstack-containers18:52
*** julim has quit IRC18:52
*** rbrooker has joined #openstack-containers18:52
*** julim has joined #openstack-containers18:59
*** julim has quit IRC19:02
*** julim has joined #openstack-containers19:03
*** EricGonczer_ has joined #openstack-containers19:05
*** jruano has joined #openstack-containers19:08
*** yuanying-alt has joined #openstack-containers19:10
*** achanda has quit IRC19:11
*** yapeng has quit IRC19:11
*** jjfreric1 has joined #openstack-containers19:11
*** jjfreric has quit IRC19:12
*** yuanying-alt has quit IRC19:15
*** suro-patz has joined #openstack-containers19:17
*** suro-patz1 has joined #openstack-containers19:24
*** suro-patz has quit IRC19:25
*** eghobo has quit IRC19:33
*** jjfreric1 has quit IRC19:36
openstackgerritAndrew Melton proposed openstack/magnum: Fix Docker Engine version issue in Swarm bay  https://review.openstack.org/19571619:36
openstackgerritAndrew Melton proposed openstack/magnum: Fix Docker Engine version issue in Swarm bay  https://review.openstack.org/19571619:40
*** daneyon_ has quit IRC19:42
*** jjfreric has joined #openstack-containers19:43
*** julim has quit IRC19:44
*** suro-patz1 has quit IRC19:58
*** yuanying-alt has joined #openstack-containers20:11
*** yuanying-alt has quit IRC20:16
*** alex_klimov has joined #openstack-containers20:17
*** gpruessmann has joined #openstack-containers20:19
*** sdake_ has joined #openstack-containers20:24
*** sdake has quit IRC20:28
*** sdake_ is now known as sdake20:29
*** eghobo has joined #openstack-containers20:44
*** julim has joined #openstack-containers20:47
*** jjfreric has left #openstack-containers20:52
*** dboik has quit IRC20:52
*** oro has quit IRC20:55
*** rlrevell has quit IRC21:08
*** yuanying-alt has joined #openstack-containers21:12
*** kebray has quit IRC21:13
*** yuanying-alt has quit IRC21:16
*** dboik has joined #openstack-containers21:22
*** dboik_ has joined #openstack-containers21:24
*** dboik has quit IRC21:27
openstackgerritHongbin Lu proposed openstack/magnum: Add 'host' field to Pod object.  https://review.openstack.org/19437821:38
*** SourabhP has quit IRC21:39
*** SourabhP has joined #openstack-containers21:40
*** rlrevell has joined #openstack-containers21:42
openstackgerritHongbin Lu proposed openstack/magnum: Add elements for building a Mesos bay node image  https://review.openstack.org/18918021:43
*** gpruessmann has quit IRC21:43
*** kebray has joined #openstack-containers21:46
*** rlrevell has quit IRC21:48
*** julim has quit IRC21:51
*** Marga_ has quit IRC21:55
*** suro-patz has joined #openstack-containers22:02
*** apuimedo has joined #openstack-containers22:02
*** jhova has quit IRC22:03
*** SourabhP has quit IRC22:04
*** rlrevell has joined #openstack-containers22:06
openstackgerritHongbin Lu proposed openstack/magnum: Add template definition of Mesos bay  https://review.openstack.org/19147622:07
openstackgerritHongbin Lu proposed openstack/magnum: Add elements for building a Mesos bay node image  https://review.openstack.org/18918022:07
*** SourabhP has joined #openstack-containers22:07
*** hongbin has quit IRC22:11
*** yuanying-alt has joined #openstack-containers22:12
*** yuanying-alt has quit IRC22:17
*** hblixt has quit IRC22:18
*** SourabhP has quit IRC22:21
*** rlrevell has quit IRC22:24
*** rpothier has quit IRC22:24
*** dims has quit IRC22:30
*** dontalton has joined #openstack-containers22:32
*** SourabhP has joined #openstack-containers22:34
*** jruano has quit IRC22:35
*** alex_klimov has quit IRC22:35
*** dims_ has joined #openstack-containers22:38
*** rlrevell has joined #openstack-containers22:41
*** dontalton has quit IRC22:45
*** jjlehr has quit IRC22:47
*** EricGonczer_ has quit IRC22:47
*** sdake_ has joined #openstack-containers23:00
*** muralia has quit IRC23:02
*** sdake has quit IRC23:04
*** sdake has joined #openstack-containers23:07
*** sdake_ has quit IRC23:11
*** yuanying-alt has joined #openstack-containers23:13
*** yuanying-alt has quit IRC23:18
*** zhenguo has joined #openstack-containers23:18
*** eghobo has quit IRC23:20
*** rbrooker has quit IRC23:22
*** absubram has quit IRC23:29
*** yuanying has joined #openstack-containers23:32
*** suro-patz has quit IRC23:36
*** kebray has quit IRC23:41
*** apuimedo has quit IRC23:41
*** juggler_ is now known as juggler23:44
*** SourabhP has quit IRC23:45
*** sdake has quit IRC23:54
*** sdake has joined #openstack-containers23:55
Kennanapmelton: there?23:55
Kennanfor swarm patch was poposed before, you could check here https://review.openstack.org/#/c/194963/23:56
*** Drago1 has quit IRC23:59

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