Friday, 2015-09-11

*** linkedinyou has joined #puppet-openstack00:03
*** zhangjn has joined #puppet-openstack00:07
*** derekh has quit IRC00:11
openstackgerritliaonanhai proposed openstack/puppet-nova: Set reserved_host_memory_mb to 0 using ironic  https://review.openstack.org/21187200:27
*** zhangjn has quit IRC00:31
openstackgerritMerged openstack/puppet-keystone: Authentication URLs and endpoint clarity re-factor  https://review.openstack.org/22156700:43
*** tiswanso has joined #puppet-openstack00:54
*** tiswanso has quit IRC00:57
*** tiswanso has joined #puppet-openstack00:58
openstackgerritGilles Dubreuil proposed openstack/puppet-keystone: Providers tenant/user/user_role: domain check/name  https://review.openstack.org/21805901:02
openstackgerritGilles Dubreuil proposed openstack/puppet-keystone: domain name from id lookups return empty  https://review.openstack.org/22242801:21
*** severion has quit IRC01:21
*** severion has joined #puppet-openstack01:22
*** kindjal has quit IRC01:23
*** xarses has quit IRC01:32
*** xarses has joined #puppet-openstack01:33
openstackgerritMerged openstack/puppet-tripleo: loadbalancer: use 'source' for novnc balance mode  https://review.openstack.org/21946401:35
*** xingchao has joined #puppet-openstack01:37
openstackgerritGilles Dubreuil proposed openstack/puppet-keystone: Resource keystone_trust for Keystone V3 API  https://review.openstack.org/20099601:38
*** yogesh-pc has joined #puppet-openstack01:41
*** severion has quit IRC01:42
*** zhangjn has joined #puppet-openstack01:42
*** severion has joined #puppet-openstack01:42
gildubEmilienM, https://review.openstack.org/218044 is passing with both domain parameter or not01:52
EmilienMgildub: cool01:54
gildubEmilienM, wait...sorry..still waiting, I looked at the wrong one ^, waiting for https://review.openstack.org/21805901:54
EmilienMI go to bed now01:54
EmilienMI'll see tomorrow01:54
EmilienMmichchap: can you look https://review.openstack.org/#/q/topic:puppet/liberty,n,z today ?01:54
gildubEmilienM, ah, sure!!01:55
EmilienMand any core around01:55
EmilienMgood night01:55
michchapEmilienM: yah01:55
michchapEmilienM: night01:55
gildubEmilienM, bonne nuit01:55
michchapEmilienM: fixed CI?01:55
EmilienMmichchap: all is GREEN01:55
EmilienM:)01:55
michchapEmilienM: yay :)01:55
EmilienMubuntu/centos on liberty is now pretty stable01:55
EmilienMyeah01:55
EmilienMkudos to packagers01:55
EmilienMok I'm off01:56
*** xingchao has quit IRC02:14
*** zhangjn has quit IRC02:18
gildubmichchap, could you please check this backport? https://review.openstack.org/222428/02:24
*** TC01 has quit IRC02:25
VinshCheers to the good work on the CI issues. :)02:28
richmgildub: sorry, I just got back02:28
richm1) yes, outside of puppet - but it doesn't have to be different for puppet, and it makes usage of puppet more consistent with everything else, which is a good thing - anything that makes puppet more palatable is a good thing (within reason)02:30
richm2) for the case of self.instances, in order to generate a unique title for the resource, we can use the name::domain - but the name would still be 'name' and there would be a domain parameter 'domain' as well - note that in every case, a resource is uniquely identified by the _combination_ of name + domain, just as it is outside of puppet everywhere else02:31
richm3) there are already cases where resources are named like this:02:31
richmkeystone_user { 'this is the heat template admin user': name => 'admin', domain => 'heat'}02:32
richmgildub: there is absolutely no way that keystone_user.self.instances can create that title02:32
richmgildub: so puppet resource already doesn't work consistently02:32
*** TC01 has joined #puppet-openstack02:33
gildubrichm, no worries, welcome back ;)02:33
richmgildub: even for resource collectors, the user can specify Keystone_user <| (name == 'username') and (domain == 'domainname') |>02:33
richmthe only case where it will be tricky is dependencies like this:02:34
richmKeystone_user[ how to specify username + domainname here? ] -> Keystone_user_role[ how to specify user + domain @ project + domain here? ]02:35
richmThat's really the only case where I can see it would be useful to be able to specify Keystone_user["username::domain"] -> Keystone_user_role["username::domain@project::domain"]02:36
gildubrichm, yeah and that case should be the hint telling us that if don't do that then that's going to the road02:37
richmso we have to support name::domain for that one case - no big deal02:37
gildubrichm, sorry, ^ the road to *hell*02:37
gildubrichm, and for trust02:37
richmfor trust, it just means we have to support extra parameters - trustor domain, trustee domain, etc.02:38
richmas far as what the Keystone guys want - they only require that you can specify a domain name for every domain scoped resource, no matter where it is02:39
gildubrichm, we can't have any extra params for trust, well we can but that's not going to help solve having a unique name02:39
gildubrichm, true ^^02:39
richmotherwise, why didn't they adopt the username = user::domain naming convention or some other compound naming convention for everything else they did?02:39
richm"we can't have any extra params for trust"?02:40
richmThere are two ways unique names are generated:02:40
gildubrichm, well that goes back to what you're saying with 1. Puppet has idempotent requirement others don't have02:40
richmYes, idempotent (ansible has it too, and I'll bet they are not doing ::domain)02:41
richmthere are two ways unique names are created02:42
richm1) by the user who is writing the manifest02:42
richmin this case, as long as the user can create some unique string, we don't really care what it is02:42
richm2) by self.instances - in this case, it doesn't really matter, as long as we can uniquely identify the resource by the other fields02:43
richmtrusts poses a unique problem because a trust has no name02:43
*** severion has quit IRC02:43
richmso perhaps we apply the same 1) and 2) above to both the trust resource 'title' and 'name'02:44
gildubrichm, 1) well that's true only if one have a way to store that unique string somewhere02:44
richmfor 1) it doesn't matter what the user names the trust, as long as they make it unique02:44
richm2) it doesn't matter what self.instances names the trust, because the user will usually not see it02:45
*** severion has joined #puppet-openstack02:45
richm1) we don't have to store that unique string anywhere - why?02:45
gildubrichm, same-same ^, trust don't have any extra field we could use for their side effects  to store the string02:45
richmwe are already storing the other attributes that uniquely identify that trust02:45
richmthe combination of trustor,trustee,etc. uniquely identifies the trust - what difference does it make what the name, especially if it is not stored anywhere?02:46
richmsort of like keystone_user_role - 'user@project' isn't the 'name', and the 'name' isn't stored anywhere02:47
richmand it's only a 'convenience' that we are able to derive the unique properties of the keystone_user_role from the 'user@project' + roles parameter02:47
gildubrichm, lets put trust on the side for a second02:47
richmwe could just as easily force people to provide user + userdomain + project + projectdomain parameters for each keystone_user_role02:48
*** yogesh-pc has quit IRC02:48
gildubrichm, if I says "myresource {"blah": param1='1' }" and later myresource {"blah": param1='2' }" you're going to end up with 2 resources02:48
richmright02:48
richmbut02:48
gildubrichm, so it's not idempotent02:48
richm"myresource {"blah1": name='blah', param1='1' }" and later myresource {"blah2": name='blah2',param1='2' }"02:49
richmyou have to make the _title_ unique02:49
richmas long as the combination of name + param1 + whatever uniquely identifies the resource02:49
richmso what if self.instances doesn't know that the resource titles are "blah1" and "blah2" as long as it can also generate unique resource titles02:50
*** ducttape_ has joined #puppet-openstack02:50
richmand self.prefetch can uniquely match a resource with a puppet declaration02:50
richmin this case, openstack blah list will return02:51
richmblah1_id blah1 102:51
richmblah2_id blah2 102:51
richmself.instances will create something like "myresource {"blah::1": name='blah', param1='1' }" and later myresource {"blah::2": name='blah2',param1='2' }"02:52
richmsorry, openstack blah list will return02:52
richmblah1_id blah 102:52
richmblah2_id blah 202:52
richmgrr, sorry, typing too fast too late at night02:52
richmself.instances will create something like "myresource {"blah::1": name='blah', param1='1' }" and later myresource {"blah::2": name='blah',param1='2' }"02:53
gildubrichm, sure but the issue is not having different blah1 or blah2, it's about when there is two blah1 with different params02:53
richmgildub: ok, give me an example02:53
gildub"project {'p1': name=>'project1', domain=>'d1'}" then later another puppet is re-run with this "project {'p1': name=>'project2', domain=>'d1'}"02:54
gildubrichm, ^ what happens then?02:54
richmIf they are in the same manifest/puppet catalog, then the second would be rejected because the title is already used by another resource02:56
richmif in completely different runs/puppet catalogs, then you would end up with two different resources02:56
richmproject1 in domain d1, and project2 in domain d102:56
richmbecause the combination of name+domain is unique - the title isn't used02:57
gildubrichm, either way that's wrong ...^02:57
richmwhy?02:57
*** aimon has joined #puppet-openstack02:58
gildubrichm, ending up with two different resources is not what the user would expect when using a supposedly unique resource name, is it?02:58
richmit is if they _explicitly gave different parameters_02:59
*** aimon_ has quit IRC02:59
richmin this case, they explicitly provided name=>'project1', domain=>'d1' and name=>'project2', domain=>'d1'02:59
richmwhich explicitly specify two different, distinct, unique resources03:00
gildubrichm, I'm surprised, believe me I've flapping about that too, but yesterday you nailed it when I suggested not using :: and use domain, then you said 'not idemptotent' and you're right03:00
richmthe point I'm trying to get across is that the resource { 'title string': ...}03:01
richmthe 'title string' doesn't matter03:01
richmas long as it doesn't conflict with another resource03:02
richmthe 'title string' doesn't have anything to do with idempotency03:02
richmit is merely a convenience of puppet that the 'title string' is also used as the name if the 'name' parameter is not given03:03
gildubrichm, it doesn't, well when we end up with 2 resources with the same name then that's not idempotent03:03
richmbut we don't end up with 2 resources with the same name03:03
richmwell, name yes - but again, it doesn't matter that the names are not unique03:04
richmit only matters that the title is unique03:04
gildubrichm, I disagree, we need to take this to the community, see what the users thinks and probably get feed back from puppet channel as well03:04
gildubanother, better counter example that would screw things: "project {'p1': name=>'project1', domain=>'d1'}" then re-run with "project {'p1': name=>'project1', domain=>'d2'}"03:07
gildubrichm, ^03:07
richmwhy?  you would have two unique resources - project1 in domain d1 and project1 in domain d203:08
richmassuming you ran in two completely different puppet manifests/catalogs03:08
gildubrichm, there should be no assumption what so ever, the provider shouldn't be doing any crystal bulb sort of guess, because it's going to drive everyone crazy03:09
gildubrichm, but yes if you'd like, just run it in a different session03:10
richmwell, you can't run it in the same session or puppet will complain about duplicate resource titles03:11
gildubrichm, yes in that case, but that's not my point03:11
richmare you saying that it will be a problem because people that use puppet will assume that the title is supposed to be the name?03:14
gildubrichm, I thinks so03:14
richmthere are already counter examples in the openstack puppet code03:14
gildubrichm, I would like to get others viewpoints03:14
gildubrichm, richm, well it's not because some code is wrong that make it right03:15
gildubwe're spending enough time fixing others bad stuff (include mine)...03:15
openstackgerritMerged openstack/puppet-neutron: Make vswitch optional for ovs agent configuration  https://review.openstack.org/22149503:16
gildubrichm, the title is the name unless a name is provided03:17
*** aimon_ has joined #puppet-openstack03:17
gildubrichm, but when a name is provided, uniqueness among all resources of a same provider is expected03:18
gildubrichm, with such name, and this is where we cross the line03:18
richmok - I would like to know if that is a puppet convention or a hard requirement03:19
*** aimon has quit IRC03:19
gildubmichchap, haven't you been burn with those unique name stuff already? per my last 3 comments?03:20
gildubrichm, if it's a puppet convention, don't you think that would make it a requirement?03:20
gildubmichchap, s/burn/burnt03:21
richmif convention means "something that puppet programmers usually do as a convenience" then no, that's not a requirement03:22
gildubrichm, fair enough03:22
gildubrichm, ok, what about seeing what feedback we can get from puppet channel?03:23
richmyes03:23
richmI am over my head about puppet internals03:24
*** tiswanso has quit IRC03:24
*** tiswanso has joined #puppet-openstack03:24
gildubrichm, tell me about it!03:26
gildubrichm, you mentioned ansible above, I think we should switch to #ansible-opentstack, :) - Ansible doesn't have to deal with those name/title crap!03:28
gildubrichm, ok, I've pushed the following question to #puppet channel:03:30
gildubHi, there has been some discussion on #puppet-openstack about using unique names for some providers. The question is: "In a resource, the title is the name unless a name is provided. So when a name is provided is it expected the name has uniqueness among all object of the same resource?"03:30
gildubrichm, hope that's a good starting point, if not feel free to jump in (I know it's getting late for you, sorry!)03:31
* gildub thinks ansible is more sensible03:32
michchapI noticed ansible doesn't have the level of control over resource instancing and batching that puppet has.03:32
michchapwhich makes it not so great for managing large numbers of things from a rest api or whatever.03:33
michchapotherwise I quite like it.03:33
gildubyeah puppet has provided some good/strong abstract03:34
gildubjust being a bit frustrated too :)03:34
gildubansible saved my job when I got started with neutron, because the steps are sys/admin clear (before going to more generalization), also the orcherstration is possible, something puppet has not offered, at least in the community version03:38
gildubI keep wondereing if puppetlabs who is still doing what I call open source 1.0, a community edition (behind in features) and an enterprise one (cutting edge).03:39
openstackgerritMatt Fischer proposed openstack/puppet-keystone: Fix *_workers config settings.  https://review.openstack.org/22245003:42
gildubwhere opensource 2.0 is the community edition (upstream) with the latest and the enterprise one is the downstream supported version03:43
openstackgerritTimothy Swanson proposed openstack/puppet-neutron: Remove use of template based config from cisco ml2 nexus plugin.  https://review.openstack.org/22245103:53
*** ducttape_ has quit IRC04:04
*** ducttape_ has joined #puppet-openstack04:07
gildubrichm, on the #puppet channel, crinkle offered that link https://groups.google.com/forum/#!topic/puppet-dev/CVYwvHnPSMc04:14
*** richm has quit IRC04:15
gildubrichm, also it seems both approaches are valid:04:15
*** tiswanso has quit IRC04:16
*** ducttape_ has quit IRC04:17
openstackgerritMatt Fischer proposed openstack/puppet-keystone: Fix *_workers config settings.  https://review.openstack.org/22245004:21
_ody_gildub: I am going to have to correct you.  Puppet 4, much more cutting edge has been out for several months.  Puppet Enterpise will only ship with Puppet 4 laster this fall.04:29
_ody_Puppet-server, the rewrite of the puppet master function was rewritten and released as a jruby/clojure application last year.  It only shipped in PE a few months ago.04:30
*** _ody_ is now known as _ody04:31
*** llua^_^AznSmile- is now known as llua04:34
*** llua has joined #puppet-openstack04:34
gildub_ody, what about the orchestration bit? At openstack summit in Paris, I heard it's coming with puppet 404:50
gildub_ody, thanks for the correction, I'm glad to hear that!04:51
*** linkedinyou has quit IRC05:32
*** admin0 has joined #puppet-openstack05:41
*** admin0 has quit IRC05:52
*** fedexo has joined #puppet-openstack05:54
*** Vinsh_ has joined #puppet-openstack06:01
*** Vinsh has quit IRC06:01
*** xingchao has joined #puppet-openstack06:12
*** markvoelker has quit IRC06:16
*** fedexo has quit IRC06:25
*** jerrygb has quit IRC06:54
*** jerrygb has joined #puppet-openstack06:55
*** stamak has joined #puppet-openstack06:57
*** Oszkar has joined #puppet-openstack06:58
*** chandankumar has joined #puppet-openstack06:58
*** jerrygb has quit IRC07:00
*** gildub has quit IRC07:08
*** Oszkar has quit IRC07:11
*** Oszkar has joined #puppet-openstack07:11
*** markvoelker has joined #puppet-openstack07:17
*** ducttape_ has joined #puppet-openstack07:17
*** stamak has quit IRC07:18
*** ducttape_ has quit IRC07:22
*** markvoelker has quit IRC07:22
*** admin0 has joined #puppet-openstack07:28
*** arnaud_orange has quit IRC07:33
*** admin0 has quit IRC07:33
*** linkedinyou has joined #puppet-openstack07:35
*** jpena has joined #puppet-openstack07:36
*** admin0 has joined #puppet-openstack07:39
*** chandankumar has quit IRC07:42
*** arnaud_orange has joined #puppet-openstack07:44
*** admin0 has quit IRC07:44
*** admin0 has joined #puppet-openstack07:45
openstackgerritVasyl Saienko proposed openstack/puppet-horizon: remove hardcoded 'hypervisor_options' list  https://review.openstack.org/21563907:47
openstackgerritVasyl Saienko proposed openstack/puppet-horizon: remove hardcoded 'cinder_options' list  https://review.openstack.org/21565107:47
openstackgerritVasyl Saienko proposed openstack/puppet-horizon: remove hardcoded 'neutron_options' list  https://review.openstack.org/21568207:47
*** gildub has joined #puppet-openstack07:49
*** chandankumar has joined #puppet-openstack07:58
*** derekh has joined #puppet-openstack08:12
*** jistr has joined #puppet-openstack08:22
*** xingchao has quit IRC08:33
*** IBerezovskiy has joined #puppet-openstack08:39
*** stamak has joined #puppet-openstack08:54
*** paramite has joined #puppet-openstack09:00
*** xingchao has joined #puppet-openstack09:04
*** dprince has joined #puppet-openstack09:21
*** admin0 has quit IRC09:32
*** admin0 has joined #puppet-openstack10:12
*** gildub has quit IRC10:14
*** admin0 has quit IRC10:15
*** gildub has joined #puppet-openstack10:18
gildubxingchao, hi could you please check https://review.openstack.org/222428 and https://review.openstack.org/222017 ?10:19
*** linkedinyou has quit IRC10:20
openstackgerritMerged openstack/puppet-designate: acceptance: switch RDO to CBS repositories  https://review.openstack.org/22226910:22
openstackgerritMerged openstack/puppet-ironic: acceptance: bump to Liberty  https://review.openstack.org/22227310:24
openstackgerritMerged openstack/puppet-horizon: acceptance: bump to Liberty  https://review.openstack.org/22227210:25
openstackgerritMerged openstack/puppet-sahara: acceptance: switch RDO to CBS repositories  https://review.openstack.org/22227710:27
openstackgerritMerged openstack/puppet-keystone: acceptance: switch RDO to CBS repositories  https://review.openstack.org/22227410:28
openstackgerritMerged openstack/puppet-neutron: acceptance: switch RDO to CBS repositories  https://review.openstack.org/22227610:28
*** admin0 has joined #puppet-openstack10:29
openstackgerritMerged openstack/puppet-manila: acceptance: switch RDO to CBS repositories  https://review.openstack.org/22227510:29
openstackgerritMerged openstack/puppet-trove: acceptance: switch RDO to CBS repositories  https://review.openstack.org/22227910:31
openstackgerritMerged openstack/puppet-heat: acceptance: switch RDO to CBS repositories  https://review.openstack.org/22227110:31
openstackgerritMerged openstack/puppet-openstack-integration: switch RDO to CBS repositories  https://review.openstack.org/22238510:32
openstackgerritMerged openstack/puppet-nova: acceptance: switch RDO to CBS repositories  https://review.openstack.org/22202510:36
openstackgerritSergey Kolekonov proposed openstack/puppet-neutron: Add parameters for Neutron QoS support  https://review.openstack.org/21665410:39
openstackgerritMerged openstack/puppet-swift: acceptance: switch RDO to CBS repositories  https://review.openstack.org/22227810:40
*** xingchao has quit IRC10:43
*** xingchao has joined #puppet-openstack10:48
*** admin0 has quit IRC10:50
openstackgerritDenis Egorenko proposed openstack/puppet-sahara: Revert "Fixed /etc/sahara handling"  https://review.openstack.org/22214211:00
*** zhangjn has joined #puppet-openstack11:02
*** zhangjn has quit IRC11:02
*** markvoelker has joined #puppet-openstack11:04
*** markvoelker has quit IRC11:09
*** xingchao has quit IRC11:10
*** admin0 has joined #puppet-openstack11:11
*** xingchao has joined #puppet-openstack11:12
*** cdelatte has joined #puppet-openstack11:24
*** gildub has quit IRC11:26
degorenkospredzy, hey o/ are you here?11:31
iurygregorygood morning11:35
degorenkomorning :)11:35
iurygregory:D11:35
EmilienMgood morning folks11:36
iurygregoryo/11:37
degorenkoo/11:37
degorenkoEmilienM, may be you can help me. I don't understand, why https://review.openstack.org/222142 has failed test for CentOs. It failed to check port 8386, but ss has positive result.11:40
degorenkoand local tests - ok11:40
*** ducttape_ has joined #puppet-openstack11:53
*** jpena is now known as jpena|lunch12:00
openstackgerritMerged openstack/puppet-cinder: acceptance: switch RDO to CBS repositories  https://review.openstack.org/22226612:02
openstackgerritMerged openstack/puppet-glance: acceptance: switch RDO to CBS repositories  https://review.openstack.org/22227012:03
*** ducttape_ has quit IRC12:04
*** xingchao has quit IRC12:05
*** xingchao has joined #puppet-openstack12:08
*** chandankumar has quit IRC12:09
*** jayg|g0n3 is now known as jayg12:13
*** markvoelker has joined #puppet-openstack12:15
*** tiswanso has joined #puppet-openstack12:21
*** tiswanso has quit IRC12:23
*** tiswanso has joined #puppet-openstack12:24
*** yogesh-pc has joined #puppet-openstack12:25
*** stamak has quit IRC12:25
openstackgerritMerged openstack/puppet-tripleo: Add package_manifest resource.  https://review.openstack.org/20380312:33
*** tiswanso has quit IRC12:38
openstackgerritYanis Guenane proposed openstack/puppet-cinder: Move default value to '<SERVICE DEFAULT>'  https://review.openstack.org/22100512:41
spredzydegorenko, yep12:44
iurygregoryhey people anyone can review https://review.openstack.org/#/c/208054/ ^^ Thanks12:46
openstackgerritMerged openstack/puppet-ceilometer: acceptance: bump to Liberty  https://review.openstack.org/22226512:50
*** paramite is now known as paramite|afk12:55
*** ducttape_ has joined #puppet-openstack12:59
*** jpena|lunch is now known as jpena13:00
*** jtomasek has quit IRC13:01
*** paramite|afk is now known as paramite13:02
openstackgerritGael Chamoulaud proposed openstack/puppet-trove: Fix rspec 3.x syntax  https://review.openstack.org/22259313:05
*** yogesh-pc has quit IRC13:05
*** xingchao has quit IRC13:05
degorenkospredzy, can you help me with  https://review.openstack.org/222142 . It  has failed test for CentOs. It failed to check port 8386, but ss has positive result.13:07
*** stamak has joined #puppet-openstack13:08
*** morazi has joined #puppet-openstack13:11
*** ducttape_ has quit IRC13:12
openstackgerritYanis Guenane proposed openstack/puppet-tripleo: Allow a user to specify the syslog address for HAProxy  https://review.openstack.org/22259513:14
*** logan2 has quit IRC13:15
openstackgerritYanis Guenane proposed openstack/puppet-tripleo: Allow a user to specify the syslog address for HAProxy  https://review.openstack.org/22259513:16
*** richm has joined #puppet-openstack13:17
openstackgerritEmilien Macchi proposed openstack/puppet-nova: Implement WSGI support for Nova API  https://review.openstack.org/21331513:20
*** v1k0d3n has joined #puppet-openstack13:22
*** severion has quit IRC13:23
openstackgerritMerged openstack/puppet-horizon: remove hardcoded 'hypervisor_options' list  https://review.openstack.org/21563913:23
openstackgerritMerged openstack/puppet-horizon: remove hardcoded 'cinder_options' list  https://review.openstack.org/21565113:23
openstackgerritMerged openstack/puppet-horizon: remove hardcoded 'neutron_options' list  https://review.openstack.org/21568213:25
Vinsh_jpena: I bet the object-expirer patch lands if rebased with this: https://review.openstack.org/#/c/222278/213:37
*** Vinsh_ is now known as Vinsh13:37
EmilienMVinsh: do recheck13:37
Vinshwell maybe not. thats redhat. hm.13:37
openstackgerritJavier Peña proposed openstack/puppet-swift: Add support for swift-object-expirer service  https://review.openstack.org/21154913:37
Vinsh^^ was me.13:38
jpenawell, it doesn't hurt to rebase :)13:38
VinshId really like to see that review merged.  Its a great addition :)13:38
*** logan2 has joined #puppet-openstack13:43
openstackgerritVasyl Saienko proposed openstack/puppet-horizon: add api_versions parameter  https://review.openstack.org/21165013:45
openstackgerritMerged openstack/puppet-ceilometer: Disable lint warning check  https://review.openstack.org/22061313:48
openstackgerritMerged openstack/puppet-horizon: Add ssl_no_verify parameter  https://review.openstack.org/20619413:50
*** ducttape_ has joined #puppet-openstack13:52
openstackgerritMerged openstack/puppet-ceilometer: acceptance/eventlet: make sure apache is stopped  https://review.openstack.org/21603813:55
openstackgerritEmilien Macchi proposed openstack/puppet-openstack-integration: Prepare Tempest and run smoke  https://review.openstack.org/21735214:03
*** kindjal has joined #puppet-openstack14:03
*** dfisher has joined #puppet-openstack14:04
*** paramite is now known as paramite|afk14:05
*** tiswanso has joined #puppet-openstack14:05
openstackgerritMerged openstack/puppet-designate: Creation of designate::db::sync  https://review.openstack.org/19662214:06
*** Oszkar has quit IRC14:07
*** kindjal has quit IRC14:08
*** paramite|afk is now known as paramite14:08
openstackgerritEmilien Macchi proposed openstack/puppet-openstack-integration: run_tests: stop pinning tempest repo  https://review.openstack.org/22262114:08
openstackgerritMerged openstack/puppet-swift: Config resources applied after config template  https://review.openstack.org/20524314:09
*** Oszkar1 has joined #puppet-openstack14:09
*** Oszkar1 has quit IRC14:10
*** Oszkar has joined #puppet-openstack14:10
*** kindjal has joined #puppet-openstack14:10
*** admin0 has quit IRC14:12
*** admin0 has joined #puppet-openstack14:17
*** mflobo has left #puppet-openstack14:18
openstackgerritVasyl Saienko proposed openstack/puppet-horizon: add new parameters for multidomain support  https://review.openstack.org/21170414:31
openstackgerritVasyl Saienko proposed openstack/puppet-horizon: add api_versions parameter  https://review.openstack.org/21165014:31
*** smakar has joined #puppet-openstack14:37
openstackgerritLukas Bezdicka proposed openstack/puppet-vswitch: Explicitly say that ovs_redhat parent is ovs  https://review.openstack.org/18930114:39
*** smakar_ has joined #puppet-openstack14:39
openstackgerritMerged openstack/puppet-glance: Creation of glance::db::sync  https://review.openstack.org/19662914:42
*** stamak has quit IRC14:43
*** smakar_ has quit IRC14:44
*** smakar has quit IRC14:44
*** stamak has joined #puppet-openstack14:45
openstackgerritEmilien Macchi proposed openstack/puppet-openstack-integration: Prepare Tempest and run smoke  https://review.openstack.org/21735214:46
*** manu440 has joined #puppet-openstack14:46
manu440ciao14:47
manu440!lista14:47
openstackmanu440: Error: "lista" is not a valid command.14:47
*** zhangjn has joined #puppet-openstack14:54
*** zhangjn has quit IRC14:55
*** zhangjn has joined #puppet-openstack14:55
*** zhangjn has quit IRC14:55
*** gfidente has quit IRC14:57
*** jerrygb has joined #puppet-openstack15:01
*** gfidente has joined #puppet-openstack15:01
*** jistr is now known as jistr|mtg15:02
*** manu440 has quit IRC15:03
*** manu440 has joined #puppet-openstack15:03
openstackgerritMerged openstack/puppet-tripleo: Initial msync run for all Puppet OpenStack modules  https://review.openstack.org/18988015:03
*** snk has left #puppet-openstack15:04
*** manu440 has left #puppet-openstack15:08
*** xingchao has joined #puppet-openstack15:10
openstackgerritTimothy Swanson proposed openstack/puppet-neutron: Remove use of template based config from cisco ml2 nexus plugin.  https://review.openstack.org/22245115:11
*** paramite has quit IRC15:15
*** xingchao has quit IRC15:19
*** jistr|mtg is now known as jistr15:22
*** xingchao has joined #puppet-openstack15:22
EmilienMI updated https://wiki.openstack.org/wiki/Puppet/CI if anyone is interested to get latest updates about our CI15:25
*** AlexeyElagin has quit IRC15:33
*** AlexeyElagin has joined #puppet-openstack15:35
*** xingchao has quit IRC15:38
*** xingchao has joined #puppet-openstack15:38
*** admin0 has quit IRC15:41
tiswansoHi all... are gate-puppet-*-puppet-lint jobs set to treat WARNINGs as failures?15:45
openstackgerritSebastien Badia proposed openstack/puppet-manila: Initial msync run for all Puppet OpenStack modules  https://review.openstack.org/18987216:04
openstackgerritMerged openstack/puppet-tuskar: Initial msync run for all Puppet OpenStack modules  https://review.openstack.org/18988216:10
openstackgerritMerged openstack/puppet-trove: Initial msync run for all Puppet OpenStack modules  https://review.openstack.org/18988116:16
*** arnaud_orange has quit IRC16:23
*** stamak has quit IRC16:25
*** stamak has joined #puppet-openstack16:36
*** derekh has quit IRC16:38
openstackgerritTimothy Swanson proposed openstack/puppet-neutron: Remove use of template based config from cisco ml2 nexus plugin.  https://review.openstack.org/22245116:39
*** IBerezovskiy has quit IRC16:41
*** delattec has joined #puppet-openstack16:42
*** cdelatte has quit IRC16:44
*** stamak has quit IRC16:45
*** delattec has quit IRC16:47
openstackgerritEmilien Macchi proposed openstack/puppet-neutron: DNM - CI test  https://review.openstack.org/22270316:54
*** delattec has joined #puppet-openstack16:56
*** xingchao has quit IRC16:56
*** jistr has quit IRC17:01
*** gfidente has quit IRC17:02
*** jpena has quit IRC17:10
tiswansofigured out the answer to my question is Yes -- RE:  are gate-puppet-*-puppet-lint jobs set to treat WARNINGs as failures?17:25
*** xingchao has joined #puppet-openstack17:57
*** xingchao has quit IRC18:02
*** linkedinyou has joined #puppet-openstack18:03
*** jerrygb_ has joined #puppet-openstack18:24
*** xarses has quit IRC18:27
*** jerrygb has quit IRC18:28
*** ducttape_ has quit IRC18:40
*** ducttape_ has joined #puppet-openstack18:40
*** xarses has joined #puppet-openstack18:41
*** morazi has quit IRC18:49
*** morazi has joined #puppet-openstack18:52
*** chem has quit IRC18:55
*** jerrygb_ has quit IRC18:57
*** jerrygb has joined #puppet-openstack18:57
*** chem has joined #puppet-openstack18:59
*** fvollero_ has joined #puppet-openstack19:08
*** fvollero has quit IRC19:11
imcsk8EmilienM: about the sriov bug, i'm checking how to do acceptance tests. is this a good example? https://github.com/openstack/puppet-neutron/blob/master/spec/acceptance/neutron_config_spec.rb19:16
EmilienMno19:16
EmilienMimcsk8: you need to patch the other19:16
EmilienMand add the class19:16
* EmilienM afk lunch19:17
*** fvollero_ has quit IRC19:34
*** fvollero has joined #puppet-openstack19:34
*** fvollero_ has joined #puppet-openstack19:39
*** fvollero has quit IRC19:41
EmilienMcrinkle: I have tempest scenarios working on both ubuntu & centos https://review.openstack.org/#/c/217352/19:52
kindjalDoes anyone know how to set up Horizon on ubuntu, working around missing horizon.scss as described here? https://bugs.launchpad.net/mos/+bug/147014319:53
openstackLaunchpad bug 1470143 in Mirantis OpenStack "'dashboard/scss/horizon.scss' could not be found in the COMPRESS_ROOT '/usr/share/openstack-dashboard/static' after installation" [High,Fix released] - Assigned to MOS Packaging Team (mos-packaging)19:53
*** Oszkar1 has joined #puppet-openstack20:02
*** Oszkar has quit IRC20:03
crinkleEmilienM: cool, i'll look a little later20:06
EmilienMcrinkle: there is urgency at all - I'll continue to work on top of this patch anyway, now we have something that finally works20:06
EmilienMcrinkle: if you're deploying infra-cloud with stable/kilo, I would suggest some backports though - otherwise you'll hit the same issues I had in the gate20:07
*** morazi has quit IRC20:09
*** jayg is now known as jayg|g0n320:20
*** iurygregory has quit IRC20:30
*** dprince has quit IRC20:34
*** tiswanso has quit IRC20:35
*** fvollero_ has quit IRC20:36
*** fvollero has joined #puppet-openstack20:37
*** xarses has quit IRC20:38
*** xarses has joined #puppet-openstack20:39
*** xarses has quit IRC20:40
*** xarses has joined #puppet-openstack20:41
*** xarses has quit IRC20:43
*** iurygregory has joined #puppet-openstack20:44
*** xarses has joined #puppet-openstack20:44
*** angdraug has joined #puppet-openstack20:44
*** xarses has quit IRC20:44
*** xarses has joined #puppet-openstack20:45
*** sergmelikyan has joined #puppet-openstack20:46
*** xarses has quit IRC20:46
*** delattec has quit IRC20:48
*** iurygregory has quit IRC20:49
*** kindjal has quit IRC21:03
*** pradk has quit IRC21:10
*** sergmelikyan has quit IRC21:12
openstackgerritEmilien Macchi proposed openstack/puppet-neutron: Restart Neutron agents if packages are updated  https://review.openstack.org/19933721:20
openstackgerritEmilien Macchi proposed openstack/puppet-openstack-integration: Prepare Tempest and run smoke  https://review.openstack.org/21735221:21
*** morazi has joined #puppet-openstack21:29
*** aimon_ has quit IRC21:30
*** aimon has joined #puppet-openstack21:30
EmilienMgood week-end everyone21:47
* EmilienM away21:47
imcsk8i have a problem with spec tests, can somebody give me a hint? http://fpaste.org/266285/42008051/ thanks!21:48
*** dfisher has left #puppet-openstack21:48
*** sergmelikyan has joined #puppet-openstack21:50
*** tiswanso has joined #puppet-openstack21:51
*** ducttape_ has quit IRC21:53
*** tiswanso has quit IRC21:55
*** sergmelikyan has quit IRC22:03
*** tiswanso has joined #puppet-openstack22:22
*** sergmelikyan has joined #puppet-openstack22:24
*** tiswanso has quit IRC22:26
*** angdraug has quit IRC22:26
mfischEmilienM: are we using the official voting procedure?22:32
mfischfor PTL22:32
*** morazi has quit IRC22:35
*** guimaluf has quit IRC22:40
*** xingchao has joined #puppet-openstack23:00
*** myatsenko has quit IRC23:03
*** igajsin has joined #puppet-openstack23:03
*** myatsenko has joined #puppet-openstack23:04
*** sc` has quit IRC23:04
*** sc`_ has joined #puppet-openstack23:04
*** sc`_ is now known as sc`23:04
*** markvoelker has quit IRC23:19
*** zhangjn has joined #puppet-openstack23:20
*** zhangjn has quit IRC23:26
*** zhangjn has joined #puppet-openstack23:27
*** zhangjn has quit IRC23:32
*** ducttape_ has joined #puppet-openstack23:35
*** zhangjn has joined #puppet-openstack23:42
*** zhangjn has quit IRC23:43
*** openstackgerrit has quit IRC23:46
*** openstackgerrit has joined #puppet-openstack23:47
*** linkedinyou has quit IRC23:48
*** linkedinyou has joined #puppet-openstack23:55
*** kbyrne has quit IRC23:58

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