*** david-ly_ has joined #openstack-containers | 00:06 | |
Kennan | hi apmelton: | 00:07 |
---|---|---|
*** david-lyle has quit IRC | 00:08 | |
*** dims_ has joined #openstack-containers | 00:14 | |
*** dims has quit IRC | 00:16 | |
*** adrian_otto has joined #openstack-containers | 00:19 | |
Kennan | hi adrian_otto: | 00:19 |
Kennan | madhuri_ there? | 00:21 |
madhuri_ | Hi Kennan | 00:21 |
madhuri_ | What's up? | 00:21 |
Kennan | hi madhuri_ for this hongbin patch https://review.openstack.org/#/c/194866/1/magnum/conductor/handlers/k8s_conductor.py | 00:21 |
Kennan | I have one question for that | 00:21 |
madhuri_ | Yes | 00:22 |
Kennan | do you know if kubernets allow create pods with same name in the same namespace. I remembered it is not allow to do that | 00:22 |
*** adrian_otto has quit IRC | 00:23 | |
madhuri_ | Yes it is not allowed | 00:25 |
Kennan | so madhuri_ I am not sure how can this patch https://review.openstack.org/#/c/194866/1/magnum/conductor/handlers/k8s_conductor.py | 00:26 |
Kennan | fix that? | 00:26 |
Kennan | is it the right fix? | 00:26 |
madhuri_ | Yes, but the issue is something different that you got | 00:26 |
madhuri_ | When we have multiple bays, lets say bay1 and bay2 | 00:27 |
madhuri_ | Both have different master ip. So different connection object must be created for each bay or for each call | 00:27 |
madhuri_ | The issue here is connection object is created only once and reused over and over again until the magnum-conductor is restarted | 00:28 |
*** hongbin has joined #openstack-containers | 00:29 | |
madhuri_ | Hence, each call for pod-create even on other bays is targeted for the same bay | 00:29 |
madhuri_ | Does this make sense? | 00:29 |
Kennan | OK madhuri_: Thanks for your explain. Got it | 00:30 |
madhuri_ | hongbin, if you can see my messages, am I right? | 00:30 |
madhuri_ | wcl Kennan | 00:30 |
hongbin | madhuri_: absolutely right | 00:30 |
madhuri_ | Thanks hongbin | 00:31 |
*** harshs has joined #openstack-containers | 00:31 | |
*** dboik has quit IRC | 00:32 | |
Kennan | hi hongbin: and madhuri_: if I understand it correctly | 00:34 |
Kennan | even same bay, we would create difference connection every time for k8s call | 00:34 |
Kennan | right ? | 00:34 |
Kennan | for this fix | 00:34 |
hongbin | Kennan: Yes, that is right. | 00:35 |
madhuri_ | Yes | 00:35 |
hongbin | This is slightly not so efficient, but it is simple | 00:35 |
Kennan | OK. That's ok now. hongbin: | 00:35 |
madhuri_ | +1 | 00:35 |
Kennan | hongbin: have approved and merged | 00:36 |
hongbin | Kennan: thx | 00:36 |
Kennan | wcl | 00:36 |
hongbin | madhuri_: I left you a message this morning about this bug https://bugs.launchpad.net/magnum/+bug/1468414 | 00:38 |
openstack | Launchpad bug 1468414 in Magnum "Duplicated methods at generated k8s api client" [Undecided,New] | 00:38 |
hongbin | madhuri_: Were you aware that before? | 00:38 |
openstackgerrit | Merged openstack/magnum: Create new k8s_api instance on every calls https://review.openstack.org/194866 | 00:39 |
madhuri_ | hongbin, I did the change for same issue but for the methods only we need | 00:43 |
hongbin | madhuri_: I see | 00:44 |
madhuri_ | Unless not needed we shouldn't do any change in pythonk8sclient code as it is auto generated | 00:44 |
madhuri_ | imo | 00:44 |
madhuri_ | What do you think? | 00:44 |
hongbin | sure | 00:44 |
hongbin | It looks like a bug, so I raise it | 00:45 |
hongbin | But it is not, so that is fine | 00:45 |
madhuri_ | Yes it is a bug | 00:45 |
madhuri_ | But not affecting us | 00:45 |
hongbin | True, the code is working. I can confirm | 00:46 |
*** tobe has joined #openstack-containers | 00:56 | |
eliqiao1 | hi hongbin | 00:57 |
hongbin | eliqiao1: hi eli | 00:58 |
*** yuanying-alt has joined #openstack-containers | 00:58 | |
hongbin | what's up | 00:58 |
eliqiao1 | it's re https://review.openstack.org/#/c/193031/4/magnum/db/sqlalchemy/api.py | 00:58 |
eliqiao1 | hmm. thanks for your comments, but I don't think it's easy to make this change | 00:58 |
eliqiao1 | for nova sample, are you talking https://github.com/openstack/nova/blob/master/nova/api/openstack/compute/servers.py#L198 | 00:59 |
hongbin | Yes | 00:59 |
eliqiao1 | search_opts are added in REST API layer, not in db layer. | 00:59 |
hongbin | I think you can do it step by step | 01:00 |
hongbin | First, on db layer | 01:00 |
eliqiao1 | if we add opts in db api layer, then lots of code need to be changes. | 01:00 |
hongbin | Could you elaborate it | 01:00 |
eliqiao1 | lots 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 |
hongbin | you can add it to the method, as an optional parameter | 01:02 |
hongbin | def _add_tenant_filters(self, context, query, opts=None): | 01:02 |
hongbin | This is backward-compatible | 01:02 |
eliqiao1 | yeah, but where we add opts? | 01:02 |
*** yuanying-alt has quit IRC | 01:02 | |
hongbin | En.. | 01:02 |
eliqiao1 | I mean, where we pass opts? | 01:03 |
hongbin | Just brainstorm | 01:03 |
hongbin | How about create another mothod | 01:03 |
eliqiao1 | Bay.list_all() | 01:04 |
eliqiao1 | ? | 01:04 |
hongbin | and pass this option with all_tenants | 01:04 |
hongbin | sort of | 01:04 |
eliqiao1 | okay , get you. | 01:04 |
hongbin | because listing all tenants for admin is very straight | 01:04 |
hongbin | a lot of ppl will find it surprise I think | 01:05 |
hongbin | So we have to find a way to walk around it | 01:05 |
eliqiao1 | one 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 thing | 01:05 |
hongbin | I am not sure if I have enough information to give you any suggest | 01:06 |
eliqiao1 | hongbin: that's why I just return the query if it's an admin_context. | 01:06 |
Kennan | madhuri_ please take a look at this bug https://bugs.launchpad.net/magnum/+bug/1466817 if your time is possible. apmelton: have some input | 01:07 |
openstack | Launchpad bug 1466817 in Magnum "Fedora image failed to setup swarm cluster" [Undecided,New] | 01:07 |
hongbin | eliqiao1: Still not following | 01:07 |
madhuri_ | Kennan, sure | 01:07 |
Kennan | for this bug and fix, I am collecting team member options for swarm pin version | 01:07 |
hongbin | eliqiao1: So the problem is from your test case, or somewhere else | 01:08 |
eliqiao1 | hongbin: 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_context | 01:08 |
eliqiao1 | hongbin: check https://review.openstack.org/#/c/194514/5/magnum/service/periodic.py | 01:08 |
eliqiao1 | line 42 to line 48 | 01:09 |
hongbin | I saw that | 01:09 |
hongbin | but how it relates to your argument | 01:10 |
madhuri_ | dims_, ping | 01:11 |
eliqiao1 | that ctx 's project_id is None, so with that ctx, then I will get no bays from db. | 01:11 |
hongbin | eliqiao1: I guest I am kind of lose in the details | 01:12 |
*** harshs has quit IRC | 01:12 | |
hongbin | eliqiao1: I'd better to give you a high level suggestion. For details, I have to comment on the reviews line-by-line | 01:13 |
eliqiao1 | hongbin: this is another nova db api example https://github.com/openstack/nova/blob/master/nova/db/sqlalchemy/api.py#L1864 | 01:14 |
eliqiao1 | hongbin: we shouldn | 01:14 |
hongbin | Again, I am totally lost | 01:15 |
eliqiao1 | hongbin: okay , I will think about your comments and try to do some changs, thx. | 01:15 |
hongbin | eliqiao1: Could you write down your argument inline on the review? I will reply them later | 01:16 |
dims_ | madhuri_: pong | 01:16 |
madhuri_ | glad to find you | 01:17 |
dims_ | madhuri_: :) what's up? | 01:17 |
eliqiao1 | hongbin: okay | 01:17 |
madhuri_ | dims_, About my patch https://review.openstack.org/#/c/190444/ | 01:17 |
hongbin | eliqiao1: Thx | 01:17 |
madhuri_ | I tried to implement using setUpClass so that bay is created only once | 01: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 class | 01:18 |
madhuri_ | dims_, do you have any idea why does setUpClass doesn't work? | 01:18 |
*** harshs has joined #openstack-containers | 01:19 | |
dims_ | looking | 01:21 |
madhuri_ | thanks | 01:22 |
*** sdake has joined #openstack-containers | 01:28 | |
*** eghobo_ has quit IRC | 01:29 | |
*** sdake_ has joined #openstack-containers | 01:29 | |
*** sdake has quit IRC | 01: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 method | 01:33 |
dims_ | "super(TestKubernetesAPIs, cls).setUpClass()" | 01:33 |
dims_ | definitely avoid setUp | 01: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 once | 01:34 |
*** jay-lau-513 has joined #openstack-containers | 01:36 | |
*** david-ly_ is now known as david-lyle | 01:36 | |
*** EricGonczer_ has joined #openstack-containers | 01:36 | |
*** sthillma has quit IRC | 01:42 | |
*** dims_ has quit IRC | 01:45 | |
*** harshs_ has joined #openstack-containers | 01:46 | |
madhuri_ | dims_ https://review.openstack.org/#/c/190444/3/magnum/tests/functional/test_magnum_python_client.py if you see this patch set | 01:46 |
madhuri_ | I have already implemented the same way | 01:46 |
*** harshs has quit IRC | 01:49 | |
*** harshs_ is now known as harshs | 01:49 | |
*** muralia has joined #openstack-containers | 01:50 | |
*** dims has joined #openstack-containers | 01:50 | |
*** dontalton has quit IRC | 01:56 | |
*** erkules_ has joined #openstack-containers | 01:59 | |
dims | madhuri_: and the patch #3 did not work? | 01:59 |
madhuri_ | Yes, that was what I was asking :) | 01:59 |
*** erkules has quit IRC | 02:01 | |
*** yuanying has joined #openstack-containers | 02:02 | |
madhuri_ | dims, should I upload the previous patch again? | 02:04 |
*** dims has quit IRC | 02:04 | |
madhuri_ | dims, so that you can see the failure | 02:04 |
*** dims has joined #openstack-containers | 02:10 | |
*** jruano has joined #openstack-containers | 02:11 | |
dims | madhuri_: don't follow you. what was the problem with patch #3? | 02:13 |
*** sdake has joined #openstack-containers | 02:13 | |
madhuri_ | dims, That patch failed | 02:14 |
dims | diagnosed why? | 02:14 |
madhuri_ | only 1 bay was supposed to be created but 3 was created | 02:15 |
madhuri_ | It means setUpClass was called 3 times | 02:15 |
madhuri_ | Don't get it | 02:15 |
*** sdake_ has quit IRC | 02:17 | |
*** jjlehr has joined #openstack-containers | 02:17 | |
*** unicell has quit IRC | 02:17 | |
openstackgerrit | Eli Qiao proposed openstack/magnum: Fix unit test case error https://review.openstack.org/195381 | 02:20 |
*** rlrevell has joined #openstack-containers | 02:20 | |
*** rlrevell has quit IRC | 02:23 | |
*** muralia has quit IRC | 02:26 | |
*** muralia has joined #openstack-containers | 02:28 | |
*** sankarshan_away is now known as sankarshan | 02:34 | |
*** hongbin has quit IRC | 02:44 | |
*** yuanying-alt has joined #openstack-containers | 02:46 | |
*** yuanying-alt has quit IRC | 02:51 | |
*** skoar has quit IRC | 02:55 | |
dims | madhuri_: that's because there are many processes running the test sure | 02:55 |
dims | suite | 02:55 |
dims | madhuri_: resurrect the patch #3 and throw in this change in post_test_hook.sh | 02:55 |
madhuri_ | dims, So how can we avoid it? | 02:55 |
dims | sudo -E -H -u jenkins tox -e functional --concurrency=1 | 02:55 |
dims | post_test_hook.sh has "sudo -E -H -u jenkins tox -e functional" now | 02:56 |
dims | add the "--concurrency=1" | 02:56 |
madhuri_ | Ok got it | 02:56 |
dims | it's late here, will check on it when i wake up. ttyl | 02:57 |
madhuri_ | Thanks dims :) | 02:57 |
madhuri_ | Good night | 02:57 |
dims | yw | 02:57 |
dims | bye | 02:58 |
*** dims has quit IRC | 02:58 | |
*** EricGonczer_ has quit IRC | 03:00 | |
openstackgerrit | Madhuri Kumari proposed openstack/magnum: Adding functional test cases for Kubernetes APIs https://review.openstack.org/190444 | 03:01 |
*** adrian_otto has joined #openstack-containers | 03:03 | |
*** harshs has left #openstack-containers | 03:06 | |
*** adrian_otto has quit IRC | 03:07 | |
*** sthillma has joined #openstack-containers | 03:08 | |
*** zhenguo has joined #openstack-containers | 03:09 | |
openstackgerrit | Madhuri Kumari proposed openstack/magnum: Adding functional test cases for Kubernetes APIs https://review.openstack.org/190444 | 03:10 |
*** harshs has joined #openstack-containers | 03:12 | |
*** amit213 has quit IRC | 03:12 | |
*** zul has quit IRC | 03:13 | |
*** amit213 has joined #openstack-containers | 03:13 | |
*** harshs has left #openstack-containers | 03:13 | |
*** jruano has quit IRC | 03:15 | |
*** yuanying has quit IRC | 03:16 | |
*** zul has joined #openstack-containers | 03:17 | |
*** skoar has joined #openstack-containers | 03:18 | |
*** kebray has joined #openstack-containers | 03:18 | |
*** eghobo has joined #openstack-containers | 03:23 | |
*** tobe has quit IRC | 03:26 | |
*** macjack has joined #openstack-containers | 03:30 | |
*** jruano has joined #openstack-containers | 03:34 | |
*** tobe has joined #openstack-containers | 03:39 | |
*** jjlehr has quit IRC | 03:41 | |
*** harshs has joined #openstack-containers | 03:43 | |
*** yuanying has joined #openstack-containers | 03:47 | |
*** adrian_otto has joined #openstack-containers | 03:54 | |
*** adrian_otto has quit IRC | 03:56 | |
*** yuanying has quit IRC | 03:59 | |
*** adrian_otto has joined #openstack-containers | 04:00 | |
*** coolsvap|away is now known as coolsvap | 04:04 | |
*** adrian_otto has quit IRC | 04:05 | |
*** yuanying has joined #openstack-containers | 04:09 | |
*** eghobo has quit IRC | 04:10 | |
*** jruano has quit IRC | 04:13 | |
*** adrian_otto has joined #openstack-containers | 04:13 | |
*** eghobo has joined #openstack-containers | 04:17 | |
*** muralia has quit IRC | 04:17 | |
*** adrian_otto1 has joined #openstack-containers | 04:17 | |
*** eghobo_ has joined #openstack-containers | 04:18 | |
*** adrian_otto1 has quit IRC | 04:19 | |
*** adrian_otto has quit IRC | 04:20 | |
*** eghobo has quit IRC | 04:22 | |
*** achanda has joined #openstack-containers | 04:23 | |
*** harshs has quit IRC | 04:27 | |
*** kebray has quit IRC | 04:29 | |
*** kebray has joined #openstack-containers | 04:30 | |
*** jruano has joined #openstack-containers | 04:34 | |
*** yuanying-alt has joined #openstack-containers | 04:35 | |
*** yuanying-alt has quit IRC | 04:39 | |
*** unicell has joined #openstack-containers | 04:40 | |
*** skoar has quit IRC | 04:42 | |
*** sthillma has quit IRC | 04:51 | |
*** Marga_ has joined #openstack-containers | 05:02 | |
*** jruano has quit IRC | 05:05 | |
*** achanda has quit IRC | 05:06 | |
*** sthillma has joined #openstack-containers | 05:19 | |
*** Tango|2 has joined #openstack-containers | 05:21 | |
*** sthillma has quit IRC | 05:22 | |
*** unicell1 has joined #openstack-containers | 05:24 | |
*** Tango has quit IRC | 05:24 | |
*** unicell has quit IRC | 05:25 | |
*** skoar has joined #openstack-containers | 05:29 | |
*** skoar has quit IRC | 05:37 | |
*** madhuri has joined #openstack-containers | 06:07 | |
*** destiny has joined #openstack-containers | 06:07 | |
*** destiny has left #openstack-containers | 06:08 | |
*** tobe has quit IRC | 06:14 | |
*** yuanying_ has joined #openstack-containers | 06:15 | |
*** yuanying_ has quit IRC | 06:17 | |
*** yuanying_ has joined #openstack-containers | 06:18 | |
*** yuanying has quit IRC | 06:18 | |
*** yuanying_ has quit IRC | 06:19 | |
*** yuanying-alt has joined #openstack-containers | 06:24 | |
*** yuanying-alt has quit IRC | 06:28 | |
*** yuanying has joined #openstack-containers | 06:32 | |
*** BertrandN has joined #openstack-containers | 06:32 | |
*** yuanying has quit IRC | 06:32 | |
*** tobe has joined #openstack-containers | 06:33 | |
*** blixt_ is now known as hblixt | 06:41 | |
*** achanda has joined #openstack-containers | 06:44 | |
*** nihilifer has joined #openstack-containers | 06:45 | |
*** belmoreira has joined #openstack-containers | 06:53 | |
*** oro has joined #openstack-containers | 06:57 | |
*** achanda has quit IRC | 06:58 | |
*** Tango|2 has quit IRC | 06:59 | |
*** bradjones has quit IRC | 07:02 | |
*** yuanying has joined #openstack-containers | 07:02 | |
*** bradjones has joined #openstack-containers | 07:04 | |
*** bradjones has quit IRC | 07:04 | |
*** bradjones has joined #openstack-containers | 07:04 | |
*** yuanying has quit IRC | 07:05 | |
*** yuanying has joined #openstack-containers | 07:05 | |
*** kebray has quit IRC | 07:06 | |
*** madhuri has quit IRC | 07:07 | |
*** achanda has joined #openstack-containers | 07:08 | |
*** lan has quit IRC | 07:20 | |
*** lan has joined #openstack-containers | 07:20 | |
*** unicell has joined #openstack-containers | 07:22 | |
*** unicell1 has quit IRC | 07:23 | |
*** unicell has quit IRC | 07:29 | |
*** sthillma has joined #openstack-containers | 07:38 | |
*** eghobo_ has quit IRC | 07:44 | |
*** oro has quit IRC | 07:44 | |
*** sthillma has quit IRC | 07:46 | |
*** erkules_ is now known as erkules | 07:46 | |
*** erkules has quit IRC | 07:46 | |
*** erkules has joined #openstack-containers | 07:46 | |
*** tobe has quit IRC | 07:48 | |
*** alex_klimov has joined #openstack-containers | 08:03 | |
*** tobe has joined #openstack-containers | 08:04 | |
*** yuanying-alt has joined #openstack-containers | 08:13 | |
*** oro has joined #openstack-containers | 08:15 | |
*** coolsvap is now known as coolsvap|away | 08:16 | |
*** yuanying-alt has quit IRC | 08:17 | |
*** coolsvap|away is now known as coolsvap | 08:19 | |
zhenguo | hi, how is the project magnum-ui going? | 08:44 |
*** oro has quit IRC | 09:01 | |
*** oro has joined #openstack-containers | 09:02 | |
*** oro_ has joined #openstack-containers | 09:13 | |
openstackgerrit | Eli Qiao proposed openstack/magnum: Fix unit test case error https://review.openstack.org/195381 | 09:17 |
*** mfalatic has quit IRC | 09:29 | |
*** oro has quit IRC | 09:33 | |
*** oro_ has quit IRC | 09:34 | |
*** jay-lau-513 has quit IRC | 09:35 | |
*** jay-lau-513 has joined #openstack-containers | 09:36 | |
*** oro_ has joined #openstack-containers | 09:49 | |
openstackgerrit | Madhuri Kumari proposed openstack/magnum: Adds TLS support in pythonk8sclient. https://review.openstack.org/195488 | 09:52 |
openstackgerrit | Eli Qiao proposed openstack/magnum: Devstack: Add admin creds in magnum.conf https://review.openstack.org/194925 | 09:52 |
openstackgerrit | Eli Qiao proposed openstack/magnum: Add periodic task framework https://review.openstack.org/187090 | 09:52 |
openstackgerrit | Eli Qiao proposed openstack/magnum: Add periodic task to sync bay status https://review.openstack.org/194514 | 09:52 |
openstackgerrit | Eli Qiao proposed openstack/magnum: Add Bay.list_all method to allow admin context to query all tenants bay https://review.openstack.org/193031 | 09:52 |
*** oro has joined #openstack-containers | 09:52 | |
openstackgerrit | Madhuri Kumari proposed openstack/magnum: Adds TLS support in pythonk8sclient. https://review.openstack.org/195488 | 09:55 |
*** yuanying-alt has joined #openstack-containers | 10:01 | |
*** yuanying-alt has quit IRC | 10:06 | |
*** jay-lau-513 has quit IRC | 10:10 | |
*** jay-lau-513 has joined #openstack-containers | 10:11 | |
openstackgerrit | Davanum Srinivas (dims) proposed openstack/magnum: [Work in Progress] Switch on concurrency to 1 for functional tests https://review.openstack.org/195499 | 10:11 |
*** Kennan2 has joined #openstack-containers | 10:14 | |
*** Kennan has quit IRC | 10:14 | |
*** dims has joined #openstack-containers | 10:14 | |
*** Kennan2 is now known as Kennan | 10:17 | |
openstackgerrit | Tom Cammann proposed openstack/magnum: Replace dict.iteritems() with dict.items() https://review.openstack.org/195270 | 10:19 |
*** jay-lau-513 has quit IRC | 10:29 | |
*** Marga_ has quit IRC | 10:50 | |
*** sdake has quit IRC | 10:50 | |
*** dims has quit IRC | 11:02 | |
*** dims has joined #openstack-containers | 11:05 | |
*** dims_ has joined #openstack-containers | 11:10 | |
*** dims has quit IRC | 11:11 | |
*** tobe has quit IRC | 11:11 | |
*** dims_ has quit IRC | 11:16 | |
*** david-lyle has quit IRC | 11:17 | |
*** rlrevell has joined #openstack-containers | 11:19 | |
*** rlrevell has quit IRC | 11:20 | |
*** dims has joined #openstack-containers | 11:21 | |
*** david-lyle has joined #openstack-containers | 11:21 | |
openstackgerrit | Davanum Srinivas (dims) proposed openstack/magnum: [work in progress] set concurrency to 1 for functional tests https://review.openstack.org/195526 | 11:22 |
*** achanda has quit IRC | 11:25 | |
*** oro_ has quit IRC | 11:28 | |
*** oro has quit IRC | 11:28 | |
*** Marga_ has joined #openstack-containers | 11:32 | |
*** bradjones has quit IRC | 11:38 | |
*** rlrevell has joined #openstack-containers | 11:39 | |
*** bradjones has joined #openstack-containers | 11:41 | |
*** bradjones has quit IRC | 11:41 | |
*** bradjones has joined #openstack-containers | 11:41 | |
*** oro_ has joined #openstack-containers | 11:41 | |
*** oro has joined #openstack-containers | 11:41 | |
*** Marga_ has quit IRC | 11:48 | |
*** yuanying-alt has joined #openstack-containers | 11:50 | |
*** sankarshan is now known as sankarshan_away | 11:50 | |
*** yuanying-alt has quit IRC | 11:54 | |
*** apuimedo has joined #openstack-containers | 11:55 | |
*** yuanying has quit IRC | 11:57 | |
*** rlrevell has quit IRC | 12:01 | |
*** zhenguo has quit IRC | 12:04 | |
*** rlrevell has joined #openstack-containers | 12:13 | |
*** rlrevell has quit IRC | 12:13 | |
*** EricGonczer_ has joined #openstack-containers | 12:25 | |
*** coolsvap is now known as coolsvap|away | 12:26 | |
*** EricGonc_ has joined #openstack-containers | 12:29 | |
*** dims has quit IRC | 12:31 | |
*** EricGonczer_ has quit IRC | 12:31 | |
*** dims has joined #openstack-containers | 12:31 | |
*** EricGonc_ has quit IRC | 12:32 | |
*** rlrevell has joined #openstack-containers | 12:32 | |
*** EricGonczer_ has joined #openstack-containers | 12:33 | |
*** EricGonczer_ has quit IRC | 12:35 | |
*** coolsvap|away is now known as coolsvap | 12:35 | |
*** EricGonczer_ has joined #openstack-containers | 12:35 | |
*** david-ly_ has joined #openstack-containers | 12:35 | |
*** coolsvap is now known as coolsvap|away | 12:36 | |
*** david-lyle has quit IRC | 12:39 | |
openstackgerrit | Merged openstack/magnum: Fix the wrong number for minion node https://review.openstack.org/194993 | 12:45 |
*** bradjones has quit IRC | 12:47 | |
*** EricGonczer_ has quit IRC | 12:50 | |
*** bradjones has joined #openstack-containers | 12:50 | |
*** bradjones has quit IRC | 12:50 | |
*** bradjones has joined #openstack-containers | 12:50 | |
*** sankarshan_away is now known as sankarshan | 12:52 | |
*** EricGonczer_ has joined #openstack-containers | 12:53 | |
*** absubram has quit IRC | 12:55 | |
*** EricGonc_ has joined #openstack-containers | 12:56 | |
*** EricGonczer_ has quit IRC | 12:56 | |
*** sdake has joined #openstack-containers | 12:56 | |
*** EricGonc_ has quit IRC | 12:58 | |
*** EricGonczer_ has joined #openstack-containers | 12:58 | |
*** coolsvap|away is now known as coolsvap | 13:00 | |
*** julim has joined #openstack-containers | 13:01 | |
*** EricGonczer_ has quit IRC | 13:02 | |
*** EricGonc_ has joined #openstack-containers | 13:02 | |
*** jjlehr has joined #openstack-containers | 13:04 | |
*** EricGonczer_ has joined #openstack-containers | 13:04 | |
*** EricGonc_ has quit IRC | 13:05 | |
*** belmoreira has quit IRC | 13:05 | |
*** suro-patz1 has joined #openstack-containers | 13:05 | |
*** yuanying-alt has joined #openstack-containers | 13:06 | |
openstackgerrit | Merged openstack/magnum: Not need to use bay uuid https://review.openstack.org/194946 | 13:09 |
*** EricGonczer_ has quit IRC | 13:10 | |
*** suro-patz has joined #openstack-containers | 13:10 | |
*** suro-patz1 has quit IRC | 13:10 | |
*** yuanying-alt has quit IRC | 13:10 | |
*** jruano has joined #openstack-containers | 13:11 | |
*** husanux1 has joined #openstack-containers | 13:15 | |
*** suro-patz has quit IRC | 13:15 | |
*** husanux1 has quit IRC | 13:18 | |
*** suro-patz has joined #openstack-containers | 13:19 | |
*** husanux3 has joined #openstack-containers | 13:20 | |
*** husanux3 has quit IRC | 13:21 | |
*** coolsvap is now known as coolsvap|away | 13:21 | |
*** Marga_ has joined #openstack-containers | 13:22 | |
*** husanux0 has joined #openstack-containers | 13:25 | |
*** apuimedo has quit IRC | 13:28 | |
*** husanux0 has quit IRC | 13:29 | |
*** Marga_ has quit IRC | 13:31 | |
*** Marga_ has joined #openstack-containers | 13:31 | |
*** jjfreric has joined #openstack-containers | 13:32 | |
*** absubram has joined #openstack-containers | 13:35 | |
*** julim has quit IRC | 13:44 | |
*** dboik has joined #openstack-containers | 13:46 | |
*** hongbin has joined #openstack-containers | 13:49 | |
*** harshs has joined #openstack-containers | 13:57 | |
*** harshs has quit IRC | 13:57 | |
*** suro-patz has quit IRC | 13:57 | |
*** harshs has joined #openstack-containers | 13:57 | |
*** yapeng has joined #openstack-containers | 13:58 | |
*** suro-patz has joined #openstack-containers | 14:00 | |
*** suro-patz1 has joined #openstack-containers | 14:00 | |
*** suro-patz1 has quit IRC | 14:01 | |
*** julim has joined #openstack-containers | 14:04 | |
*** suro-patz has quit IRC | 14:04 | |
*** eghobo has joined #openstack-containers | 14:06 | |
*** yuanying-alt has joined #openstack-containers | 14:07 | |
*** eghobo_ has joined #openstack-containers | 14:08 | |
*** eghobo has quit IRC | 14:11 | |
*** yuanying-alt has quit IRC | 14:11 | |
*** suro-patz has joined #openstack-containers | 14:49 | |
*** Drago has joined #openstack-containers | 14:50 | |
*** Drago has quit IRC | 14:51 | |
*** rlrevell has quit IRC | 14:52 | |
*** Drago has joined #openstack-containers | 14:52 | |
*** rpothier has joined #openstack-containers | 14:56 | |
*** muralia has joined #openstack-containers | 14:57 | |
*** rlrevell has joined #openstack-containers | 14:58 | |
*** rlrevell has quit IRC | 14:58 | |
*** rlrevell has joined #openstack-containers | 14:59 | |
*** Tango|2 has joined #openstack-containers | 14:59 | |
*** rlrevell has quit IRC | 14:59 | |
openstackgerrit | Merged openstack/magnum: Add Bay.list_all method to allow admin context to query all tenants bay https://review.openstack.org/193031 | 14:59 |
*** suro-patz has quit IRC | 15:00 | |
*** david-ly_ is now known as david-lyle | 15:01 | |
*** yuanying-alt has joined #openstack-containers | 15:07 | |
*** unicell has joined #openstack-containers | 15:07 | |
*** yuanying-alt has quit IRC | 15:12 | |
*** eghobo_ has quit IRC | 15:12 | |
*** oro_ has quit IRC | 15:16 | |
*** oro has quit IRC | 15:16 | |
*** rlrevell has joined #openstack-containers | 15:18 | |
*** alex_klimov has quit IRC | 15:20 | |
*** alex_klimov has joined #openstack-containers | 15:20 | |
openstackgerrit | Tom Cammann proposed openstack/magnum: Replace dict.iteritems() with dict.items() https://review.openstack.org/195270 | 15:21 |
openstackgerrit | Merged openstack/magnum: Fix unit test case error https://review.openstack.org/195381 | 15:21 |
*** hblixt has quit IRC | 15:27 | |
*** daneyon has joined #openstack-containers | 15:33 | |
*** daneyon_ has joined #openstack-containers | 15:34 | |
*** daneyon has quit IRC | 15:37 | |
*** dboik has quit IRC | 15:47 | |
*** dboik has joined #openstack-containers | 15:48 | |
*** alex_klimov has quit IRC | 15:50 | |
*** sdake_ has joined #openstack-containers | 15:50 | |
*** sdake has quit IRC | 15:54 | |
*** unicell has quit IRC | 15:54 | |
*** oro has joined #openstack-containers | 15:54 | |
*** Drago1 has joined #openstack-containers | 16:05 | |
*** Drago has quit IRC | 16:05 | |
*** yuanying-alt has joined #openstack-containers | 16:08 | |
*** sthillma has joined #openstack-containers | 16:12 | |
*** yuanying-alt has quit IRC | 16:13 | |
*** jjlehr has quit IRC | 16:13 | |
*** suro-patz has joined #openstack-containers | 16:16 | |
*** harshs has quit IRC | 16:16 | |
*** jjfreric1 has joined #openstack-containers | 16:20 | |
*** jjfreric has quit IRC | 16:21 | |
*** sdake_ is now known as sdake | 16:25 | |
*** harshs has joined #openstack-containers | 16:28 | |
*** jjfreric1 has quit IRC | 16:28 | |
*** jjfreric has joined #openstack-containers | 16:29 | |
*** achanda has joined #openstack-containers | 16:31 | |
*** BertrandN has quit IRC | 16:39 | |
*** unicell has joined #openstack-containers | 16:43 | |
*** eghobo has joined #openstack-containers | 16:44 | |
*** rpothier has quit IRC | 16:50 | |
*** jjlehr has joined #openstack-containers | 16:50 | |
*** Tango|2 has quit IRC | 16:53 | |
*** jjlehr has quit IRC | 16:56 | |
*** harshs_ has joined #openstack-containers | 16:58 | |
*** sankarshan is now known as sankarshan_away | 16:59 | |
*** harshs has quit IRC | 17:01 | |
*** harshs_ is now known as harshs | 17:01 | |
*** jjlehr has joined #openstack-containers | 17:01 | |
*** dboik has quit IRC | 17:03 | |
*** achanda has quit IRC | 17:08 | |
*** yuanying-alt has joined #openstack-containers | 17:09 | |
*** Marga_ has quit IRC | 17:09 | |
*** Marga_ has joined #openstack-containers | 17:10 | |
*** yuanying-alt has quit IRC | 17:13 | |
*** hblixt has joined #openstack-containers | 17:14 | |
*** blixt_ has joined #openstack-containers | 17:14 | |
*** hblixt has quit IRC | 17:18 | |
*** sdake_ has joined #openstack-containers | 17:20 | |
*** sdake has quit IRC | 17:24 | |
*** achanda has joined #openstack-containers | 17:25 | |
*** bradjones has quit IRC | 17:26 | |
*** bradjones has joined #openstack-containers | 17:28 | |
*** bradjones has quit IRC | 17:28 | |
*** bradjones has joined #openstack-containers | 17:28 | |
*** sdake_ is now known as sdake | 17:29 | |
*** blixt__ has joined #openstack-containers | 17:33 | |
*** jjfreric1 has joined #openstack-containers | 17:36 | |
*** blixt_ has quit IRC | 17:36 | |
*** blixt__ has quit IRC | 17:37 | |
*** jjfreric has quit IRC | 17:38 | |
*** dboik has joined #openstack-containers | 17:40 | |
*** Tango|2 has joined #openstack-containers | 17:40 | |
*** Marga_ has quit IRC | 17:42 | |
*** jjfreric has joined #openstack-containers | 17:46 | |
*** kebray has joined #openstack-containers | 17:46 | |
*** jjfreric1 has quit IRC | 17:46 | |
*** DRoBeR has quit IRC | 17:47 | |
*** jjfreric has left #openstack-containers | 17:54 | |
*** Marga_ has joined #openstack-containers | 17:55 | |
*** jjfreric has joined #openstack-containers | 17:55 | |
*** SourabhP has joined #openstack-containers | 17:56 | |
*** ameybhide has joined #openstack-containers | 18:00 | |
*** hblixt has joined #openstack-containers | 18:00 | |
*** dontalton has joined #openstack-containers | 18:02 | |
*** husanu5 has joined #openstack-containers | 18:02 | |
*** blixt_ has joined #openstack-containers | 18:02 | |
*** hblixt has quit IRC | 18:05 | |
*** yuanying-alt has joined #openstack-containers | 18:10 | |
*** yuanying-alt has quit IRC | 18:14 | |
*** husanu5 has quit IRC | 18:14 | |
*** harshs has quit IRC | 18:17 | |
*** harshs has joined #openstack-containers | 18:18 | |
*** julim has quit IRC | 18:28 | |
*** julim has joined #openstack-containers | 18:28 | |
*** jhova has joined #openstack-containers | 18:29 | |
*** blixt__ has joined #openstack-containers | 18:31 | |
*** jruano has quit IRC | 18:33 | |
*** blixt_ has quit IRC | 18:35 | |
*** hblixt has joined #openstack-containers | 18:38 | |
*** blixt__ has quit IRC | 18:40 | |
*** dontalton has quit IRC | 18:44 | |
*** suro-patz has quit IRC | 18:44 | |
*** rpothier has joined #openstack-containers | 18:52 | |
*** julim has quit IRC | 18:52 | |
*** rbrooker has joined #openstack-containers | 18:52 | |
*** julim has joined #openstack-containers | 18:59 | |
*** julim has quit IRC | 19:02 | |
*** julim has joined #openstack-containers | 19:03 | |
*** EricGonczer_ has joined #openstack-containers | 19:05 | |
*** jruano has joined #openstack-containers | 19:08 | |
*** yuanying-alt has joined #openstack-containers | 19:10 | |
*** achanda has quit IRC | 19:11 | |
*** yapeng has quit IRC | 19:11 | |
*** jjfreric1 has joined #openstack-containers | 19:11 | |
*** jjfreric has quit IRC | 19:12 | |
*** yuanying-alt has quit IRC | 19:15 | |
*** suro-patz has joined #openstack-containers | 19:17 | |
*** suro-patz1 has joined #openstack-containers | 19:24 | |
*** suro-patz has quit IRC | 19:25 | |
*** eghobo has quit IRC | 19:33 | |
*** jjfreric1 has quit IRC | 19:36 | |
openstackgerrit | Andrew Melton proposed openstack/magnum: Fix Docker Engine version issue in Swarm bay https://review.openstack.org/195716 | 19:36 |
openstackgerrit | Andrew Melton proposed openstack/magnum: Fix Docker Engine version issue in Swarm bay https://review.openstack.org/195716 | 19:40 |
*** daneyon_ has quit IRC | 19:42 | |
*** jjfreric has joined #openstack-containers | 19:43 | |
*** julim has quit IRC | 19:44 | |
*** suro-patz1 has quit IRC | 19:58 | |
*** yuanying-alt has joined #openstack-containers | 20:11 | |
*** yuanying-alt has quit IRC | 20:16 | |
*** alex_klimov has joined #openstack-containers | 20:17 | |
*** gpruessmann has joined #openstack-containers | 20:19 | |
*** sdake_ has joined #openstack-containers | 20:24 | |
*** sdake has quit IRC | 20:28 | |
*** sdake_ is now known as sdake | 20:29 | |
*** eghobo has joined #openstack-containers | 20:44 | |
*** julim has joined #openstack-containers | 20:47 | |
*** jjfreric has left #openstack-containers | 20:52 | |
*** dboik has quit IRC | 20:52 | |
*** oro has quit IRC | 20:55 | |
*** rlrevell has quit IRC | 21:08 | |
*** yuanying-alt has joined #openstack-containers | 21:12 | |
*** kebray has quit IRC | 21:13 | |
*** yuanying-alt has quit IRC | 21:16 | |
*** dboik has joined #openstack-containers | 21:22 | |
*** dboik_ has joined #openstack-containers | 21:24 | |
*** dboik has quit IRC | 21:27 | |
openstackgerrit | Hongbin Lu proposed openstack/magnum: Add 'host' field to Pod object. https://review.openstack.org/194378 | 21:38 |
*** SourabhP has quit IRC | 21:39 | |
*** SourabhP has joined #openstack-containers | 21:40 | |
*** rlrevell has joined #openstack-containers | 21:42 | |
openstackgerrit | Hongbin Lu proposed openstack/magnum: Add elements for building a Mesos bay node image https://review.openstack.org/189180 | 21:43 |
*** gpruessmann has quit IRC | 21:43 | |
*** kebray has joined #openstack-containers | 21:46 | |
*** rlrevell has quit IRC | 21:48 | |
*** julim has quit IRC | 21:51 | |
*** Marga_ has quit IRC | 21:55 | |
*** suro-patz has joined #openstack-containers | 22:02 | |
*** apuimedo has joined #openstack-containers | 22:02 | |
*** jhova has quit IRC | 22:03 | |
*** SourabhP has quit IRC | 22:04 | |
*** rlrevell has joined #openstack-containers | 22:06 | |
openstackgerrit | Hongbin Lu proposed openstack/magnum: Add template definition of Mesos bay https://review.openstack.org/191476 | 22:07 |
openstackgerrit | Hongbin Lu proposed openstack/magnum: Add elements for building a Mesos bay node image https://review.openstack.org/189180 | 22:07 |
*** SourabhP has joined #openstack-containers | 22:07 | |
*** hongbin has quit IRC | 22:11 | |
*** yuanying-alt has joined #openstack-containers | 22:12 | |
*** yuanying-alt has quit IRC | 22:17 | |
*** hblixt has quit IRC | 22:18 | |
*** SourabhP has quit IRC | 22:21 | |
*** rlrevell has quit IRC | 22:24 | |
*** rpothier has quit IRC | 22:24 | |
*** dims has quit IRC | 22:30 | |
*** dontalton has joined #openstack-containers | 22:32 | |
*** SourabhP has joined #openstack-containers | 22:34 | |
*** jruano has quit IRC | 22:35 | |
*** alex_klimov has quit IRC | 22:35 | |
*** dims_ has joined #openstack-containers | 22:38 | |
*** rlrevell has joined #openstack-containers | 22:41 | |
*** dontalton has quit IRC | 22:45 | |
*** jjlehr has quit IRC | 22:47 | |
*** EricGonczer_ has quit IRC | 22:47 | |
*** sdake_ has joined #openstack-containers | 23:00 | |
*** muralia has quit IRC | 23:02 | |
*** sdake has quit IRC | 23:04 | |
*** sdake has joined #openstack-containers | 23:07 | |
*** sdake_ has quit IRC | 23:11 | |
*** yuanying-alt has joined #openstack-containers | 23:13 | |
*** yuanying-alt has quit IRC | 23:18 | |
*** zhenguo has joined #openstack-containers | 23:18 | |
*** eghobo has quit IRC | 23:20 | |
*** rbrooker has quit IRC | 23:22 | |
*** absubram has quit IRC | 23:29 | |
*** yuanying has joined #openstack-containers | 23:32 | |
*** suro-patz has quit IRC | 23:36 | |
*** kebray has quit IRC | 23:41 | |
*** apuimedo has quit IRC | 23:41 | |
*** juggler_ is now known as juggler | 23:44 | |
*** SourabhP has quit IRC | 23:45 | |
*** sdake has quit IRC | 23:54 | |
*** sdake has joined #openstack-containers | 23:55 | |
Kennan | apmelton: there? | 23:55 |
Kennan | for swarm patch was poposed before, you could check here https://review.openstack.org/#/c/194963/ | 23:56 |
*** Drago1 has quit IRC | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!