Friday, 2015-01-16

*** Marga__ has quit IRC00:02
*** Marga_ has joined #openstack-containers00:02
*** Marga_ has quit IRC00:03
*** Marga_ has joined #openstack-containers00:04
*** Marga_ has quit IRC00:06
*** Marga_ has joined #openstack-containers00:06
*** Marga_ has quit IRC00:07
*** Marga_ has joined #openstack-containers00:07
*** Marga_ has quit IRC00:10
*** Marga_ has joined #openstack-containers00:11
*** Marga_ has joined #openstack-containers00:11
*** Marga_ has quit IRC00:12
*** Marga_ has joined #openstack-containers00:12
*** Marga_ has quit IRC00:21
*** Marga_ has joined #openstack-containers00:21
*** adrian_otto has joined #openstack-containers00:23
*** prad has quit IRC00:23
*** Marga_ has quit IRC00:26
*** yuanying has quit IRC00:27
*** EricGonczer_ has joined #openstack-containers00:27
*** jay-lau-513 has quit IRC00:32
*** yuanying has joined #openstack-containers00:37
*** dims has quit IRC00:46
*** LinstatSDR has joined #openstack-containers00:46
*** kebray_ has quit IRC00:47
openstackgerritKai Qiang Wu proposed stackforge/python-magnumclient: Default version shoulr be v1 in magnum  https://review.openstack.org/14771400:56
*** oro has quit IRC00:57
*** kitch_ has joined #openstack-containers01:00
*** achanda has joined #openstack-containers01:01
*** achanda has quit IRC01:01
openstackgerritKai Qiang Wu proposed stackforge/python-magnumclient: Add id as required for bay-show/delete  https://review.openstack.org/14771501:02
*** EricGonczer_ has quit IRC01:04
*** achanda_ has quit IRC01:04
openstackgerritKai Qiang Wu proposed stackforge/magnum: Fix the typo in specs  https://review.openstack.org/14771801:07
*** EricGonczer_ has joined #openstack-containers01:08
*** adrian_otto has quit IRC01:10
*** adrian_otto has joined #openstack-containers01:10
*** kitch_ has quit IRC01:11
*** adrian_otto has quit IRC01:11
*** dims has joined #openstack-containers01:29
*** jay-lau-513 has joined #openstack-containers01:33
*** openstack has joined #openstack-containers01:35
*** dims has quit IRC01:42
*** dims has joined #openstack-containers01:42
*** dims has quit IRC01:43
*** LinstatSDR has quit IRC01:46
*** dims has joined #openstack-containers01:50
*** sdake_ has joined #openstack-containers02:06
jay-lau-513yuanying ping02:24
*** dims has quit IRC02:29
yuanyinghi jay-lau-51302:30
jay-lau-513yuanying I see that the service api has some problem02:34
yuanyingok what is it?02:34
jay-lau-513diff --git a/magnum/api/controllers/v1/service.py b/magnum/api/controllers/v1/service.py02:34
jay-lau-513index 36b45c3..0413e5c 10064402:35
jay-lau-513--- a/magnum/api/controllers/v1/service.py02:35
jay-lau-513+++ b/magnum/api/controllers/v1/service.py02:35
jay-lau-513@@ -74,11 +74,17 @@02:35
jay-lau-513     selector = wsme.wsattr({wtypes.text: wtypes.text}, readonly=True)02:35
jay-lau-513     """Selector of this service"""02:35
jay-lau-51302:35
jay-lau-513-    ip = wtypes.text02:35
jay-lau-513-    """IP of this service"""02:35
jay-lau-513+    kind = wsme.wsattr(wtypes.text, readonly=True)02:35
jay-lau-513+    """Kind of resource: Service"""02:35
jay-lau-513+02:35
jay-lau-513+    apiVersion = wsme.wsattr(wtypes.text, readonly=True)02:35
jay-lau-513+    """api version for service"""02:35
jay-lau-51302:35
jay-lau-513     port = wtypes.IntegerType()02:35
jay-lau-513     """Port of this service"""02:35
jay-lau-513+02:35
jay-lau-513+    containerPort = wtypes.IntegerType()02:35
jay-lau-513+    """Port of this service related containers"""02:35
jay-lau-51302:35
jay-lau-513     service_definition_url = wtypes.text02:35
jay-lau-513     """URL for service file to create the service"""02:35
jay-lau-513@@ -109,7 +115,8 @@02:35
jay-lau-513     def _convert_with_links(service, url, expand=True):02:35
jay-lau-513         if not expand:02:35
jay-lau-513             service.unset_fields_except(['uuid', 'name', 'bay_uuid', 'labels',02:35
jay-lau-513-                                         'selector', 'ip', 'port'])02:35
jay-lau-513+                                         'selector', 'kind', 'port',02:35
jay-lau-513+                                         'containerPort', 'apiVersion'])02:35
jay-lau-513         # never expose the service_id attribute02:35
jay-lau-513         service.service_id = wtypes.Unset02:35
jay-lau-51302:36
jay-lau-513yuanying we may not need ip in api part but apiVersion, containerPort, kind02:36
jay-lau-513Or even more, but we can mkae sure the basic work02:36
jay-lau-513yuanying what do you think?02:36
*** erkules_ has joined #openstack-containers02:38
*** erkules has quit IRC02:41
*** suro_ has quit IRC02:41
yuanyingI think02:42
yuanyingwe don't need apiVersion, containerPort, kind,02:43
yuanyingand also labels, selector02:43
*** gpruessmann1 has joined #openstack-containers02:44
*** Marga_ has joined #openstack-containers02:44
yuanyingActually, I don't understand why labels and selector are stored in database.02:44
yuanyingThese are only needed for kubernetes. Magnum don't use these.02:45
*** gpruessmann has quit IRC02:46
*** Marga_ has quit IRC02:46
*** Marga__ has joined #openstack-containers02:46
yuanyingbut apiVersion is needed to parse manifest.02:47
yuanyingAnd we should validate manifest.02:48
*** EricGonczer_ has quit IRC02:52
jay-lau-513yuanying I think that in API part, we need construct the whole json/yaml pod/service/rc template02:53
jay-lau-513yuanying so labels and selector are still needed, why do you think they are not needed?02:53
*** harlowja is now known as harlowja_away02:57
yuanyinghmm03:00
yuanyingIf we need contruct the whole json/yaml pod/service/rc template.03:01
yuanyingIt means we need parser of k8s resource manifest.03:01
jay-lau-513yes03:02
yuanyingBecause we must handle all version of resource manifest.03:02
jay-lau-513yuanying yes, that's a problem03:02
jay-lau-513yuanying, I'm not sure if we can make both xx_data and xx_definition_url both works for pod/service/rc before next Tuesday03:03
*** LinstatSDR has joined #openstack-containers03:03
yuanyingwe don't have abstraction layer of our resources.03:03
openstackgerritHongbin Lu proposed stackforge/python-magnumclient: Fix an error on not finding log handler  https://review.openstack.org/14759603:03
jay-lau-513yuanying but I want to make sure xx_defintion_url works first as basic03:03
yuanyingyes03:03
yuanyingI think parser support will be next milestone.03:04
jay-lau-513that's also my expectation :)03:04
jay-lau-513we may need more discussion in ML or gerrit for this03:04
yuanyingagree03:04
jay-lau-513ok, no problem, thanks yuanying03:04
yuanyingI want abstraction layer of k8s resources.03:05
jay-lau-513yes, that would be great03:05
yuanyingIt means, I want to our container manifest.03:05
jay-lau-513yuanying the abstration layer of reosurce can make magnum integrate with k8s more easy03:05
yuanyingyes03:06
yuanyingAnd we can support another container management software.03:06
jay-lau-513another container management software? which one? docker platform? Swarm or what else ?03:07
yuanyingyes03:07
yuanyingdocker machine and so on03:07
*** Marga__ has quit IRC03:08
jay-lau-513yuanying I think that you can probably log a bp to have more discussion, I will drive a discussion in ML for how to handle pod_data03:08
jay-lau-513yuanying not only pod_data but also rc_data/service_data03:09
yuanyingAnd I will change pod_data/rc_data/service_data attribute name to simply manifest.03:09
jay-lau-513yuanying sure03:09
yuanyingpod.pod_data is redundancy03:10
yuanyingI prefer pod.manifest or pod.manifest_url03:10
yuanyingDo you think?03:11
jay-lau-513yuanying nice03:11
jay-lau-513yuanying this is similar with k8s03:11
jay-lau-513match k8s03:11
yuanyingOK I will change it next patch.03:11
jay-lau-513yuanying ok, please go ahead03:11
jay-lau-513yuanying also, can you help review two patches for me? https://review.openstack.org/147030  and https://review.openstack.org/#/c/147497/03:12
yuanyingOk03:12
jay-lau-513great!03:12
yuanyingSorry I had morning meeting, so I cant review it.03:13
yuanyingI will review it soon.03:13
jay-lau-513yuanying ok, no problem, take your time03:15
openstackgerritMerged stackforge/python-magnumclient: Change rc_data to replicationcontroller_data  https://review.openstack.org/14749703:16
openstackgerritKai Qiang Wu proposed stackforge/python-magnumclient: Default version should be v1 in magnum  https://review.openstack.org/14771403:24
digaHi sdake03:26
digaI saw your comments last night03:26
*** jay-lau-513 has quit IRC03:26
digaI will make suggested changes in the patch03:26
*** General__ has quit IRC03:29
*** gpruessmann1 has quit IRC03:41
*** salty has joined #openstack-containers03:43
*** salty is now known as Guest6508003:43
*** gpruessmann has joined #openstack-containers03:43
*** Guest65080 has quit IRC03:44
*** Marga_ has joined #openstack-containers03:45
*** jay-lau-513 has joined #openstack-containers03:46
openstackgerritJay Lau proposed stackforge/magnum: Make replication controller delete working  https://review.openstack.org/14703004:12
*** fandi_ has quit IRC04:21
*** fandi_ has joined #openstack-containers04:21
*** Marga_ has quit IRC04:34
*** achanda has joined #openstack-containers04:44
*** achanda has quit IRC04:46
*** achanda has joined #openstack-containers04:57
*** achanda has quit IRC04:57
*** thomasem has quit IRC05:01
openstackgerritMerged stackforge/magnum: Fix deprecated warning for oslo.serialization  https://review.openstack.org/14740105:13
openstackgerritMerged stackforge/magnum: Fix the typo in specs  https://review.openstack.org/14771805:15
*** achanda has joined #openstack-containers05:19
openstackgerritMerged stackforge/python-magnumclient: Fix an error on not finding log handler  https://review.openstack.org/14759605:20
openstackgerritMerged stackforge/magnum: Make replication controller delete working  https://review.openstack.org/14703005:20
openstackgerritMerged stackforge/python-magnumclient: Default version should be v1 in magnum  https://review.openstack.org/14771405:21
openstackgerritMerged stackforge/python-magnumclient: Add id as required for bay-show/delete  https://review.openstack.org/14771505:22
*** erkules_ is now known as erkules05:37
sdake_coverage up to 70505:39
sdake_70%05:39
* sdake_ claps :)05:39
*** LinstatSDR has quit IRC05:57
*** achanda has quit IRC06:03
*** achanda has joined #openstack-containers06:05
*** achanda has quit IRC06:16
openstackgerritMotohiro/Yuanying Otsuka proposed stackforge/magnum: Rename `resource`_data/url attributes to manifest/manifest_url  https://review.openstack.org/14775906:17
openstackgerritMotohiro/Yuanying Otsuka proposed stackforge/python-magnumclient: Rename `resource`_data/url attributes to manifest/manifest_url  https://review.openstack.org/14776006:19
*** salty has joined #openstack-containers06:23
*** achanda has joined #openstack-containers06:23
*** salty is now known as Guest6696506:23
*** yuanying_ has joined #openstack-containers06:23
*** yuanying has quit IRC06:26
*** achanda has quit IRC06:46
*** oro has joined #openstack-containers06:49
openstackgerritMotohiro/Yuanying Otsuka proposed stackforge/magnum: Fix _retrive_k8s_master_url  https://review.openstack.org/14776406:54
digasdake: great !07:09
*** sdake_ has quit IRC07:20
*** oro has quit IRC07:59
*** yuanying_ has quit IRC08:06
*** coolsvap|afk is now known as coolsvap09:03
*** gpruessmann has quit IRC09:06
*** yuanying has joined #openstack-containers09:08
*** gpruessmann has joined #openstack-containers09:12
*** yuanying has quit IRC09:12
*** oro has joined #openstack-containers09:15
*** jay-lau-513 has quit IRC09:40
*** salty has joined #openstack-containers09:45
*** Guest66965 has quit IRC09:45
*** salty is now known as Guest2498109:45
*** yuanying has joined #openstack-containers10:04
*** yuanying has quit IRC10:09
*** oro_ has joined #openstack-containers10:24
*** oro_ has quit IRC10:29
*** Guest24981 has quit IRC10:37
*** salty has joined #openstack-containers10:38
*** salty is now known as Guest9985410:38
*** Guest99854 has quit IRC10:42
*** diga has quit IRC11:31
*** salty has joined #openstack-containers11:31
*** salty is now known as Guest4080911:32
*** Guest40809 has quit IRC11:39
*** nshaikh has joined #openstack-containers11:46
*** fandi_ has quit IRC11:46
*** fandi has joined #openstack-containers11:46
*** dims__ has joined #openstack-containers11:53
*** kitch_ has joined #openstack-containers11:58
*** kitch_ has quit IRC12:02
*** salty has joined #openstack-containers12:32
*** salty is now known as Guest1113412:33
*** Guest11134 has quit IRC12:41
*** stannie42 has joined #openstack-containers13:21
*** EricGonczer_ has joined #openstack-containers13:21
*** EricGonczer_ has quit IRC13:22
*** kitch_ has joined #openstack-containers13:22
*** Marga_ has joined #openstack-containers13:24
*** EricGonczer_ has joined #openstack-containers13:25
*** salty has joined #openstack-containers13:29
*** salty is now known as Guest1017713:29
*** ashishb has joined #openstack-containers13:31
*** thomasem has joined #openstack-containers13:35
*** thomasem has quit IRC13:45
*** fandi has quit IRC13:48
*** thomasem has joined #openstack-containers13:49
*** fandi has joined #openstack-containers13:59
*** fandi has quit IRC14:06
*** fandi has joined #openstack-containers14:07
*** dims__ is now known as dimsum__14:13
*** fandi has quit IRC14:14
*** fandi has joined #openstack-containers14:15
*** nshaikh has quit IRC14:50
*** coolsvap is now known as coolsvap|afk14:55
*** fandi has quit IRC15:19
*** fandi has joined #openstack-containers15:32
*** fandi has quit IRC15:36
*** fandi has joined #openstack-containers15:36
*** fandi has quit IRC15:39
*** fandi has joined #openstack-containers15:40
*** fandi has quit IRC15:43
*** fandi has joined #openstack-containers15:44
*** fandi has quit IRC15:45
*** kebray has joined #openstack-containers15:48
*** kebray has quit IRC15:49
*** kebray has joined #openstack-containers15:49
*** EricGonczer_ has quit IRC15:55
*** EricGonczer_ has joined #openstack-containers15:59
*** oro has quit IRC15:59
*** xxj has quit IRC16:02
*** xxj has joined #openstack-containers16:02
*** dimsum__ has quit IRC16:25
*** dimsum__ has joined #openstack-containers16:28
*** achanda has joined #openstack-containers16:30
*** dims_ has joined #openstack-containers16:32
*** dimsum__ has quit IRC16:37
*** achanda has quit IRC16:50
*** xxj has quit IRC16:51
*** junhongl has quit IRC16:51
*** EricGonczer_ has quit IRC17:09
*** ashishb has quit IRC17:09
*** EricGonczer_ has joined #openstack-containers17:09
*** Marga_ has quit IRC17:10
*** oro has joined #openstack-containers17:17
*** LinstatSDR has joined #openstack-containers17:18
*** LinstatSDR has quit IRC17:21
*** junhongl has joined #openstack-containers17:23
*** dims_ has quit IRC17:26
*** dimsum__ has joined #openstack-containers17:30
*** Guest10177 has quit IRC17:31
*** oro has quit IRC17:33
*** diga has joined #openstack-containers17:35
*** oro has joined #openstack-containers17:39
*** Marga_ has joined #openstack-containers17:41
*** Marga_ has quit IRC17:41
*** Marga_ has joined #openstack-containers17:42
openstackgerritDigambar proposed stackforge/magnum: Added container as a type.  https://review.openstack.org/14760317:44
openstackgerritDigambar proposed stackforge/magnum: Service type is set as a container in the keystone catalog.  https://review.openstack.org/14792617:44
*** dguryanov has quit IRC17:47
*** diga has quit IRC17:48
*** achanda has joined #openstack-containers17:50
*** joffter has quit IRC17:57
*** achanda has quit IRC17:59
*** Marga_ has quit IRC18:00
*** Marga_ has joined #openstack-containers18:01
*** achanda has joined #openstack-containers18:02
*** Marga_ has quit IRC18:02
*** oro has quit IRC18:02
*** achanda has quit IRC18:03
*** Marga_ has joined #openstack-containers18:03
*** suro_ has joined #openstack-containers18:11
*** harlowja_away is now known as harlowja18:18
*** Marga_ has quit IRC18:26
*** Marga_ has joined #openstack-containers18:27
*** prad has joined #openstack-containers18:28
*** Marga_ has quit IRC18:34
*** Marga_ has joined #openstack-containers18:34
*** Marga__ has joined #openstack-containers18:35
*** Marga__ has quit IRC18:35
*** Marga_ has quit IRC18:36
*** Marga_ has joined #openstack-containers18:36
*** oro has joined #openstack-containers18:37
*** Marga_ has quit IRC18:42
*** Marga_ has joined #openstack-containers18:42
*** Marga_ has quit IRC18:43
*** Marga_ has joined #openstack-containers18:43
*** salty has joined #openstack-containers18:44
*** salty is now known as Guest2506818:45
*** kitch_ has quit IRC18:46
*** Marga_ has quit IRC18:48
*** Marga_ has joined #openstack-containers18:48
*** Marga_ has quit IRC18:50
*** Marga_ has joined #openstack-containers18:50
*** Marga_ has quit IRC18:55
*** Marga_ has joined #openstack-containers18:55
*** Marga_ has quit IRC19:03
*** Marga_ has joined #openstack-containers19:03
*** Marga_ has quit IRC19:04
*** Marga_ has joined #openstack-containers19:04
*** kitch_ has joined #openstack-containers19:05
*** adrian_otto has joined #openstack-containers19:07
*** Marga_ has quit IRC19:10
*** Marga_ has joined #openstack-containers19:10
*** adrian_otto has quit IRC19:11
*** Marga_ has quit IRC19:14
*** Marga_ has joined #openstack-containers19:14
*** dims_ has joined #openstack-containers19:16
*** fandi has joined #openstack-containers19:17
*** dimsum__ has quit IRC19:19
*** xxj has joined #openstack-containers19:22
*** Marga_ has quit IRC19:29
*** Marga_ has joined #openstack-containers19:29
*** Marga_ has quit IRC19:30
*** Marga_ has joined #openstack-containers19:30
*** Marga_ has quit IRC19:40
*** Marga_ has joined #openstack-containers19:40
*** PaulCzar has quit IRC19:41
*** PaulCzar has joined #openstack-containers19:41
*** joffter has joined #openstack-containers19:44
*** kitch_ has quit IRC19:45
*** Marga_ has quit IRC19:49
*** Marga_ has joined #openstack-containers19:49
*** Marga_ has quit IRC19:53
*** Marga_ has joined #openstack-containers19:53
*** Marga_ has quit IRC19:57
*** Marga_ has joined #openstack-containers19:57
*** achanda has joined #openstack-containers20:00
*** Marga_ has quit IRC20:06
*** Marga_ has joined #openstack-containers20:07
*** kebray has quit IRC20:08
*** achanda has quit IRC20:10
*** achanda has joined #openstack-containers20:12
*** achanda has quit IRC20:17
*** prad has quit IRC20:28
*** Marga_ has quit IRC20:29
*** Marga_ has joined #openstack-containers20:30
*** Marga_ has quit IRC20:30
*** Marga_ has joined #openstack-containers20:31
*** achanda has joined #openstack-containers20:37
*** gpruessmann has left #openstack-containers20:37
*** achanda has quit IRC20:42
*** Babyface has quit IRC20:42
*** achanda has joined #openstack-containers20:43
*** Babyface has joined #openstack-containers20:43
*** Marga_ has quit IRC20:52
*** wkharold has joined #openstack-containers20:55
*** achanda has quit IRC21:09
*** joffter has quit IRC21:10
*** achanda has joined #openstack-containers21:19
*** achanda has quit IRC21:20
*** fandi has quit IRC21:32
*** joffter has joined #openstack-containers21:35
*** fandi has joined #openstack-containers21:44
*** junhongl has quit IRC22:01
*** xxj has quit IRC22:02
*** xxj has joined #openstack-containers22:11
*** junhongl has joined #openstack-containers22:11
*** Marga_ has joined #openstack-containers22:13
*** achanda has joined #openstack-containers22:14
*** martyfalatic has joined #openstack-containers22:14
*** martyfalatic has quit IRC22:15
*** Marga_ has quit IRC22:15
*** Marga_ has joined #openstack-containers22:16
*** achanda has quit IRC22:33
*** EricGonczer_ has quit IRC22:34
*** sdake_ has joined #openstack-containers22:34
*** sdake_ has quit IRC22:34
*** sdake_ has joined #openstack-containers22:34
*** achanda has joined #openstack-containers22:40
*** dims_ has quit IRC22:40
*** achanda has quit IRC22:43
*** Marga_ has quit IRC22:45
*** Marga_ has joined #openstack-containers22:45
*** achanda has joined #openstack-containers22:49
*** Marga_ has quit IRC22:54
*** Marga_ has joined #openstack-containers22:54
*** achanda has quit IRC23:09
*** openstackgerrit has quit IRC23:19
*** openstackgerrit has joined #openstack-containers23:19
*** wkharold has quit IRC23:36
*** Marga_ has quit IRC23:39
*** Marga_ has joined #openstack-containers23:40
*** dimsum__ has joined #openstack-containers23:41
*** dimsum__ has quit IRC23:47

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