*** guoshan has quit IRC | 00:10 | |
*** guoshan has joined #senlin | 00:11 | |
*** guoshan_ has joined #senlin | 00:15 | |
*** guoshan has quit IRC | 00:15 | |
*** guoshan_ has quit IRC | 00:45 | |
*** ruijie has joined #senlin | 00:50 | |
*** zhurong has joined #senlin | 01:23 | |
*** guoshan has joined #senlin | 01:30 | |
*** yanyanhu has joined #senlin | 01:34 | |
xuhaiwei | so the meeting time is unchanged? | 01:50 |
---|---|---|
xuhaiwei | lixinhui, morning | 01:51 |
yanyanhu | xuhaiwei, yes | 01:53 |
yanyanhu | still the current time slot | 01:54 |
xuhaiwei | got it, yanyanhu | 01:54 |
lixinhui | morning, xuhaiwei | 01:54 |
xuhaiwei | lixinhui, you have issues to discuss yesterday? | 01:55 |
lixinhui | I pinged you yesterday for more information about your owrk session of tacker | 01:55 |
lixinhui | could you share me the agenda you wanna discuss that morning? | 01:55 |
lixinhui | lxinhui@vmware.com | 01:55 |
xuhaiwei | lixinhui, https://etherpad.openstack.org/p/tacker-ocata-summit | 01:56 |
xuhaiwei | 11:50am on 10/28 | 01:56 |
lixinhui | Topic-1: VMware / vCloud, Public Cloud | 01:57 |
lixinhui | Beyond OpenStack | 01:57 |
lixinhui | VMware: | 01:57 |
lixinhui | VMware: oslo_vmware, libcloud | 01:57 |
lixinhui | deployment options? compute nodes | 01:57 |
lixinhui | Networking options - vmware nsx plugin, dvs driver | 01:57 |
lixinhui | Image formats -ovf | 01:57 |
lixinhui | Nova integration - testing options for Tacker - OpenStack CI infra has VMware ? or VMware 3rd party CI ? | 01:57 |
lixinhui | Tacker feature compatibility with nova integrated vmware driver -scaling, monitoring, mgmt driver, auto network, auto flavor - matrix??? | 01:57 |
lixinhui | deployment guide | 01:57 |
lixinhui | thanks thanks | 01:57 |
xuhaiwei | what's this? lixinhui | 01:58 |
lixinhui | There is a fishbowl from VMware engineer to discuss | 01:58 |
lixinhui | integration with vmware driver | 01:58 |
xuhaiwei | when is your talk? | 01:58 |
lixinhui | from one PA guy of vmware | 01:58 |
lixinhui | So I am thinking if we can colliborate by this chance | 01:58 |
openstackgerrit | Qiming Teng proposed openstack/senlin: Versioned object for cluster update request https://review.openstack.org/388281 | 01:59 |
lixinhui | xuhaiwei, the place of my presntation is still tbd | 01:59 |
lixinhui | will send you once settle down | 01:59 |
xuhaiwei | thanks | 01:59 |
lixinhui | :) | 02:00 |
openstackgerrit | Merged openstack/senlin: Add ClusterGetRequest object https://review.openstack.org/387893 | 02:03 |
openstackgerrit | Merged openstack/senlin: Engine support to cluster_get2 https://review.openstack.org/387894 | 02:18 |
openstackgerrit | Merged openstack/senlin: API support to cluster_get2 https://review.openstack.org/387912 | 02:18 |
yanyanhu | hi, Qiming, around? | 02:39 |
yanyanhu | found the reason that the letter 'L' of 'location' field name of zaqar service resp is low-case | 02:41 |
yanyanhu | that is because the wsgi framework 'falcon' zaqar is using will build case-insensitive headers | 02:42 |
yanyanhu | therefore, the name string of headers fields will be changed to low case by default | 02:43 |
yanyanhu | after checking the rfc2616 doc, I found it announces that the header field names are case-insensitive | 02:44 |
yanyanhu | although the example given is a string capitalized | 02:45 |
yanyanhu | so maybe 'location' should also be treated as an acceptable field name string? | 02:46 |
Qiming | not sure | 02:46 |
Qiming | looking | 02:46 |
yanyanhu | https://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.2 | 02:46 |
yanyanhu | here is the section about headers | 02:46 |
yanyanhu | some people complained falcon on this issue | 02:46 |
Qiming | according to http://git.openstack.org/cgit/openstack/api-wg/tree/guidelines/http.rst | 02:47 |
yanyanhu | about always changes header field name to low-case | 02:47 |
Qiming | it should be Location | 02:47 |
Qiming | alright, looks like a falcon problem | 02:47 |
yanyanhu | yes, if so, either falcon need to be fixed, or zaqar need to handle this issue by their own by overriding the headers | 02:48 |
yanyanhu | https://github.com/falconry/falcon/issues/578 | 02:48 |
yanyanhu | this complaining thread is still open | 02:49 |
yanyanhu | so I guess it could cost a while for this issue been fixed in falcon | 02:49 |
Qiming | rfc2616 didn't specify case insensitive? | 02:50 |
yanyanhu | it says "Field names are case-insensitive. " | 02:50 |
Qiming | that is about 'Vary' | 02:50 |
yanyanhu | in section 4.2 | 02:50 |
*** yuanying has quit IRC | 02:51 | |
yanyanhu | vary is? | 02:51 |
Qiming | okay, I was looking at section 14 | 02:52 |
Qiming | wrong section | 02:52 |
Qiming | one workaround is to hack sdk | 02:52 |
yanyanhu | Qiming, that is possible. just since api-wg provides stricter rule for this, maybe zaqar should follow it as well | 02:52 |
yanyanhu | just I feel it could cost a while for them to find a proper solution | 02:53 |
Qiming | even zaqar does say 'Location', falcon will convert it to 'location' | 02:53 |
yanyanhu | yes | 02:53 |
yanyanhu | it is | 02:53 |
Qiming | so nothing more zaqar can do | 02:53 |
Qiming | http://git.openstack.org/cgit/openstack/python-openstacksdk/tree/openstack/resource2.py#n226 | 02:54 |
yanyanhu | Qiming, falcon also provide ability to override headers, I'm still testing it. not sure whether it can address this issue. | 02:54 |
yanyanhu | if not, there is nothing zaqar can do... | 02:54 |
*** yuanying has joined #senlin | 02:54 | |
yanyanhu | or maybe we let sdk accept both 'Location' and 'location' temporarily and leave a comment there | 02:55 |
yanyanhu | to explain this workaround | 02:55 |
Qiming | yes | 02:55 |
Qiming | sounds like a plan | 02:55 |
*** guoshan has quit IRC | 02:55 | |
yanyanhu | ok, will try to figure out this issue by proposing patch to sdk | 02:56 |
Qiming | looks not that straightforward | 02:56 |
*** guoshan has joined #senlin | 02:58 | |
Qiming | also I noticed the integration gate is failing | 02:58 |
yanyanhu | Qiming, just test set_header method of falcon response class, it can't address this issue... | 02:58 |
Qiming | yes | 02:58 |
yanyanhu | senlin's gate? will check it | 02:59 |
yanyanhu | Qiming, looks like gate's problem, dib-utils installation failed. I guess it is a temporary issue. The gate works correctly now. https://review.openstack.org/#/c/388281/ | 03:04 |
Qiming | okay | 03:04 |
yanyanhu | oh, I recalled I saw a warning about gate yesterday night | 03:04 |
Qiming | it is about some pyparse package problems | 03:05 |
yanyanhu | will look at it if failure happen again | 03:05 |
yanyanhu | ok | 03:05 |
*** elynn has joined #senlin | 03:15 | |
openstackgerrit | Qiming Teng proposed openstack/senlin: Engine support for cluster-update2 https://review.openstack.org/388300 | 03:15 |
*** elynn has quit IRC | 03:20 | |
*** elynn has joined #senlin | 03:21 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/senlin: Updated from global requirements https://review.openstack.org/388304 | 03:34 |
*** lixinhui has quit IRC | 03:37 | |
openstackgerrit | Qiming Teng proposed openstack/senlin: API support for cluster-update2 https://review.openstack.org/388306 | 03:44 |
openstackgerrit | Qiming Teng proposed openstack/senlin: API support for cluster-update2 https://review.openstack.org/388306 | 03:48 |
*** yuanying has quit IRC | 03:49 | |
*** guoshan has quit IRC | 03:57 | |
*** elynn has quit IRC | 04:29 | |
openstackgerrit | Qiming Teng proposed openstack/senlin: API support for cluster-update2 https://review.openstack.org/388306 | 04:48 |
*** guoshan has joined #senlin | 04:58 | |
*** yuanying has joined #senlin | 05:02 | |
*** guoshan has quit IRC | 05:03 | |
openstackgerrit | RUIJIE YUAN proposed openstack/senlin: Api Ref of cluster replace nodes https://review.openstack.org/374038 | 05:21 |
openstackgerrit | Qiming Teng proposed openstack/senlin: Add IdentityList field type https://review.openstack.org/388397 | 05:50 |
*** shu-mutou is now known as shu-mutou-AWAY | 05:51 | |
*** guoshan has joined #senlin | 05:59 | |
*** guoshan has quit IRC | 06:03 | |
*** lixinhui has joined #senlin | 06:07 | |
*** guoshan has joined #senlin | 06:27 | |
openstackgerrit | RUIJIE YUAN proposed openstack/senlin: Api Ref of cluster replace nodes https://review.openstack.org/374038 | 06:42 |
openstackgerrit | Yanyan Hu proposed openstack/senlin: [WIP]Address a TODO in message receiver https://review.openstack.org/388465 | 06:49 |
*** elynn has joined #senlin | 06:54 | |
*** elynn has quit IRC | 06:58 | |
*** elynn has joined #senlin | 06:59 | |
openstackgerrit | Merged openstack/senlin: Api Ref of cluster replace nodes https://review.openstack.org/374038 | 07:06 |
openstackgerrit | Shu Muto proposed openstack/senlin-dashboard: Fix typo https://review.openstack.org/388488 | 07:24 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/senlin-dashboard: Imported Translations from Zanata https://review.openstack.org/388491 | 07:25 |
openstackgerrit | miaohb proposed openstack/senlin: Add filters "type" and "name" for cluster binding list https://review.openstack.org/388505 | 07:39 |
openstackgerrit | miaohb proposed openstack/python-senlinclient: Add fiters "policy_type" and "policy_name" for cluster binding list https://review.openstack.org/388509 | 07:47 |
openstackgerrit | Yanyan Hu proposed openstack/senlin: Address a TODO in message receiver https://review.openstack.org/388465 | 07:48 |
*** yanyanhu has quit IRC | 08:00 | |
*** yanyanhu has joined #senlin | 08:00 | |
openstackgerrit | Kenji Ishii proposed openstack/senlin-dashboard: Add delete action for angular profile panel https://review.openstack.org/387827 | 08:03 |
*** yanyanhu has quit IRC | 08:08 | |
*** yanyanhu has joined #senlin | 08:09 | |
*** yanyanhu has quit IRC | 08:22 | |
*** yanyanhu has joined #senlin | 08:23 | |
*** yanyanhu has quit IRC | 08:24 | |
openstackgerrit | Shu Muto proposed openstack/senlin-dashboard: Fix typo https://review.openstack.org/388488 | 08:30 |
*** yanyanhu has joined #senlin | 08:35 | |
*** yanyanhu has quit IRC | 08:35 | |
*** yanyanhu has joined #senlin | 08:42 | |
*** yanyanhu has quit IRC | 08:42 | |
openstackgerrit | Shu Muto proposed openstack/senlin-dashboard: Add delete action for angular profile panel https://review.openstack.org/387827 | 08:48 |
*** yanyanhu has joined #senlin | 08:50 | |
*** yuanying_ has joined #senlin | 08:50 | |
*** yuanying has quit IRC | 08:52 | |
openstackgerrit | Shu Muto proposed openstack/senlin-dashboard: Add setting file for enabling Angularized panel https://review.openstack.org/387265 | 08:53 |
openstackgerrit | Merged openstack/senlin: Versioned object for cluster update request https://review.openstack.org/388281 | 08:54 |
openstackgerrit | Qiming Teng proposed openstack/senlin: Add IdentityList field type https://review.openstack.org/388397 | 08:54 |
openstackgerrit | Qiming Teng proposed openstack/senlin: Add IdentityList field type https://review.openstack.org/388397 | 08:57 |
openstackgerrit | Qiming Teng proposed openstack/senlin: ClusterAddNodes request object https://review.openstack.org/388558 | 08:57 |
openstackgerrit | Merged openstack/senlin: Engine support for cluster-update2 https://review.openstack.org/388300 | 09:03 |
openstackgerrit | Merged openstack/senlin: API support for cluster-update2 https://review.openstack.org/388306 | 09:03 |
*** yuanying has joined #senlin | 09:05 | |
*** yuanying_ has quit IRC | 09:08 | |
openstackgerrit | Shu Muto proposed openstack/senlin-dashboard: Angularize node tables https://review.openstack.org/387321 | 09:17 |
openstackgerrit | miaohb proposed openstack/python-senlinclient: Add fiters "policy_type" and "policy_name" for cluster binding list https://review.openstack.org/388509 | 09:18 |
*** yanyanhu has quit IRC | 09:19 | |
*** yanyanhu has joined #senlin | 09:20 | |
*** yanyanhu has quit IRC | 09:21 | |
openstackgerrit | Qiming Teng proposed openstack/senlin: Add IdentityList field type https://review.openstack.org/388397 | 09:25 |
*** yanyanhu has joined #senlin | 09:26 | |
openstackgerrit | miaohb proposed openstack/python-senlinclient: Add fiters "policy_type" and "policy_name" for cluster binding list https://review.openstack.org/388509 | 09:27 |
openstackgerrit | Qiming Teng proposed openstack/senlin: ClusterAddNodes request object https://review.openstack.org/388558 | 09:27 |
openstackgerrit | miaohb proposed openstack/python-senlinclient: Add fiters "policy_type" and "policy_name" for policy binding list https://review.openstack.org/388509 | 09:31 |
openstackgerrit | Qiming Teng proposed openstack/senlin: Engine support for cluster-add-nodes2 https://review.openstack.org/388582 | 09:35 |
*** zhurong has quit IRC | 09:38 | |
openstackgerrit | Merged openstack/senlin-dashboard: Imported Translations from Zanata https://review.openstack.org/388491 | 09:56 |
*** yanyanhu has quit IRC | 10:05 | |
*** yuanying_ has joined #senlin | 10:07 | |
*** yuanying has quit IRC | 10:09 | |
openstackgerrit | XueFeng Liu proposed openstack/python-senlinclient: profile's name also can be use in some commands https://review.openstack.org/388595 | 10:15 |
*** guoshan has quit IRC | 10:20 | |
openstackgerrit | Merged openstack/senlin: Updated from global requirements https://review.openstack.org/388304 | 10:25 |
*** yuanying has joined #senlin | 10:34 | |
*** yuanying_ has quit IRC | 10:36 | |
*** guoshan has joined #senlin | 10:37 | |
*** yuanying has quit IRC | 10:58 | |
*** elynn has quit IRC | 11:25 | |
*** zhurong has joined #senlin | 11:50 | |
openstackgerrit | Merged openstack/senlin-dashboard: Fix typo https://review.openstack.org/388488 | 11:52 |
openstackgerrit | Merged openstack/senlin-dashboard: Return APIResourceWrapper object for senlin api https://review.openstack.org/386943 | 11:53 |
openstackgerrit | Merged openstack/python-senlinclient: Fix error in "action list" https://review.openstack.org/376283 | 11:56 |
openstackgerrit | XueFeng Liu proposed openstack/python-senlinclient: refactor atcion take_action https://review.openstack.org/384373 | 12:28 |
openstackgerrit | Qiming Teng proposed openstack/senlin: API support to cluster-add-nodes2 https://review.openstack.org/388667 | 12:28 |
openstackgerrit | Qiming Teng proposed openstack/senlin: [WIP] test switching to objectified RPC https://review.openstack.org/388670 | 12:31 |
openstackgerrit | XueFeng Liu proposed openstack/python-senlinclient: Rework take_action function in class ListAction https://review.openstack.org/384373 | 13:15 |
openstackgerrit | Merged openstack/senlin: Add IdentityList field type https://review.openstack.org/388397 | 13:51 |
openstackgerrit | Qiming Teng proposed openstack/senlin: Validation when cluster create missing cluster key https://review.openstack.org/388717 | 13:55 |
openstackgerrit | Merged openstack/senlin: ClusterAddNodes request object https://review.openstack.org/388558 | 14:00 |
openstackgerrit | Merged openstack/senlin: Engine support for cluster-add-nodes2 https://review.openstack.org/388582 | 14:00 |
openstackgerrit | Merged openstack/senlin: API support to cluster-add-nodes2 https://review.openstack.org/388667 | 14:00 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/python-senlinclient: Updated from global requirements https://review.openstack.org/385753 | 14:07 |
openstackgerrit | Qiming Teng proposed openstack/senlin: Stricter object fields checking https://review.openstack.org/388727 | 14:19 |
openstackgerrit | Qiming Teng proposed openstack/senlin: Trivial: fix a comment typo in engine service https://review.openstack.org/388730 | 14:21 |
*** elynn has joined #senlin | 14:25 | |
*** Drago has joined #senlin | 14:35 | |
*** Drago has quit IRC | 14:35 | |
*** Drago has joined #senlin | 14:35 | |
*** guoshan has quit IRC | 14:44 | |
openstackgerrit | Merged openstack/senlin: Validation when cluster create missing cluster key https://review.openstack.org/388717 | 14:45 |
openstackgerrit | Merged openstack/python-senlinclient: Updated from global requirements https://review.openstack.org/385753 | 14:53 |
*** Drago has quit IRC | 15:01 | |
*** zhurong has quit IRC | 15:02 | |
openstackgerrit | Merged openstack/senlin: Trivial: fix a comment typo in engine service https://review.openstack.org/388730 | 15:23 |
openstackgerrit | Merged openstack/senlin: Stricter object fields checking https://review.openstack.org/388727 | 15:27 |
*** Drago has joined #senlin | 15:39 | |
*** elynn has quit IRC | 16:35 | |
*** R_lixh has joined #senlin | 16:56 | |
*** lixinhui has quit IRC | 16:56 | |
*** sjennings has joined #senlin | 18:23 | |
*** sjennings has left #senlin | 18:33 | |
*** Drago has quit IRC | 18:51 | |
*** Drago has joined #senlin | 18:52 | |
*** Drago has quit IRC | 19:00 | |
*** Drago has joined #senlin | 19:00 | |
*** Drago has quit IRC | 23:31 | |
*** yuanying has joined #senlin | 23:32 | |
*** Drago has joined #senlin | 23:35 | |
openstackgerrit | Qiming Teng proposed openstack/senlin: [WIP] test switching to objectified RPC https://review.openstack.org/388670 | 23:36 |
*** Drago has quit IRC | 23:44 | |
*** Drago has joined #senlin | 23:52 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!