Monday, 2015-08-31

*** _navneet has joined #openstack-containers00:03
*** achanda has joined #openstack-containers00:06
*** _navneet has quit IRC00:08
*** dimtruck is now known as zz_dimtruck00:15
openstackgerritMerged openstack/magnum: Add explicit requirement for decorator module  https://review.openstack.org/21854000:38
*** achanda has quit IRC00:44
*** hongbin has joined #openstack-containers00:58
*** yuanying-alt has joined #openstack-containers01:10
*** harshs has joined #openstack-containers01:13
*** yuanying-alt has quit IRC01:14
*** erkules_ has joined #openstack-containers01:23
*** zz_dimtruck is now known as dimtruck01:24
*** zhenguo has joined #openstack-containers01:24
*** erkules has quit IRC01:26
*** dimtruck is now known as zz_dimtruck01:29
*** achanda has joined #openstack-containers01:37
*** vilobhmm1 has joined #openstack-containers01:42
*** vilobhmm11 has joined #openstack-containers01:43
openstackgerritHua Wang proposed openstack/magnum: [WIP] Generate keystone trust  https://review.openstack.org/21869901:45
*** vilobhmm1 has quit IRC01:47
*** eghobo has quit IRC01:49
*** mathspanda has joined #openstack-containers01:50
*** tbh has joined #openstack-containers02:01
*** tbh has quit IRC02:06
vilobhmm11Kennan : ping02:17
*** achanda has quit IRC02:22
*** eghobo has joined #openstack-containers02:23
*** liangbo has joined #openstack-containers02:23
*** achanda has joined #openstack-containers02:24
Kennanhi vilobhmm11: what's up02:31
*** kebray has joined #openstack-containers02:33
*** kebray has quit IRC02:33
*** kebray has joined #openstack-containers02:34
*** harshs has quit IRC02:52
*** kebray_ has joined #openstack-containers02:53
yuanyingIs humble__ Hua Wang?02:54
humble__yuanying: yes02:55
yuanyingOh, I have question02:55
humble__yuanying: What02:55
yuanyingAbout this https://review.openstack.org/#/c/21869902:55
*** kebray has quit IRC02:56
yuanyingI want to keystone session which has admin context like https://review.openstack.org/#/c/188703/9/neutron_lbaas/common/keystone.py02:56
yuanyingCan you separate your patch, one is refactor keystone client, and second is "generate keystone trust"02:57
humble__yuanying: OK, I will seperate my patch02:58
yuanyingthanks a lot!02:58
humble__yuanying: What is your purpose for keystone session02:58
yuanyingbarbican requires keystone session02:58
yuanyingand also I want to keystone session which has admin context02:59
*** yuanying-alt has joined #openstack-containers02:59
*** Tennyson has joined #openstack-containers02:59
humble__Ok, I will add it to keystone client02:59
yuanyinghttps://github.com/openstack/neutron-lbaas/blob/master/neutron_lbaas/common/cert_manager/barbican_cert_manager.py#L7202:59
*** yuanying-alt has quit IRC03:04
vilobhmm11Kennan : sorry was away….regarding https://review.openstack.org/#/c/217865/2/magnum/db/sqlalchemy/api.py03:04
vilobhmm11I was thinking we need to change the exception raised here to a more valid one as in something like ReplicationControllerNotFoundNoBayExist03:05
vilobhmm11Kennan : what do you think ? ^^03:10
humble__vilobhmm11: It makes sense03:17
*** eghobo has quit IRC03:17
Kennanhi vilobhmm11:03:25
Kennanwhat's the exception now ? for get_bay_uuid? let me check03:25
*** vilobhmm11 has quit IRC03:26
*** vilobhmm1 has joined #openstack-containers03:27
vilobhmm1Kennan : https://github.com/openstack/magnum/blob/master/magnum/db/sqlalchemy/api.py#L69503:27
*** apmelton has quit IRC03:28
Kennanvilobhmm1: it seems not need to through another so detailed exception, is BayNotFound not good to understood ?03:28
vilobhmm1Kennan : IMHO its not sufficient03:29
vilobhmm1its not good to understand03:29
vilobhmm1there r 2 cases here03:29
vilobhmm1#1. The bay does not exist03:29
vilobhmm1and #2. hence the pod/rc/service does not exist03:29
vilobhmm1so we should be pricise in describing why the pod/rc/services does not exist03:30
vilobhmm1and thats becase the bay does not exist03:30
*** apmelton has joined #openstack-containers03:30
vilobhmm1hence something like PodNotFoundNoBayExist/ReplicationControllerNotFoundNoBayExist/ServiceNotFoundNoBayExist is more better than just saying BayNotFound03:31
vilobhmm1Kennan : ^^03:31
Kennanfor case#1 the bay not exist03:31
Kennanfrom code, it throws baynotfound03:31
vilobhmm1true03:31
Kennanfor case #2, bay exist, pod/service not exist03:31
Kennanit would throw podnotexist03:31
Kennanservicenotexist03:31
vilobhmm1but thats not how its done today03:32
KennanI did not understnad why it is not easy to understand?03:32
Kennanwhy03:32
Kennanfrom you code change03:32
Kennanself.get_bay_by_uuid(context, bay_uuid)03:32
Kennanif bay exist03:32
Kennanit would return03:32
vilobhmm1you need to throw that podnotexits somewhere here https://github.com/openstack/magnum/blob/master/magnum/objects/pod.py#L108 when you get an empty list03:32
Kennanand then enter code path03:33
Kennanreturn query.all()03:33
*** eghobo has joined #openstack-containers03:34
vilobhmm1if we disregard the changes here https://review.openstack.org/#/c/217865/2/magnum/db/sqlalchemy/api.py the query on line #892 will even fail if the bay does not exist03:34
vilobhmm1and hence throw exception03:34
Kennanthat's why I asked in your patch comments, i did not find list_by_bay_uuid any called03:34
Kennanin other code, it is just defined there03:35
*** kebray_ has quit IRC03:37
Kennanvilobhmm1: in short summary, if some code not used anywhere, it was old code, so need to remove it03:37
vilobhmm1Kennan : true but same applies to get_pods_by_bay_uuid and get_services_by_bay_uuid03:37
vilobhmm1ok03:37
vilobhmm1your above statement makes sense03:37
vilobhmm1dead code needs to be removed03:37
*** kebray has joined #openstack-containers03:37
Kennanvilobhmm1: if you find some codes applies CLI or rest API can kick that call happend, open one issue and append detailed descpritons03:38
Kennanthen we can fix that03:38
Kennanright now, I did not find any call such object API03:38
Kennanso it was old died code03:38
vilobhmm1get_rcs_by_bay_uuid / get_pods_by_bay_uuid / get_services_by_bay_uuid code associated with this is even dead will open a bug to clean it if that sounds ok to you03:39
vilobhmm1Kennan : ^^03:40
*** eghobo has quit IRC03:40
KennanI am ok with that. vilobhmm1:03:40
Kennanthanks guy to improve our code base03:40
vilobhmm1happy to help :) thanks Kennan !03:41
Kennanwcl :)03:41
*** hongbin has quit IRC03:42
*** jwcroppe_ has joined #openstack-containers03:45
vilobhmm1humble__: thanks for your reply03:46
*** jwcroppe has quit IRC03:47
openstackgerritMerged openstack/magnum: tools/colorizer.py is not used anywhere  https://review.openstack.org/21853703:50
*** vilobhmm1 has quit IRC03:50
*** vilobhmm1 has joined #openstack-containers03:51
openstackgerritvikas choudhary proposed openstack/magnum: Fix method and parameter descriptions  https://review.openstack.org/21871503:52
*** vilobhmm1 has quit IRC04:02
*** vilobhmm1 has joined #openstack-containers04:04
openstackgerritvikas choudhary proposed openstack/magnum: Fix method and parameter descriptions  https://review.openstack.org/21871504:09
*** eghobo has joined #openstack-containers04:09
*** VikasC has joined #openstack-containers04:36
*** yuanying-alt has joined #openstack-containers04:48
*** tbh has joined #openstack-containers04:50
*** yuanying-alt has quit IRC04:52
*** ig0r__ has joined #openstack-containers04:59
*** ig0r_ has quit IRC04:59
*** VikasC has quit IRC05:03
*** tbh has quit IRC05:06
*** VikasC has joined #openstack-containers05:08
*** tbh has joined #openstack-containers05:09
*** liangbo has quit IRC05:14
*** kebray has quit IRC05:17
*** tbh has quit IRC05:18
*** tbh has joined #openstack-containers05:19
VikasCHi Everybody05:22
*** sdake_ has quit IRC05:25
*** sdake has joined #openstack-containers05:26
*** tbh has quit IRC05:27
*** tbh has joined #openstack-containers05:28
*** dave-mccowan has quit IRC05:29
*** sdake has quit IRC05:29
*** sdake has joined #openstack-containers05:30
*** chandankumar has joined #openstack-containers05:31
*** harshs has joined #openstack-containers05:43
*** sdake_ has joined #openstack-containers05:45
guscontainer-networking-model isn't what I was expecting to find - in particular it doesn't talk about the networking model at all :/05:46
gus(it seems to just talk about choosing between particular implementations - without any discussion at all of the various models they present)05:48
gusErr, thats the "container-network-model" *spec*.05:48
*** sdake has quit IRC05:49
gusDo we only need to support container-container within a single bay?  (ie: do we want traffic coming into a k8s bay to only come in via external services?)05:53
*** tbh has quit IRC05:54
*** tbh has joined #openstack-containers05:55
*** liangbo has joined #openstack-containers05:58
gusIn related news: I strongly recommend magnum switch to flannel's host-gw backend.  It looks like magnum creates a dedicated neutron network for each bay, and this is exactly the situation for which I created the host-gw flannel backend.  Zero packet overhead, scales to O(hundreds) of nodes.05:58
*** shuquan has joined #openstack-containers06:05
tbhdid anyone write any unit test cases in magnum?, specifically on polling funciontality?06:08
*** vilobhmm1 has quit IRC06:16
Kennangus: not quite sure what's your question. if you want to involve more discussion or question, please send your question with ML06:17
Kennantbh: what's the issue06:17
*** vilobhmm1 has joined #openstack-containers06:18
*** ishant has joined #openstack-containers06:18
tbhKennan, I just want to cross check the code, I wrote the test case for the bug  https://bugs.launchpad.net/magnum/+bug/148972506:22
openstackLaunchpad bug 1489725 in Magnum "Unable to get the status of bay with model as Docker swarm" [Undecided,In progress] - Assigned to bharaththiruveedula (bharath-ves)06:22
tbhKennan, http://paste.openstack.org/show/434406/06:22
*** harshs has quit IRC06:22
tbhKennan, is this the correct way of testing?06:22
*** shuquan has quit IRC06:23
*** shuquan has joined #openstack-containers06:26
Kennantbh: I am not sure about your functional change code06:29
Kennanbut the test code should cover as follows:06:29
Kennanif you change any logic in functional06:29
Kennanthen mock test should cover your code path06:29
Kennanand verified logic is your expection06:29
*** vilobhmm1 has quit IRC06:30
tbhKennan, oh okay06:32
tbhKennan, but I thought of writing the test case  which change the status in heat stack to CREATE_IN_PROGRESS and poll and then assert bay.status06:33
tbhKennan, as I have written in the paste06:34
Kennanwhat's your unit test for ? add test for your fix patch06:35
Kennanor just add another unit for existed code06:35
*** sdake_ is now known as sdake06:36
openstackgerritvikas choudhary proposed openstack/magnum: Fix method and parameter descriptions  https://review.openstack.org/21871506:36
tbhKennan, My unit case is to test the status of bay06:36
*** yuanying-alt has joined #openstack-containers06:37
Kennanso tbh: you want to add some tests right?06:37
Kennanit is not target to fix any issue06:37
Kennanright?06:37
Kennantbh: you could add tests if you think some known tests coverage is not enough06:38
Kennanbut just make sure tests not redundant from functional view06:39
*** VikasC has quit IRC06:40
*** yuanying-alt has quit IRC06:41
tbhKennan, I am supposed to test this patch https://review.openstack.org/#/c/218582/06:42
*** j___ has joined #openstack-containers06:43
Kennantbh: that fix seems related node_count06:52
Kennanso your mock can test different bay types can get that node_count updated correctly06:53
tbhKennan, but when I tested the self.bay.node_count it displays <MagicMock name='OpenStackClients.heat().stacks.get().parameters.__getitem__()' id='140560351144208'>06:54
Kennantbh: debug code and check if mock objects have related attributes or not06:55
*** shuquan has quit IRC07:00
*** BhavyaM has joined #openstack-containers07:00
*** BertrandN has joined #openstack-containers07:01
*** liangbo has quit IRC07:02
tbhKennan, sure07:05
*** achanda has quit IRC07:05
*** muralia has quit IRC07:06
*** BertrandN has quit IRC07:11
openstackgerritbharaththiruveedula proposed openstack/magnum: Updates the node count key for all types of bay  https://review.openstack.org/21858207:14
*** tbh has quit IRC07:15
*** tbh has joined #openstack-containers07:21
*** VikasC has joined #openstack-containers07:23
*** BertrandN has joined #openstack-containers07:27
*** apuimedo_ has joined #openstack-containers07:27
*** junhongl has joined #openstack-containers07:30
*** muralia has joined #openstack-containers07:38
*** tbh has quit IRC07:44
*** tbh has joined #openstack-containers07:45
*** liangbo has joined #openstack-containers07:49
*** eghobo has quit IRC07:57
*** tbh has quit IRC08:03
*** tbh has joined #openstack-containers08:03
*** apuimedo_ has quit IRC08:05
*** shuquan has joined #openstack-containers08:12
*** Jianlee has joined #openstack-containers08:17
*** shuquan has quit IRC08:24
*** shuquan has joined #openstack-containers08:24
*** shuquan has quit IRC08:25
*** yuanying-alt has joined #openstack-containers08:25
*** shuquan has joined #openstack-containers08:26
*** tbh has quit IRC08:30
*** yuanying-alt has quit IRC08:30
*** Jianlee is now known as Jian061208:31
*** tbh has joined #openstack-containers08:35
tbhKennan, you want me to check delete bay also or both delete and update?08:35
Kennantbh: I suggest at least one test cover path for another node_count set08:36
KennanIt seems your all tests cover another path08:36
tbhKennan, I didn't get you what is path?08:37
Kennantbh: if I understand your tests, it all goes to08:38
Kennanelif stack.stack_status != self.bay.status:08:38
Kennanthis code path08:38
Kennanbut it not cover if (stack.stack_status in [bay_status.CREATE_COMPLETE  bay_status.UPDATE_COMPLETE]):08:38
Kennanthis08:38
*** shuquan has quit IRC08:38
tbhKennan, okay got it08:38
tbhKennan,  I forgot that path, I will add it08:39
tbhcan I check both in one after another?08:40
tbhand I think I have to modify the test method name08:40
openstackgerritHua Wang proposed openstack/magnum: Code refactor for keystoneclient  https://review.openstack.org/21869908:41
Kennantbh: better make one test_method is simple and one funtion aspect08:41
Kennannot mess all in one method08:41
Kennanyou could add other methods for update case08:42
*** liangbo has quit IRC08:46
*** tbh has quit IRC08:47
*** sdake has quit IRC08:50
*** VikasC has quit IRC08:51
openstackgerritHua Wang proposed openstack/magnum: Add default for node_count and bay_create_timeout  https://review.openstack.org/21806508:53
openstackgerritHua Wang proposed openstack/magnum: X-User is deprecated and X-Storage-Token is useless  https://review.openstack.org/21817109:00
*** liangbo has joined #openstack-containers09:03
*** tbh has joined #openstack-containers09:04
*** erkules_ is now known as erkules09:04
*** erkules has joined #openstack-containers09:04
*** Tennyson has quit IRC09:12
*** mathspanda has quit IRC09:13
*** tbh has quit IRC09:21
openstackgerritHua Wang proposed openstack/magnum: Code refactor for keystoneclient  https://review.openstack.org/21869909:24
*** alex_klimov has joined #openstack-containers09:31
*** tbh has joined #openstack-containers09:35
*** ig0r_ has joined #openstack-containers09:37
*** ig0r__ has quit IRC09:39
*** VikasC has joined #openstack-containers09:47
openstackgerritbharaththiruveedula proposed openstack/magnum: Updates the node count key for all types of bay  https://review.openstack.org/21858210:00
tbhKennan, updated the code10:03
*** yuanying-alt has joined #openstack-containers10:14
*** yuanying-alt has quit IRC10:19
*** Jian0612 has quit IRC10:30
*** Drago has quit IRC10:39
*** ishant has quit IRC11:25
*** BhavyaM has quit IRC11:41
*** chandankumar has quit IRC11:46
*** openstackgerrit has quit IRC11:46
*** openstackgerrit has joined #openstack-containers11:47
*** BhavyaM has joined #openstack-containers11:58
*** yuanying-alt has joined #openstack-containers12:03
*** yuanying-alt has quit IRC12:07
*** dave-mccowan has joined #openstack-containers12:08
*** raildo-afk is now known as raildo12:16
*** humble__ has quit IRC12:27
*** VikasC has quit IRC12:37
*** tbh has quit IRC12:38
*** junhongl has quit IRC12:53
*** BhavyaM has quit IRC12:53
*** dane_leblanc has joined #openstack-containers13:10
*** shuquan has joined #openstack-containers13:11
*** chandankumar has joined #openstack-containers13:18
*** kbyrne has quit IRC13:19
*** liangbo has quit IRC13:21
*** kbyrne has joined #openstack-containers13:32
*** rpothier has joined #openstack-containers13:34
*** dims has joined #openstack-containers13:36
*** ctrath has joined #openstack-containers13:46
*** rlrossit has joined #openstack-containers13:47
*** yuanying-alt has joined #openstack-containers13:52
*** pradk has joined #openstack-containers13:54
*** yuanying-alt has quit IRC13:56
*** shuquan has quit IRC13:57
*** Kennan has quit IRC14:03
*** Kennan2 has joined #openstack-containers14:03
*** zz_dimtruck is now known as dimtruck14:11
*** _navneet has joined #openstack-containers14:36
*** achanda has joined #openstack-containers14:49
*** banix has joined #openstack-containers14:51
*** kebray has joined #openstack-containers14:51
*** dims has quit IRC14:51
*** banix has quit IRC14:57
*** diga has joined #openstack-containers14:57
*** banix has joined #openstack-containers15:01
*** hongbin has joined #openstack-containers15:01
*** jruano has joined #openstack-containers15:02
*** dims has joined #openstack-containers15:03
*** j___ has quit IRC15:03
*** achanda has quit IRC15:05
*** Tango has joined #openstack-containers15:06
*** Drago has joined #openstack-containers15:11
*** dave-mccowan has quit IRC15:11
*** diga has quit IRC15:13
*** wznoinsk1 is now known as wznoinsk15:15
*** _navneet_ has joined #openstack-containers15:18
*** _navneet has quit IRC15:22
*** wshao_ has joined #openstack-containers15:24
*** dave-mccowan has joined #openstack-containers15:25
*** VikasC has joined #openstack-containers15:25
*** david-ly_ has joined #openstack-containers15:31
openstackgerritOpenStack Proposal Bot proposed openstack/magnum: Updated from global requirements  https://review.openstack.org/21890715:32
*** david-ly_ is now known as david-lyle_15:33
*** david-lyle has quit IRC15:33
*** david-lyle_ is now known as david-lyle15:35
*** adrian_otto has joined #openstack-containers15:36
VikasC#openstack-meeting-415:38
*** alex_klimov has quit IRC15:38
*** chandankumar has quit IRC15:39
*** BertrandN has quit IRC15:46
*** VikasC has quit IRC15:50
*** wshao_ has quit IRC15:59
*** kebray has quit IRC16:08
*** banix has quit IRC16:08
*** mfalatic has joined #openstack-containers16:09
*** eghobo has joined #openstack-containers16:14
*** jjfreric has joined #openstack-containers16:15
*** jjfreric has quit IRC16:16
*** manjeets has joined #openstack-containers16:25
*** unicell has quit IRC16:25
*** rpothier has quit IRC16:28
*** liangbo has joined #openstack-containers16:31
*** dane_leblanc has quit IRC16:45
*** harshs has joined #openstack-containers16:48
*** sdake_ has joined #openstack-containers16:52
*** dims has quit IRC16:55
*** dane_leblanc has joined #openstack-containers16:55
*** harshs has quit IRC16:56
*** chandankumar has joined #openstack-containers16:59
*** banix has joined #openstack-containers17:00
*** Tango has quit IRC17:04
*** jlcoello has joined #openstack-containers17:09
*** julim has joined #openstack-containers17:11
*** jlcoello has quit IRC17:11
*** suro-patz has joined #openstack-containers17:12
*** unicell has joined #openstack-containers17:12
*** achanda has joined #openstack-containers17:18
*** banix has quit IRC17:18
manjeets._.17:20
*** banix has joined #openstack-containers17:22
mfalaticCan someone explain briefly what --docker-volume-size affects in the bay model?17:22
mfalaticI think I understand but I want to make sure I do.17:23
*** liangbo has quit IRC17:23
*** harshs has joined #openstack-containers17:23
*** Drago has quit IRC17:24
*** banix has quit IRC17:25
*** dims has joined #openstack-containers17:29
*** vilobhmm1 has joined #openstack-containers17:29
*** banix has joined #openstack-containers17:29
*** dims_ has joined #openstack-containers17:30
*** dims has quit IRC17:30
*** sdake has joined #openstack-containers17:33
*** sthillma has joined #openstack-containers17:35
*** sdake_ has quit IRC17:37
*** suro-patz1 has joined #openstack-containers17:37
openstackgerritManjeet Singh Bhatia proposed openstack/magnum: Change grep option dev-build-atomic-image.rst  https://review.openstack.org/21896317:38
*** rlrossit has left #openstack-containers17:39
*** suro-patz has quit IRC17:39
*** Drago has joined #openstack-containers17:41
*** Drago has quit IRC17:42
*** Drago has joined #openstack-containers17:42
*** ig0r__ has joined #openstack-containers17:43
*** SourabhP has joined #openstack-containers17:45
*** chandankumar has quit IRC17:45
*** ig0r_ has quit IRC17:46
*** chandankumar has joined #openstack-containers17:52
openstackgerritManjeet Singh Bhatia proposed openstack/magnum: Change grep option dev-build-atomic-image.rst  https://review.openstack.org/21896317:53
*** Tango has joined #openstack-containers17:55
*** rlrossit has joined #openstack-containers17:56
*** eghobo_ has joined #openstack-containers18:00
*** eghobo has quit IRC18:04
vilobhmm1hongbin : ping18:06
hongbinvilobhmm1: pong18:06
vilobhmm1as part of review for https://review.openstack.org/#/c/217865/2/magnum/objects/replicationcontroller.py Kennan brought up a good point and I also had this thought for a while that get_*_by_bay_uuid API's are not consumed by anyone. Same applies for list_by_bay_uuid api's in service/pod object18:08
vilobhmm1so should we keep dead code ? or just remove these API's from the code base as there is no consumer of it ?18:08
vilobhmm1hongbin : ^^18:08
hongbinvilobhmm1: I am OK with either18:09
vilobhmm1I discussed this with Kennan and he seems to agree with me that we should clean off the dead code…wanted to get your opinion. If you also agree will submit a patch accordingly18:09
hongbinI have no problem to clean up18:10
vilobhmm1hongbin : ok thanks  :)18:10
openstackgerritManjeet Singh Bhatia proposed openstack/magnum: Change grep option dev-build-atomic-image.rst  https://review.openstack.org/21896318:12
hongbinvilobhmm1: but I think you might need to discuss with other cores. Do you know who commit that method?18:13
hongbinvilobhmm1: I guess it is Jay Lau or Madhuri18:15
hongbinvilobhmm1: So yes, I guess the best way is to discuss with the person who commit the code, and ask them if they are OK to clean up18:16
vilobhmm1hongbin : looks like you only added it https://github.com/openstack/magnum/commit/e54428845b9d42508bc8102976588d05102ae13e :) alteast the initial framework for get_pods_by_bay_uuid18:18
*** julim has quit IRC18:18
vilobhmm1hongbin : sure will do that…seems like madhuri is away will check with jay lau18:18
hongbinvilobhmm1: I just renamed it, not me :)18:19
vilobhmm1ok https://github.com/openstack/magnum/commit/71458fb8ea775646219daacf7908d6277ccdb812 seems to have added it then18:19
hongbinThat guy is inactive in Magnum18:20
vilobhmm1just the point is there r no consumers of this code !18:20
hongbink18:21
*** jlcoello has joined #openstack-containers18:21
*** julim has joined #openstack-containers18:21
hongbinThen it is fine I guess18:21
vilobhmm1let me submit a patch and mark it as WIP18:21
vilobhmm1and will add cores to this review18:21
hongbinsounds good18:21
vilobhmm1cool18:22
*** chandankumar has quit IRC18:26
*** banix has quit IRC18:28
*** rpothier has joined #openstack-containers18:29
*** jasonsb_ has joined #openstack-containers18:42
*** dflorea has joined #openstack-containers18:42
*** juggler has quit IRC18:47
*** daneyon_ has joined #openstack-containers18:47
*** ig0r__ has quit IRC18:48
*** dflorea_ has joined #openstack-containers18:48
*** daneyon has quit IRC18:49
*** chandankumar has joined #openstack-containers18:50
*** SourabhP has quit IRC18:50
openstackgerritVilobh Meshram proposed openstack/magnum: WIP : Remove unused DB API and Pod object API  https://review.openstack.org/21790818:50
vilobhmm1hongbin : ^^18:51
*** dflorea has quit IRC18:51
*** sthillma_ has joined #openstack-containers18:58
*** eghobo_ has quit IRC18:59
*** eghobo has joined #openstack-containers19:00
*** eghobo has quit IRC19:00
*** sthillma has quit IRC19:01
*** sthillma_ is now known as sthillma19:01
*** SourabhP has joined #openstack-containers19:01
*** eghobo has joined #openstack-containers19:01
*** sdake has quit IRC19:03
openstackgerritOpenStack Proposal Bot proposed openstack/magnum: Updated from global requirements  https://review.openstack.org/21890719:04
*** sdake has joined #openstack-containers19:10
*** sdake has quit IRC19:10
*** sdake has joined #openstack-containers19:10
*** dflorea has joined #openstack-containers19:10
*** dflorea_ has quit IRC19:11
*** dflorea has quit IRC19:12
*** jwcroppe has joined #openstack-containers19:13
*** jwcroppe_ has quit IRC19:15
*** Drago has quit IRC19:32
*** Drago has joined #openstack-containers19:32
*** sthillma_ has joined #openstack-containers19:32
*** banix has joined #openstack-containers19:34
*** sthillma has quit IRC19:34
*** sthillma_ is now known as sthillma19:34
*** chandankumar has quit IRC19:43
mfalaticNeed a bit of info: on the master node of a bay, etcd should be running, right? It shouldn't start and then die.19:56
mfalatic(or is it not running til some later stage)19:56
mfalaticI'd expect it to be running.... the fact that it's dying pretty quickly is of concern.19:57
*** david-lyle has quit IRC20:01
*** dane_leblanc has quit IRC20:02
*** david-lyle has joined #openstack-containers20:06
*** dflorea has joined #openstack-containers20:10
*** dane_leblanc has joined #openstack-containers20:11
*** ddecapit has joined #openstack-containers20:11
*** dims has joined #openstack-containers20:11
*** dims has quit IRC20:12
*** ddecapit_ has joined #openstack-containers20:14
*** dims_ has quit IRC20:14
*** dflorea_ has joined #openstack-containers20:17
*** ddecapit has quit IRC20:17
*** dflorea has quit IRC20:20
*** muralia has quit IRC20:25
*** dflorea_ has quit IRC20:33
*** dflorea has joined #openstack-containers20:35
*** rlrossit1 has joined #openstack-containers20:37
*** dflorea_ has joined #openstack-containers20:38
*** dflorea has quit IRC20:38
*** achanda has quit IRC20:38
*** rlrossit has quit IRC20:39
*** dflorea has joined #openstack-containers20:41
*** achanda has joined #openstack-containers20:41
*** achanda has quit IRC20:41
*** achanda has joined #openstack-containers20:41
hongbinmfalatic: Do you have the log of etcd? That will possibly tell you why it die.20:43
mfalaticI'm trying to determine if it should be dying at all. If the answer is No, then clearly I'm seeing a problem.20:44
*** kebray has joined #openstack-containers20:44
*** kebray has quit IRC20:44
*** dflorea_ has quit IRC20:45
*** kebray has joined #openstack-containers20:45
*** dflorea has quit IRC20:45
*** dflorea has joined #openstack-containers20:45
hongbinmfalatic: No, it should not die20:46
mfalaticThought so... thanks!20:47
*** dflorea has quit IRC20:50
*** jwcroppe_ has joined #openstack-containers20:55
*** jwcroppe has quit IRC20:57
*** rlrossit1 has left #openstack-containers20:57
*** dims has joined #openstack-containers20:57
*** kebray has quit IRC20:59
*** jlcoello has quit IRC20:59
*** jlcoello has joined #openstack-containers21:00
*** jlcoello has quit IRC21:00
*** jasonsb_ has quit IRC21:01
*** jlcoello has joined #openstack-containers21:01
*** jwcroppe has joined #openstack-containers21:02
*** jwcroppe_ has quit IRC21:04
*** jlcoello has quit IRC21:05
openstackgerritDaneyon Hansen proposed openstack/python-magnumclient: WIP: Adds Container Networking Model Support  https://review.openstack.org/21526021:07
*** jwcroppe_ has joined #openstack-containers21:07
*** jwcroppe has quit IRC21:10
*** banix has quit IRC21:10
*** banix has joined #openstack-containers21:14
*** julim has quit IRC21:14
*** ddecapit_ has quit IRC21:15
*** jwcroppe has joined #openstack-containers21:28
*** jwcroppe_ has quit IRC21:31
openstackgerritVilobh Meshram proposed openstack/magnum: WIP : Remove unused DB API get_rcs_by_bay_uuid  https://review.openstack.org/21786521:37
*** jlcoello has joined #openstack-containers21:37
*** jlcoello has quit IRC21:37
*** jlcoello has joined #openstack-containers21:38
*** jlcoello_ has joined #openstack-containers21:39
*** jlcoello has quit IRC21:42
*** Drago has quit IRC21:43
*** dave-mccowan has quit IRC21:46
*** jlcoello_ has quit IRC21:48
*** rpothier has quit IRC21:54
*** eghobo has quit IRC21:57
openstackgerritVilobh Meshram proposed openstack/magnum: Remove unused DB API and Service object API  https://review.openstack.org/21904322:06
*** dimtruck is now known as zz_dimtruck22:11
*** banix has quit IRC22:12
*** jruano has quit IRC22:14
*** eghobo has joined #openstack-containers22:14
*** dane_leblanc has quit IRC22:16
*** muralia has joined #openstack-containers22:17
*** Drago has joined #openstack-containers22:18
manjeetsanybody expert on this document dev-build-atomic-image.rst ?22:26
*** _navneet_ has quit IRC22:28
*** pradk has quit IRC22:33
openstackgerritMerged openstack/magnum: Add default for node_count and bay_create_timeout  https://review.openstack.org/21806522:37
*** ctrath has quit IRC22:42
*** muralia has quit IRC22:44
*** muralia has joined #openstack-containers22:44
openstackgerritTon Ngo proposed openstack/magnum: Migrate to Kubernetes Release 1 (devstack plugin)  https://review.openstack.org/21064122:51
openstackgerritTon Ngo proposed openstack/magnum: Migrate to Kubernetes Release 1 (docs)  https://review.openstack.org/20730022:51
openstackgerritTon Ngo proposed openstack/magnum: Migrate to Kubernetes Release 1 (scripts)  https://review.openstack.org/20729922:51
*** ameybhide has joined #openstack-containers22:52
*** jruano has joined #openstack-containers22:58
*** jjfreric has joined #openstack-containers23:04
*** jjfreric has quit IRC23:04
Tangomanjeets: Hi Manjeet, maybe I can help23:05
openstackgerritMerged openstack/magnum: X-User is deprecated and X-Storage-Token is useless  https://review.openstack.org/21817123:05
*** Drago has quit IRC23:08
*** irenab_ has joined #openstack-containers23:14
manjeetsTango: thanks23:14
Tangomanjeets: Are building an image?23:15
Tangomanjeets: Are you building an image?23:15
manjeetstango: yes23:15
manjeetsso i have flannel, etcd and kuberernetes added23:15
*** irenab has quit IRC23:16
*** irenab_ is now known as irenab23:16
*** daneyon has joined #openstack-containers23:16
manjeetsTango: what is host rpm-ostree repo for ?23:17
*** daneyon_ has quit IRC23:17
Tangomanjeets: It's Atomic way of managing their packages and doing the atomic update to the OS23:17
*** eghobo has quit IRC23:18
Tangomanjeets: http://www.projectatomic.io/docs/compose-your-own-tree/23:18
*** hongbin has quit IRC23:18
*** daneyon_ has joined #openstack-containers23:18
manjeetsTango: what if I just want to use any other linux distro other than atomic ?23:19
Tangoyou could23:21
*** eghobo has joined #openstack-containers23:21
manjeetsTango: some time I feel there should be generic documentation for using different os with magnum23:22
*** daneyon has quit IRC23:22
Tangomanjeets: The current config scripts have been tested with the Atomic image.  They just need to be tweaked for other distro23:22
Tangomanjeets: That would be a good exercise,writing a new doc to explain how to do this.23:23
manjeetsTango: by config scripts you mean heat-template yaml files ?23:23
Tangomanjeets: right, yaml or sh script23:23
manjeetsTango: my assumption is os image should have atleast flannel, docker, etcd and kubernetes23:25
Tangomanjeets: Well, daneyon is factoring out flannel as part of the networking blueprint, so soon we won't have flannel as part of the image23:26
manjeetsoh yes23:27
Tangomanjeets: This is so that the networking plugin can be more generic23:27
manjeetsI see network driver option is under construction23:28
*** jruano has quit IRC23:29
*** eghobo has quit IRC23:37
manjeetsTango: anything else is needed other than that ?23:39
Tangomanjeets: That should be all23:41
*** dave-mccowan has joined #openstack-containers23:41
manjeetsTango: what should be alternative for atomic updates ?23:41
Tangomanjeets: You mean to modify the image?23:42
manjeetsyes ?23:42
Tangomanjeets: hmm, I am not sure, good question to ask the Atomic folks. It seems they build everything around rpm-ostree23:44
*** adrian_otto has quit IRC23:46
Tangomanjeets: Heading out23:46
manjeetsTango: Thanks I appreciate it23:47
*** manjeets has left #openstack-containers23:47
*** manjeets has joined #openstack-containers23:48
*** eghobo has joined #openstack-containers23:49
*** manjeets has quit IRC23:50
*** Tango has quit IRC23:51
*** achanda_ has joined #openstack-containers23:58

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