Thursday, 2015-01-01

*** LinstatSDR has joined #openstack-containers00:20
*** adrian_otto has quit IRC00:45
*** kebray has quit IRC00:47
*** LinstatSDR has quit IRC00:58
*** GeneralSalty has quit IRC01:46
*** dims__ has joined #openstack-containers02:05
*** dims__ has quit IRC02:10
*** erkules_ has joined #openstack-containers02:59
*** erkules has quit IRC03:01
*** dims__ has joined #openstack-containers03:06
*** dims__ has quit IRC03:11
sdakehappy new year folks03:22
sdakeI'm off to have some beers03:22
sdakesee you all soon :)03:22
*** LinstatSDR has joined #openstack-containers03:42
*** suro_ has joined #openstack-containers03:50
openstackgerritMerged stackforge/magnum: Service create need filename as parameter  https://review.openstack.org/14378703:52
*** LinstatSDR has quit IRC04:09
*** suro_ has quit IRC04:41
*** achanda has joined #openstack-containers04:45
openstackgerritMerged stackforge/magnum: Remove get_service_by_instance  https://review.openstack.org/14458904:47
openstackgerritMerged stackforge/magnum: change old oslo.concurrency to oslo_concurrency  https://review.openstack.org/14461304:51
*** LinstatSDR has joined #openstack-containers05:06
*** LinstatSDR has quit IRC05:19
openstackgerritJay Lau proposed stackforge/magnum: Get pause and unpause working  https://review.openstack.org/14465305:20
openstackgerritJay Lau proposed stackforge/magnum: Move out docker client logic from docker conductor  https://review.openstack.org/14467205:20
*** achanda has quit IRC05:20
*** achanda has joined #openstack-containers05:21
*** achanda has quit IRC05:25
openstackgerritJay Lau proposed stackforge/magnum: Remove type from bay object  https://review.openstack.org/14467305:57
openstackgerritJay Lau proposed stackforge/magnum: Move out docker client logic from docker conductor  https://review.openstack.org/14467207:15
openstackgerritJay Lau proposed stackforge/magnum: Add k8s replication support for magnum  https://review.openstack.org/14467808:35
openstackgerritJay Lau proposed stackforge/magnum: Add k8s replication support for magnum  https://review.openstack.org/14467809:04
openstackgerritJay Lau proposed stackforge/python-magnumclient: Add k8s replication support for magnum client  https://review.openstack.org/14467909:23
openstackgerritJay Lau proposed stackforge/python-magnumclient: Add k8s replication support for magnum client  https://review.openstack.org/14467909:42
*** fandi has quit IRC10:02
*** dims__ has joined #openstack-containers10:21
*** dims__ has quit IRC10:25
*** fandi has joined #openstack-containers12:18
*** achanda has joined #openstack-containers12:22
*** fandi has quit IRC12:24
*** fandi has joined #openstack-containers12:24
*** achanda has quit IRC12:49
*** achanda has joined #openstack-containers12:49
*** achanda has quit IRC12:49
*** achanda has joined #openstack-containers12:50
*** dims__ has joined #openstack-containers13:08
*** dims__ has quit IRC13:12
*** fawadkhaliq has joined #openstack-containers14:36
*** LinstatSDR has joined #openstack-containers15:03
*** achanda has quit IRC15:06
*** achanda has joined #openstack-containers15:08
*** fawadkha_ has joined #openstack-containers15:23
*** fawadkhaliq has quit IRC15:26
*** LinstatSDR has quit IRC15:55
*** LinstatSDR has joined #openstack-containers16:01
*** achanda has quit IRC16:09
*** achanda has joined #openstack-containers16:10
*** achanda has quit IRC16:14
*** achanda has joined #openstack-containers16:26
*** dims__ has joined #openstack-containers16:28
*** dims__ has quit IRC16:32
*** adrian_otto has joined #openstack-containers16:35
*** fawadkha_ has quit IRC16:43
*** achanda has quit IRC16:47
*** EricGonczer_ has joined #openstack-containers16:49
*** achanda has joined #openstack-containers16:49
*** adrian_otto has quit IRC17:11
*** adrian_otto has joined #openstack-containers17:11
*** hongbin has joined #openstack-containers17:13
hongbinping sdake17:15
*** EricGonczer_ has quit IRC17:41
*** achanda has quit IRC18:03
*** EricGonczer_ has joined #openstack-containers18:25
sdakeshoot hongbin18:40
hongbinhey18:40
sdakesup18:40
hongbinI want to confirm with you two things18:40
sdakek18:40
hongbin1. what is the behavior to delete a baymodel with bay(s)18:40
hongbine.g. baymodel deleted, bay deleted or ...18:41
sdakewe have two options18:41
sdakewe could either copy the contents of the bay model into the bay to allow deletion of the bay model while a bay is still active18:41
sdakeor we could reject baymodel deletions while a bay uses it18:42
sdakei prefer option #218:42
hongbink18:42
sdakesomeone else might prefer option #1 tho :)18:42
sdakewhat do you prefer?18:42
hongbinhard to say18:42
sdakeThe nice thing about going with option #2, is if later we want #1, we can easily go that direction18:43
sdakewhereas if we go with option #1, we are locked into that model forever, there is no way to back to option #2 later18:43
hongbink, then we go to #2 for now?18:43
sdakethis is my thought process around why option #2 (block deletes on references to baymodel) is preferred18:43
sdakewfm18:43
hongbink, second thing18:44
hongbinwhat is the behavior to delete bay that has pod/service?18:44
sdakeideally we would delete the pods and services as part of the bay delete18:45
sdakebut this is easier said then done18:45
sdakea good short-term solution to this problem is just to block bay deletion while a bay has resources assigned to it in the db18:45
hongbink, so go to the same option with baymodel?18:46
sdakeyes, although for different reasons18:46
sdakein this case, it is a "its too hard" issue to sort out in a short timeframe18:47
hongbink. get that. Thx18:47
sdakeif you think you can do it in a short timeframe, that would work for me18:47
sdakeit may be eawsier then I think18:47
sdakebut we don't have pod or service deletion working at all atm18:47
sdakeand deleting hundreds of pods and services could take a long time18:47
sdakewhich would block the conductor18:48
sdakewe dont want to block the conductor18:48
sdakeso it either needs threads or coroutines18:48
hongbink18:49
hongbinI will block the deletion for now, and put a TODO or note on the code18:49
sdaketodo sounds great18:50
hongbink18:50
sdakefunctionally it is not good, because it means the user has to track down every resource in the bay18:51
sdakewhich is irritating to say the leasts18:51
sdakebut we dont want to block the conductor which means reworking how the rpc dispatcher works18:51
sdakethat rework is going to be a bit involved I think18:51
hongbinI see18:52
sdakethanks, curious why you were looking for clarification19:05
sdakeis this related to cleaning up the dbapi?19:06
hongbinI am writing test cases for the dbapi19:06
hongbinand yes. I am going to cleanup the dbapi19:08
*** LinstatSDR has quit IRC19:15
sdakecool soudns good19:28
*** EricGonczer_ has quit IRC19:38
*** PaulCzar has quit IRC20:06
*** dims__ has joined #openstack-containers20:17
*** EricGonczer_ has joined #openstack-containers20:20
*** dims__ has quit IRC20:22
*** EricGonczer_ has quit IRC20:28
*** EricGonczer_ has joined #openstack-containers21:19
*** openstackgerrit has quit IRC22:04
*** openstackgerrit_ has joined #openstack-containers22:05
*** openstackgerrit_ is now known as openstackgerrit22:05
*** dims__ has joined #openstack-containers22:40
*** dims__ has quit IRC22:41
*** dims__ has joined #openstack-containers22:42
*** EricGonczer_ has quit IRC23:10
*** EricGonczer_ has joined #openstack-containers23:15
*** EricGonczer_ has quit IRC23:21
*** fandi has quit IRC23:30
openstackgerritDavanum Srinivas (dims) proposed stackforge/magnum: get container-execute to work  https://review.openstack.org/14465723:46
*** EricGonczer_ has joined #openstack-containers23:46
openstackgerritMerged stackforge/magnum: Add service_update for k8s  https://review.openstack.org/14456223:48
openstackgerritMerged stackforge/magnum: Enable pod update using pod_defintion_url  https://review.openstack.org/14455923:49
openstackgerritMerged stackforge/magnum: Fix and cleanup baymodel dbapi  https://review.openstack.org/14455023:52
openstackgerritMerged stackforge/magnum: Add tests for baymodel dbapi and make them pass  https://review.openstack.org/14455123:52
openstackgerritMerged stackforge/magnum: Remove type from bay object  https://review.openstack.org/14467323:54

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