*** EricGonczer_ has joined #openstack-containers | 00:02 | |
*** kebray has quit IRC | 00:09 | |
*** sankarshan_ is now known as sankarshan_away | 00:09 | |
*** Drago has joined #openstack-containers | 00:17 | |
*** Drago has quit IRC | 00:18 | |
*** Drago has joined #openstack-containers | 00:18 | |
*** yuanying_ has joined #openstack-containers | 00:29 | |
*** yuanying has quit IRC | 00:31 | |
*** EricGonczer_ has quit IRC | 00:37 | |
*** snrism has joined #openstack-containers | 00:45 | |
*** adrian_otto has joined #openstack-containers | 00:51 | |
eliqiao | hi hongbin, around ? | 00:58 |
---|---|---|
hongbin | yes | 00:58 |
hongbin | what's up | 00:58 |
*** adrian_otto has quit IRC | 00:59 | |
hongbin | eliqiao: ?? | 00:59 |
eliqiao | hongbin, for horizontally scalability, any concern, I wonder for periodic task thread, do you want a sepreate service or just an thread of conductor? | 00:59 |
*** harshs has quit IRC | 01:00 | |
hongbin | I do prefer a separate service | 01:00 |
hongbin | but that need to discuss with the team | 01:00 |
hongbin | possibly you can discuss the BP in the email | 01:01 |
eliqiao | hongbin: that would be ... too heavy, and wasteful.. | 01:01 |
hongbin | Maybe, but one periodical thread per conductor has scalability problem | 01:02 |
eliqiao | hongbin: hmm. okay .. I will try to summarize | 01:02 |
*** adrian_otto has joined #openstack-containers | 01:02 | |
hongbin | K | 01:02 |
eliqiao | any plan how to split the conductor ? | 01:03 |
hongbin | Not necessary split the conductor | 01:03 |
hongbin | But I do think we need to discuss that with the team first | 01:03 |
hongbin | I can send an email for this if you prefer | 01:04 |
eliqiao | hongbin: okay, thanks. let me send the mail | 01:04 |
hongbin | k | 01:04 |
openstackgerrit | Yuiko Takada proposed openstack/magnum: Pass environment variables of proxy to tox https://review.openstack.org/191600 | 01:07 |
*** jjlehr has quit IRC | 01:10 | |
*** EricGonczer_ has joined #openstack-containers | 01:20 | |
*** erkules_ has joined #openstack-containers | 01:22 | |
*** erkules has quit IRC | 01:25 | |
*** julim has joined #openstack-containers | 01:25 | |
*** EricGonczer_ has quit IRC | 01:26 | |
*** dboik has quit IRC | 01:33 | |
*** fangfenghua has joined #openstack-containers | 01:35 | |
*** adrian_otto has quit IRC | 01:36 | |
*** sankarshan_away is now known as sankarshan_ | 01:36 | |
*** adrian_otto has joined #openstack-containers | 01:37 | |
openstackgerrit | Eli Qiao proposed openstack/magnum: WIP: Add periodict task support for to rpc service https://review.openstack.org/187090 | 01:39 |
*** fangfenghua has quit IRC | 01:44 | |
eliqiao | hongbin: are you free ? can I ask another question? | 01:44 |
hongbin | sure | 01:44 |
*** adrian_otto has quit IRC | 01:45 | |
hongbin | eliqiao: what is your question? | 01:46 |
eliqiao | in bay_conductor, we call heat client to create/update/delete a stack. I see we need a osc(open stack client) to do these, in the constrcution of osc, it requires auth_token(which is from keystone) | 01:46 |
eliqiao | hongbin: sorry , typing slow... | 01:47 |
hongbin | NP | 01:47 |
eliqiao | hongbin: this auth_tokey is from keystone, I see there is a hooks.py do this, it put auth_tokey into context, but how can we add this from service not a REST API call? | 01:48 |
hongbin | Don't get what do you mean by "add this from service not a REST API call" | 01:49 |
eliqiao | hongbin: my question is if we pull state from heat in periodic task, we need to create a fake context, then how can we get the auth_token? | 01:49 |
hongbin | Could you elaborate | 01:49 |
hongbin | I guess you can use an admin token | 01:50 |
eliqiao | hongbin: can you please check the comments on https://review.openstack.org/#/c/187114/3/magnum/conductor/handlers/bay_conductor.py | 01:50 |
hongbin | Magnum should have an admin token, although I am not sure the detail | 01:50 |
hongbin | reading | 01:51 |
hongbin | Yes, Egor suggest to use admin credential | 01:53 |
hongbin | which I agree | 01:53 |
hongbin | eliqiao: Any problem of using admin credential? | 01:55 |
eliqiao | hongbin: does magmun have such method in magnum_keystoneclient? | 01:55 |
hongbin | I am not sure, haven't looked into it | 01:55 |
eliqiao | hongbin: I just don't know how to go with admin credential, any examples? | 01:55 |
hongbin | What I know is the admin credential is written in config file | 01:55 |
hongbin | https://github.com/openstack/magnum/blob/master/etc/magnum/magnum.conf.sample#L712 | 01:56 |
openstackgerrit | Merged openstack/magnum: Consolidate repeated codes in test_bay_conductor https://review.openstack.org/191577 | 01:56 |
eliqiao | hongbin: currently the config file only contains follows http://paste.openstack.org/show/292372/ | 01:56 |
eliqiao | which is from my setup. | 01:56 |
hongbin | One thing is every config has default value | 01:58 |
hongbin | So, if admin_user is not in your config file | 01:58 |
hongbin | Its value is the default value | 01:58 |
hongbin | Sorry, I see the default value is None right now | 01:59 |
hongbin | But you can always change the config file in the devstack plugin | 01:59 |
eliqiao | hongbin: but is my usage wrong ? https://github.com/openstack/magnum/blob/master/magnum/common/magnum_keystoneclient.py#L81 | 02:00 |
eliqiao | hongbin: I think it is wrong... ;( | 02:01 |
eliqiao | we don't have any code reading admin credential yet ? | 02:01 |
hongbin | https://github.com/openstack/magnum/blob/master/magnum/common/magnum_keystoneclient.py#L147 | 02:02 |
hongbin | seems it does read admin credential | 02:03 |
eliqiao | hongbin: oh ,yes, then I think my usage is correct. | 02:03 |
hongbin | Seems to be | 02:03 |
hongbin | You have tested it, and it works. Right? | 02:03 |
eliqiao | hongbin: hmm. then I don't get Egor's comments. | 02:04 |
eliqiao | hongbin: not really yet. | 02:04 |
eliqiao | hongbin: does devstack configure admin_user in keystone? | 02:05 |
hongbin | Then, better to try it. If it works, then it should be fine | 02:05 |
openstackgerrit | Merged openstack/magnum: Minor improvement of the quickstart guide https://review.openstack.org/191538 | 02:05 |
hongbin | Current no | 02:05 |
hongbin | The devstack plugin didn't write any admin credential to config | 02:06 |
hongbin | But you can modify it to do so. | 02:06 |
eliqiao | hongbin: thanks, it really helps, thanks for your help. | 02:06 |
eliqiao | I will do some tests | 02:06 |
openstackgerrit | Yuiko Takada proposed openstack/magnum: Pass environment variables of proxy to tox https://review.openstack.org/191600 | 02:06 |
hongbin | You can reference this folder if you want to alter devstack behaviour https://github.com/openstack/magnum/tree/master/devstack | 02:07 |
eliqiao | hongbin: can you put some comments on that patch about the usage ? | 02:07 |
hongbin | Yes, I can | 02:07 |
eliqiao | hongbin: yeah, I see that docs | 02:07 |
eliqiao | hongbin: thanks again. | 02:07 |
*** dimsum__ has quit IRC | 02:22 | |
openstackgerrit | Merged openstack/magnum: Fix an error on generating configs https://review.openstack.org/191529 | 02:27 |
*** yuntong1 has quit IRC | 02:27 | |
*** kebray has joined #openstack-containers | 02:27 | |
*** dimsum__ has joined #openstack-containers | 02:36 | |
*** vilobhmm has joined #openstack-containers | 02:55 | |
*** dimsum__ has quit IRC | 02:58 | |
*** eghobo has joined #openstack-containers | 02:58 | |
*** snrism has quit IRC | 03:03 | |
*** julim has quit IRC | 03:06 | |
*** snrism has joined #openstack-containers | 03:07 | |
*** snrism has quit IRC | 03:11 | |
*** eghobo has quit IRC | 03:11 | |
*** dboik has joined #openstack-containers | 03:15 | |
*** Tango has joined #openstack-containers | 03:15 | |
*** eghobo has joined #openstack-containers | 03:15 | |
*** tobe has joined #openstack-containers | 03:20 | |
*** eghobo has quit IRC | 03:21 | |
*** eghobo has joined #openstack-containers | 03:27 | |
*** daneyon has quit IRC | 03:29 | |
*** coolsvap|afk is now known as coolsvap | 03:32 | |
*** eghobo has quit IRC | 03:35 | |
*** logan2 has quit IRC | 03:35 | |
*** hongbin has quit IRC | 03:48 | |
*** vilobhmm has quit IRC | 03:55 | |
openstackgerrit | Motohiro/Yuanying Otsuka proposed openstack/python-magnumclient: Pass environment variables of proxy to tox https://review.openstack.org/191626 | 03:56 |
*** dimsum__ has joined #openstack-containers | 03:58 | |
*** eghobo has joined #openstack-containers | 04:02 | |
*** dimsum__ has quit IRC | 04:03 | |
*** chandankumar has joined #openstack-containers | 04:06 | |
*** achanda has joined #openstack-containers | 04:07 | |
*** achanda has quit IRC | 04:17 | |
*** unicell has quit IRC | 04:34 | |
*** unicell has joined #openstack-containers | 04:35 | |
*** yuanying has joined #openstack-containers | 04:39 | |
*** yuanying_ has quit IRC | 04:42 | |
*** sdake_ has joined #openstack-containers | 04:56 | |
*** snrism has joined #openstack-containers | 04:57 | |
*** eghobo_ has joined #openstack-containers | 04:58 | |
*** sdake has quit IRC | 04:59 | |
*** eghobo has quit IRC | 05:01 | |
*** snrism has quit IRC | 05:27 | |
*** adrian_otto has joined #openstack-containers | 05:30 | |
*** snrism has joined #openstack-containers | 05:31 | |
*** eghobo_ has quit IRC | 05:35 | |
*** eghobo has joined #openstack-containers | 05:39 | |
openstackgerrit | ShaoHe Feng proposed openstack/magnum: first policy check for bay https://review.openstack.org/185501 | 05:43 |
openstackgerrit | ShaoHe Feng proposed openstack/magnum: enhancement for the common policy enforce https://review.openstack.org/190140 | 05:43 |
*** kebray has quit IRC | 05:43 | |
openstackgerrit | ShaoHe Feng proposed openstack/magnum: enhancement for the common policy enforce https://review.openstack.org/190140 | 05:44 |
openstackgerrit | ShaoHe Feng proposed openstack/magnum: first policy check for bay https://review.openstack.org/185501 | 05:45 |
*** yuntong has joined #openstack-containers | 05:46 | |
*** belmoreira has joined #openstack-containers | 05:46 | |
*** bradjones has quit IRC | 05:46 | |
openstackgerrit | ShaoHe Feng proposed openstack/magnum: first policy check for bay https://review.openstack.org/185501 | 05:48 |
openstackgerrit | ShaoHe Feng proposed openstack/magnum: enhancement for the common policy enforce https://review.openstack.org/190140 | 05:48 |
*** bradjones has joined #openstack-containers | 05:49 | |
*** bradjones has quit IRC | 05:49 | |
*** bradjones has joined #openstack-containers | 05:49 | |
*** fangfenghua has joined #openstack-containers | 05:53 | |
openstackgerrit | yuntongjin proposed openstack/magnum: first policy check for bay https://review.openstack.org/185501 | 05:54 |
*** yuntong1 has joined #openstack-containers | 05:56 | |
*** yuntong has quit IRC | 05:57 | |
*** fangfenghua has quit IRC | 05:58 | |
*** snrism_ has joined #openstack-containers | 06:00 | |
*** snrism has quit IRC | 06:01 | |
*** Kennan2 has joined #openstack-containers | 06:03 | |
*** Kennan has quit IRC | 06:04 | |
*** eghobo has quit IRC | 06:07 | |
*** yuanying_ has joined #openstack-containers | 06:07 | |
*** sthillma has joined #openstack-containers | 06:08 | |
*** sthillma_ has joined #openstack-containers | 06:09 | |
*** yuanying has quit IRC | 06:10 | |
*** yuanying_ has quit IRC | 06:11 | |
*** vilobhmm has joined #openstack-containers | 06:12 | |
*** sthillma has quit IRC | 06:13 | |
*** sthillma_ is now known as sthillma | 06:13 | |
*** Kennan2 is now known as Kennan | 06:14 | |
*** yuanying has joined #openstack-containers | 06:15 | |
*** vilobhmm has quit IRC | 06:16 | |
*** vilobhmm has joined #openstack-containers | 06:17 | |
*** tobe has quit IRC | 06:44 | |
*** adrian_otto has quit IRC | 06:45 | |
*** sdake has joined #openstack-containers | 06:56 | |
*** sdake has quit IRC | 06:57 | |
*** sdake has joined #openstack-containers | 06:57 | |
*** snrism has joined #openstack-containers | 06:57 | |
*** snrism_ has quit IRC | 06:57 | |
*** sdake_ has quit IRC | 07:00 | |
*** tobe has joined #openstack-containers | 07:07 | |
*** fangfenghua has joined #openstack-containers | 07:08 | |
openstackgerrit | ShaoHe Feng proposed openstack/magnum: first policy check for bay https://review.openstack.org/185501 | 07:12 |
*** fangfenghua has quit IRC | 07:13 | |
*** sthillma has quit IRC | 07:21 | |
*** destiny has joined #openstack-containers | 07:27 | |
*** BertrandN has joined #openstack-containers | 07:33 | |
*** nshaikh has joined #openstack-containers | 07:35 | |
*** sdake has quit IRC | 08:06 | |
*** yuanying has quit IRC | 08:09 | |
*** vilobhmm has quit IRC | 08:11 | |
*** alex_klimov has joined #openstack-containers | 08:20 | |
*** oro has joined #openstack-containers | 08:21 | |
*** belmoreira has quit IRC | 08:22 | |
*** snrism has quit IRC | 09:16 | |
*** sankarshan_ is now known as sankarshan_away | 09:24 | |
*** alex_klimov has quit IRC | 09:34 | |
*** oro has quit IRC | 09:55 | |
openstackgerrit | Tom Cammann proposed openstack/magnum: Backport "Avoid usage of deprecated properties" https://review.openstack.org/186318 | 10:00 |
openstackgerrit | Tom Cammann proposed openstack/magnum: Backport "Cleanup the templates" https://review.openstack.org/186319 | 10:01 |
openstackgerrit | Tom Cammann proposed openstack/magnum: Backport multiple template fixes https://review.openstack.org/186320 | 10:01 |
*** Kennan2 has joined #openstack-containers | 10:03 | |
*** Kennan has quit IRC | 10:05 | |
*** sankarshan_away is now known as sankarshan_ | 10:07 | |
*** dimsum__ has joined #openstack-containers | 10:09 | |
*** alex_klimov has joined #openstack-containers | 10:17 | |
*** Drago has quit IRC | 10:21 | |
*** lan has quit IRC | 10:41 | |
*** lan has joined #openstack-containers | 10:42 | |
*** tobe has quit IRC | 11:25 | |
*** oro has joined #openstack-containers | 11:53 | |
*** sdake has joined #openstack-containers | 11:54 | |
*** sdake has quit IRC | 11:55 | |
*** sdake has joined #openstack-containers | 11:55 | |
*** bradjones has quit IRC | 12:13 | |
*** bradjones has joined #openstack-containers | 12:15 | |
*** bradjones has quit IRC | 12:15 | |
*** bradjones has joined #openstack-containers | 12:15 | |
*** belmoreira has joined #openstack-containers | 12:21 | |
*** EricGonczer_ has joined #openstack-containers | 12:48 | |
*** EricGonczer_ has quit IRC | 12:49 | |
*** dimsum__ has quit IRC | 12:52 | |
*** chandankumar has quit IRC | 12:52 | |
*** dimsum__ has joined #openstack-containers | 12:54 | |
*** dimsum__ is now known as dims | 12:55 | |
*** dims has quit IRC | 12:55 | |
*** dims has joined #openstack-containers | 12:56 | |
*** oro has quit IRC | 12:57 | |
*** oro has joined #openstack-containers | 12:58 | |
*** julim has joined #openstack-containers | 12:58 | |
*** jjlehr has joined #openstack-containers | 12:59 | |
*** rpothier has joined #openstack-containers | 13:01 | |
*** Marga_ has joined #openstack-containers | 13:08 | |
*** Marga_ has quit IRC | 13:11 | |
*** dane_leblanc has joined #openstack-containers | 13:11 | |
*** Marga_ has joined #openstack-containers | 13:11 | |
*** rlrevell has joined #openstack-containers | 13:22 | |
*** dboik has quit IRC | 13:27 | |
*** dboik has joined #openstack-containers | 13:48 | |
*** oro has quit IRC | 13:49 | |
*** EricGonczer_ has joined #openstack-containers | 14:22 | |
*** chandankumar has joined #openstack-containers | 14:22 | |
*** openstackgerrit has quit IRC | 14:24 | |
*** openstackgerrit has joined #openstack-containers | 14:24 | |
*** fangfenghua has joined #openstack-containers | 14:27 | |
*** achanda has joined #openstack-containers | 14:27 | |
*** nshaikh has quit IRC | 14:29 | |
*** fangfenghua has quit IRC | 14:31 | |
*** unicell1 has joined #openstack-containers | 14:33 | |
*** unicell has quit IRC | 14:33 | |
*** zsais has joined #openstack-containers | 14:33 | |
*** coolsvap is now known as coolsvap|afk | 14:37 | |
*** achanda has quit IRC | 14:42 | |
*** sankarshan_ is now known as sankarshan_away | 14:47 | |
*** muralia has joined #openstack-containers | 14:47 | |
*** kebray has joined #openstack-containers | 14:52 | |
*** achanda has joined #openstack-containers | 14:53 | |
*** Drago has joined #openstack-containers | 14:56 | |
*** Drago has quit IRC | 14:56 | |
*** Drago has joined #openstack-containers | 14:56 | |
*** kebray has quit IRC | 14:56 | |
*** achanda_ has joined #openstack-containers | 14:58 | |
*** snrism has joined #openstack-containers | 14:59 | |
*** tcammann has joined #openstack-containers | 14:59 | |
*** achanda has quit IRC | 15:00 | |
tcammann | Could the Magnum core team have a look at the outstanding reviews on heat-coe-templates repo | 15:00 |
tcammann | https://review.openstack.org/#/q/status:open+project:stackforge/heat-coe-templates,n,z | 15:00 |
tcammann | You have +2 rights on it now | 15:00 |
tcammann | If we could land the backported patches that have gone into Magnum so far that would be great | 15:01 |
*** kebray has joined #openstack-containers | 15:15 | |
*** belmoreira has quit IRC | 15:18 | |
*** kebray has quit IRC | 15:21 | |
*** sdake_ has joined #openstack-containers | 15:23 | |
*** BertrandN has quit IRC | 15:24 | |
*** sdake has quit IRC | 15:27 | |
*** adrian_otto has joined #openstack-containers | 15:30 | |
*** pradk has joined #openstack-containers | 15:33 | |
*** hongbin has joined #openstack-containers | 15:36 | |
*** kebray has joined #openstack-containers | 15:37 | |
*** dane_leblanc has quit IRC | 15:39 | |
*** dane_leblanc has joined #openstack-containers | 15:40 | |
*** kebray has quit IRC | 15:42 | |
*** pradk has quit IRC | 15:43 | |
*** eghobo has joined #openstack-containers | 15:46 | |
*** chandankumar has quit IRC | 15:47 | |
*** alex_klimov has quit IRC | 15:47 | |
*** eghobo has quit IRC | 15:48 | |
*** kebray has joined #openstack-containers | 15:50 | |
*** Drago has quit IRC | 15:52 | |
*** eghobo has joined #openstack-containers | 15:58 | |
*** snrism has quit IRC | 16:02 | |
*** adrian_otto has quit IRC | 16:04 | |
*** Drago has joined #openstack-containers | 16:04 | |
*** Drago has quit IRC | 16:04 | |
*** Drago has joined #openstack-containers | 16:04 | |
*** sdake has joined #openstack-containers | 16:11 | |
*** eghobo has quit IRC | 16:12 | |
*** sdake_ has quit IRC | 16:14 | |
*** eghobo has joined #openstack-containers | 16:18 | |
*** unicell1 has quit IRC | 16:19 | |
*** daneyon has joined #openstack-containers | 16:26 | |
*** daneyon has quit IRC | 16:26 | |
*** daneyon has joined #openstack-containers | 16:27 | |
*** vilobhmm has joined #openstack-containers | 16:30 | |
*** kebray has quit IRC | 16:31 | |
openstackgerrit | Ton Ngo proposed openstack/magnum: WIP: Configure Kubernetes to interface with Neutron https://review.openstack.org/191878 | 16:36 |
*** fangfenghua has joined #openstack-containers | 16:37 | |
*** fangfenghua has quit IRC | 16:42 | |
*** jjlehr has quit IRC | 16:46 | |
*** rlrevell has quit IRC | 16:49 | |
*** unicell has joined #openstack-containers | 16:52 | |
*** harshs has joined #openstack-containers | 17:02 | |
*** rlrevell has joined #openstack-containers | 17:06 | |
*** snrism has joined #openstack-containers | 17:12 | |
*** mismith has joined #openstack-containers | 17:17 | |
*** nihilifer has joined #openstack-containers | 17:17 | |
mismith | Hi all. We're looking at using Magnum with Juno/Kilo and I wanted to check with you folks on the status of RDO packaging for Magnum. Anybody already working on that? | 17:18 |
hongbin | mismith: As far as I know, nobody has worked on the RDO package. | 17:20 |
mismith | Thanks. Do you known if each Openstack project have someone do their packaging and then the RDO folks slurp that in, or does some RDO guy do packaging for all Openstack projects? | 17:22 |
mismith | I might be able to spend some cycles helping with RDO packaging for Magnum if each project does their own | 17:23 |
*** jjlehr has joined #openstack-containers | 17:23 | |
*** adrian_otto has joined #openstack-containers | 17:25 | |
*** dims has quit IRC | 17:27 | |
*** dims has joined #openstack-containers | 17:28 | |
mismith | I've added Magnum RDO packaging as an agenda item on the Wiki for tomorrow's meeting. I'll join in the discussion tomorrow. Thanks | 17:34 |
*** sthillma has joined #openstack-containers | 17:37 | |
*** Marga_ has quit IRC | 17:42 | |
*** fangfenghua has joined #openstack-containers | 17:43 | |
*** chandankumar has joined #openstack-containers | 17:46 | |
*** muralia1 has joined #openstack-containers | 17:47 | |
*** fangfenghua has quit IRC | 17:48 | |
*** muralia has quit IRC | 17:50 | |
openstackgerrit | Hongbin Lu proposed openstack/magnum: Add documentation for how to scale a bay https://review.openstack.org/191539 | 17:52 |
*** rlrevell1 has joined #openstack-containers | 17:55 | |
*** rlrevell has quit IRC | 17:57 | |
*** Marga_ has joined #openstack-containers | 18:19 | |
*** kebray has joined #openstack-containers | 18:27 | |
*** sdake_ has joined #openstack-containers | 18:29 | |
*** wznoinsk has quit IRC | 18:30 | |
*** wznoinsk has joined #openstack-containers | 18:32 | |
*** sdake has quit IRC | 18:34 | |
*** Marga_ has quit IRC | 18:35 | |
*** Marga_ has joined #openstack-containers | 18:36 | |
*** achanda_ has quit IRC | 18:40 | |
*** fangfenghua has joined #openstack-containers | 18:50 | |
*** Marga_ has quit IRC | 18:54 | |
*** fangfenghua has quit IRC | 18:54 | |
*** Marga_ has joined #openstack-containers | 18:54 | |
*** muralia1 has quit IRC | 19:00 | |
*** muralia has joined #openstack-containers | 19:01 | |
*** snrism has quit IRC | 19:03 | |
*** adrian_otto has quit IRC | 19:08 | |
*** Marga_ has quit IRC | 19:30 | |
*** Marga_ has joined #openstack-containers | 19:30 | |
*** chandankumar has quit IRC | 19:49 | |
*** achanda has joined #openstack-containers | 19:50 | |
*** fangfenghua has joined #openstack-containers | 19:54 | |
*** sdake has joined #openstack-containers | 19:54 | |
*** muralia has quit IRC | 19:57 | |
*** sdake_ has quit IRC | 19:58 | |
*** daneyon_ has joined #openstack-containers | 19:59 | |
*** fangfenghua has quit IRC | 19:59 | |
*** sdake_ has joined #openstack-containers | 20:01 | |
*** daneyon has quit IRC | 20:02 | |
*** sdake has quit IRC | 20:05 | |
*** snrism has joined #openstack-containers | 20:15 | |
*** belmoreira has joined #openstack-containers | 20:16 | |
*** dboik has quit IRC | 20:23 | |
*** adrian_otto has joined #openstack-containers | 20:23 | |
*** Marga_ has quit IRC | 20:24 | |
*** Marga_ has joined #openstack-containers | 20:24 | |
*** kebray has quit IRC | 20:30 | |
*** harshs has quit IRC | 20:30 | |
*** harshs has joined #openstack-containers | 20:31 | |
*** achanda has quit IRC | 20:34 | |
*** achanda_ has joined #openstack-containers | 20:34 | |
*** julim has quit IRC | 20:37 | |
*** nihilifer has quit IRC | 20:38 | |
*** sdake has joined #openstack-containers | 20:44 | |
*** achanda_ has quit IRC | 20:46 | |
*** joffter has joined #openstack-containers | 20:46 | |
*** kebray has joined #openstack-containers | 20:46 | |
*** kebray has quit IRC | 20:47 | |
*** muralia has joined #openstack-containers | 20:47 | |
*** sdake_ has quit IRC | 20:48 | |
*** kebray has joined #openstack-containers | 20:50 | |
*** runcom has joined #openstack-containers | 20:52 | |
*** Marga_ has quit IRC | 20:55 | |
*** Marga_ has joined #openstack-containers | 20:55 | |
*** rlrevell1 has quit IRC | 20:56 | |
*** dims_ has joined #openstack-containers | 20:56 | |
*** fangfenghua has joined #openstack-containers | 20:59 | |
*** dims has quit IRC | 21:00 | |
*** dims_ has quit IRC | 21:00 | |
*** fangfenghua has quit IRC | 21:04 | |
*** mismith has left #openstack-containers | 21:06 | |
*** rpothier has quit IRC | 21:14 | |
*** snrism has quit IRC | 21:15 | |
*** alex_klimov has joined #openstack-containers | 21:22 | |
*** Drago has quit IRC | 21:25 | |
*** Drago has joined #openstack-containers | 21:30 | |
*** EricGonczer_ has quit IRC | 21:33 | |
*** dims has joined #openstack-containers | 21:35 | |
*** belmoreira has quit IRC | 21:42 | |
*** snrism has joined #openstack-containers | 21:48 | |
*** snrism has quit IRC | 21:52 | |
*** snrism has joined #openstack-containers | 21:52 | |
Tango | sdake: ping | 21:58 |
*** eghobo has quit IRC | 21:59 | |
*** oro has joined #openstack-containers | 21:59 | |
*** eghobo has joined #openstack-containers | 22:04 | |
*** fangfenghua has joined #openstack-containers | 22:05 | |
*** oro has quit IRC | 22:08 | |
*** fangfenghua has quit IRC | 22:09 | |
*** Marga_ has quit IRC | 22:18 | |
*** Marga_ has joined #openstack-containers | 22:19 | |
*** kebray has quit IRC | 22:19 | |
*** zsais has quit IRC | 22:22 | |
*** alex_klimov has quit IRC | 22:24 | |
*** adrian_otto has quit IRC | 22:25 | |
*** adrian_otto has joined #openstack-containers | 22:25 | |
*** eghobo has quit IRC | 22:30 | |
*** david-lyle has quit IRC | 22:31 | |
*** dims has quit IRC | 22:34 | |
*** eghobo has joined #openstack-containers | 22:44 | |
openstackgerrit | Dane LeBlanc proposed openstack/magnum: Modify magnum api context to use user_name and project_name https://review.openstack.org/190801 | 22:50 |
*** hongbin has quit IRC | 22:51 | |
*** rlrevell has joined #openstack-containers | 22:52 | |
*** sthillma has quit IRC | 23:01 | |
*** sthillma has joined #openstack-containers | 23:01 | |
*** dims has joined #openstack-containers | 23:03 | |
*** dims has quit IRC | 23:03 | |
*** dims has joined #openstack-containers | 23:04 | |
*** Marga_ has quit IRC | 23:05 | |
*** Marga_ has joined #openstack-containers | 23:06 | |
*** dboik has joined #openstack-containers | 23:08 | |
*** rlrevell has quit IRC | 23:11 | |
*** mfalatic has joined #openstack-containers | 23:11 | |
*** david-lyle has joined #openstack-containers | 23:11 | |
*** yuanying has joined #openstack-containers | 23:17 | |
*** jjlehr has quit IRC | 23:21 | |
openstackgerrit | Merged openstack/magnum: Modify magnum api context to use user_name and project_name https://review.openstack.org/190801 | 23:26 |
*** daneyon_ has quit IRC | 23:43 | |
openstackgerrit | Merged openstack/magnum: Backport "Avoid usage of deprecated properties" https://review.openstack.org/186318 | 23:48 |
*** Marga_ has quit IRC | 23:49 | |
*** Marga_ has joined #openstack-containers | 23:49 | |
*** dboik_ has joined #openstack-containers | 23:51 | |
openstackgerrit | Merged openstack/magnum: Backport "Cleanup the templates" https://review.openstack.org/186319 | 23:51 |
*** dboik has quit IRC | 23:54 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!