Friday, 2015-04-03

*** mahito has joined #openstack-ansible00:03
*** sdake_ has joined #openstack-ansible00:54
*** sdake has quit IRC00:57
*** sdake has joined #openstack-ansible01:00
*** mordred has quit IRC01:01
openstackgerritMerged stackforge/os-ansible-deployment: Fix typo in neutron.conf.j2  https://review.openstack.org/17017701:01
openstackgerritMerged stackforge/os-ansible-deployment: Fix typo in neutron.conf.j2  https://review.openstack.org/17017701:01
*** sdake_ has quit IRC01:03
*** mordred has joined #openstack-ansible01:06
*** stevemar has quit IRC01:07
*** daneyon has quit IRC01:19
*** daneyon has joined #openstack-ansible01:21
*** vmtrooper has joined #openstack-ansible01:32
*** vmtrooper has quit IRC01:36
*** sdake_ has joined #openstack-ansible01:39
*** daneyon has quit IRC01:40
*** javeriak has quit IRC01:41
*** sdake has quit IRC01:43
*** mahito has quit IRC01:48
*** mahito has joined #openstack-ansible01:51
*** mahito has quit IRC01:55
*** javeriak has joined #openstack-ansible01:56
*** javeriak has quit IRC02:00
*** markvoelker has quit IRC02:01
*** sacharya has joined #openstack-ansible02:02
*** mahito has joined #openstack-ansible02:02
*** markvoelker has joined #openstack-ansible02:03
*** sacharya has quit IRC02:17
*** javeriak has joined #openstack-ansible02:19
*** sacharya has joined #openstack-ansible02:26
*** javeriak has quit IRC02:55
*** vmtrooper has joined #openstack-ansible02:56
*** mahito has quit IRC02:58
*** javeriak has joined #openstack-ansible03:01
*** mahito has joined #openstack-ansible03:04
*** vmtrooper has quit IRC03:16
*** sacharya has quit IRC03:34
*** vmtrooper has joined #openstack-ansible03:41
*** sacharya has joined #openstack-ansible03:42
*** stevemar has joined #openstack-ansible03:46
*** sdake has joined #openstack-ansible03:51
*** sdake_ has quit IRC03:55
*** daneyon has joined #openstack-ansible03:56
*** daneyon has quit IRC04:00
*** subscope has quit IRC04:07
*** vmtrooper has quit IRC04:16
*** jlvillal has quit IRC04:25
*** javeriak has quit IRC04:26
*** jlvillal has joined #openstack-ansible04:28
*** prometheanfire has quit IRC04:33
*** rackertom has quit IRC04:46
*** rackertom has joined #openstack-ansible04:50
*** sacharya has quit IRC05:11
*** vmtrooper has joined #openstack-ansible06:05
*** vmtrooper has quit IRC06:10
*** markvoelker has quit IRC06:29
*** vmtrooper has joined #openstack-ansible06:29
*** vmtrooper has quit IRC06:36
*** javeriak has joined #openstack-ansible06:42
*** javeriak has quit IRC06:54
*** markvoelker has joined #openstack-ansible06:59
*** markvoelker has quit IRC07:04
*** stevemar has quit IRC07:18
*** fawadkhaliq has joined #openstack-ansible07:52
*** markvoelker has joined #openstack-ansible08:00
*** markvoelker has quit IRC08:05
*** fawadk has joined #openstack-ansible08:08
*** fawadkhaliq has quit IRC08:12
*** fawadk has quit IRC08:13
*** mahito has quit IRC08:37
*** froots has joined #openstack-ansible08:41
*** fawadkhaliq has joined #openstack-ansible08:54
*** markvoelker has joined #openstack-ansible09:01
*** subscope has joined #openstack-ansible09:02
*** markvoelker has quit IRC09:05
*** sdake has quit IRC09:28
svganyone online who understand the inventory structure?09:32
*** markvoelker has joined #openstack-ansible10:02
*** toddnni has quit IRC10:05
*** toddnni has joined #openstack-ansible10:05
*** markvoelker has quit IRC10:06
*** toddnni_ has joined #openstack-ansible10:17
*** toddnni has quit IRC10:20
*** toddnni_ is now known as toddnni10:20
*** markvoelker has joined #openstack-ansible11:02
*** toddnni_ has joined #openstack-ansible11:06
*** markvoelker has quit IRC11:07
*** toddnni has quit IRC11:09
*** toddnni_ is now known as toddnni11:09
*** fawadkhaliq has quit IRC11:22
*** toddnni has quit IRC11:23
*** toddnni has joined #openstack-ansible11:25
*** markvoelker has joined #openstack-ansible12:03
*** galstrom_zzz is now known as galstrom12:05
*** markvoelker has quit IRC12:08
*** markvoelker has joined #openstack-ansible12:21
*** fawadkhaliq has joined #openstack-ansible12:23
*** sdake has joined #openstack-ansible12:24
*** fawadkhaliq has quit IRC12:28
cloudnullSvg still around12:35
svgcloudnull: yup12:37
cloudnullWhat's going on ?12:38
cloudnullI can help with the inventory madness. =)12:38
svgtrying to figure out how that is structured12:42
svgso far didn;t found the logic, and looking at it in treeview doesnt help :)12:42
*** fawadkhaliq has joined #openstack-ansible12:46
cloudnullSo the inventory is using the dynamic inventory in Json format as described here. http://docs.ansible.com/developing_inventory.html it is built using groups of groups with all entries in the _meta key of the inventory file.12:48
cloudnullModeled similarly to how ec2 inventory has been done.12:48
cloudnullAre you looking to extend it? Is add new component types ?12:49
cloudnullThere is no "traditional" inventory in section format.12:51
cloudnullMost of the structure is dictated by the openstack_environment.yml file.12:51
cloudnullThat file has three main sections. Components , containers , hosts. And all of those associations are built there.12:54
cloudnullI think D34dh0r53 has a patch to make the environment pluggable.12:57
cloudnullWhich will make extending it a lot easier.12:57
svghm I understand how the ansible inventory and it's json is structured, it's the result set and how it matches playbook I try to understand12:59
svgthe group structure is pretty flat, but given you don;t use group_vars a lot, understandeable13:01
svgwhat I'm trying to understand is what I need tro modify in the environment file, to hook up ceph support, given that ceph is not a full 'component' on it's own, just some extra things that need to be configured together with two other components (being glance_api and compute)13:02
*** galstrom is now known as galstrom_zzz13:03
svgalso, not sure what the difference is between nova_compute_container and nova_api_os_compute_container13:03
svgso, for ceph support, a part is extending existing templates for those two components, another part is installing some packages (different sets on each), and finally doing some libirt configuration13:04
svgfirst and third part would be two extra roles, that only runs if ceph is defined as backend13:05
svgsecond part is editing existing templtes in existing roles13:05
svgbut those 2 new roles should run in a playbook that targets the said 2 openstack components13:06
svgshould that be added in the existing plays, OR should that be a new play, that targets some new 'ceph' groups, which are generated from a modified environment file13:07
svgcloudnull: ^^13:07
cloudnullSvg. I'm one of the sick people that does irc on the phone. I'm driving into the office and will be back to a computer in a few =)13:13
svghaha :) need to tell me which client you use for that :)13:13
*** sdake_ has joined #openstack-ansible13:19
*** sdake has quit IRC13:22
*** sdake has joined #openstack-ansible13:29
*** sdake_ has quit IRC13:33
*** openstackgerrit has quit IRC13:36
*** openstackgerrit has joined #openstack-ansible13:36
*** sigmavirus24_awa is now known as sigmavirus2413:43
*** Mudpuppy has joined #openstack-ansible14:07
*** Mudpuppy has quit IRC14:09
*** Mudpuppy has joined #openstack-ansible14:09
*** hj-hp has joined #openstack-ansible14:27
*** hj-hp has quit IRC14:30
*** sacharya has joined #openstack-ansible14:32
*** hj-hp has joined #openstack-ansible14:33
*** subscope has quit IRC14:35
*** alextricity_r has joined #openstack-ansible14:38
*** openstackgerrit has quit IRC14:39
*** openstackgerrit has joined #openstack-ansible14:39
*** sacharya has quit IRC14:42
*** dmsimard has quit IRC14:45
*** dmsimard has joined #openstack-ansible14:46
*** cbaesema has quit IRC14:48
*** fawadkhaliq has quit IRC14:49
cloudnullsvg: finally back to my computer. if your still awake. :)14:55
*** prometheanfire has joined #openstack-ansible14:58
*** alextricity_r has quit IRC15:01
*** sdake_ has joined #openstack-ansible15:03
svgcloudnull: I am, only 5pm here :)15:06
*** sdake has quit IRC15:07
svgbut workday finishes, it's almost fridaynight! but i'll bbl from home in  a couple of hours15:11
svgin the mean time I hope my explanation and question was clear ^^15:11
*** sacharya has joined #openstack-ansible15:25
cloudnullsvg:15:25
* cloudnull writing a doc on how to extend and what to expect. ill gist it up and get it out to you and if it is not totally terrible we'll see about adding it to the docs directory. 15:25
sigmavirus24some people were asking about https://wiki.openstack.org/wiki/Release_Cycle#Pre-release_.28Release_Candidates_dance.29 yesterday15:32
*** daneyon has joined #openstack-ansible16:10
*** daneyon_ has joined #openstack-ansible16:15
openstackgerritDavid Wilde proposed stackforge/os-ansible-deployment: Add env.d extra configuration directory to etc/openstack_deploy/  https://review.openstack.org/17055816:16
palendaed34dh0r53: Is there a launchpad bug for that?16:17
d34dh0r53negative16:17
*** daneyon has quit IRC16:17
palendaetut tut16:17
d34dh0r53I'm a bad person16:17
d34dh0r53https://bugs.launchpad.net/openstack-ansible/+bug/144011716:21
openstackLaunchpad bug 1440117 in openstack-ansible "Add env.d directory for extra containers" [Medium,Confirmed] - Assigned to David Wilde (david-wilde-rackspace)16:21
openstackgerritDavid Wilde proposed stackforge/os-ansible-deployment: Add env.d extra configuration directory to etc/openstack_deploy/  https://review.openstack.org/17055816:22
d34dh0r53palendae: mo betta? :)16:23
*** alextricity_r has joined #openstack-ansible16:26
palendaed34dh0r53: Yep :)16:26
alextricity_rwhat's up16:26
*** alextricity_r has quit IRC16:31
*** stevemar has joined #openstack-ansible16:34
*** stevemar has quit IRC16:38
*** sacharya has quit IRC16:42
*** sdake_ has quit IRC16:52
*** sdake has joined #openstack-ansible16:53
*** sigmavirus24 is now known as sigmavirus24_awa17:07
*** hj-hp has quit IRC17:14
*** javeriak has joined #openstack-ansible17:27
*** daneyon has joined #openstack-ansible17:43
*** daneyon_ has quit IRC17:46
*** javeriak has quit IRC17:49
openstackgerritKevin Carter proposed stackforge/os-ansible-deployment: Updated repository for minimum viable kilo install  https://review.openstack.org/16698617:58
svgcloudnull: awesome! Thank you.17:59
openstackgerritKevin Carter proposed stackforge/os-ansible-deployment: Bump requirements in preparation for kilo  https://review.openstack.org/16684918:02
openstackgerritKevin Carter proposed stackforge/os-ansible-deployment: WIP Horizon config changes for kilo  https://review.openstack.org/16746018:02
openstackgerritKevin Carter proposed stackforge/os-ansible-deployment: Keystone config changes for Kilo  https://review.openstack.org/16747518:03
openstackgerritKevin Carter proposed stackforge/os-ansible-deployment: Heat config changes for kilo  https://review.openstack.org/16794718:03
openstackgerritKevin Carter proposed stackforge/os-ansible-deployment: Update cinder services to kilo  https://review.openstack.org/16806618:03
openstackgerritKevin Carter proposed stackforge/os-ansible-deployment: WIP Update Glance service to Kilo  https://review.openstack.org/17021118:03
openstackgerritMiguel Grinberg proposed stackforge/os-ansible-deployment: WIP Horizon config changes for kilo  https://review.openstack.org/16746018:08
openstackgerritDavid Wilde proposed stackforge/os-ansible-deployment: Add env.d extra configuration directory to etc/openstack_deploy/  https://review.openstack.org/17055818:11
*** sdake_ has joined #openstack-ansible18:20
*** javeriak has joined #openstack-ansible18:20
*** sdake has quit IRC18:24
*** sdake has joined #openstack-ansible18:56
*** sdake_ has quit IRC19:00
*** sdake_ has joined #openstack-ansible19:05
*** sdake has quit IRC19:08
*** sdake has joined #openstack-ansible19:15
*** sdake_ has quit IRC19:19
*** javeriak has quit IRC20:13
openstackgerritSteve Lewis proposed stackforge/os-ansible-deployment: Update Glance service to Kilo  https://review.openstack.org/17021120:15
*** javeriak has joined #openstack-ansible20:17
*** javeriak has quit IRC20:19
*** toddnni has quit IRC20:33
*** toddnni has joined #openstack-ansible20:33
*** fawadkhaliq has joined #openstack-ansible20:39
*** sdake has quit IRC20:58
*** Mudpuppy_ has joined #openstack-ansible21:17
*** Mudpuppy has quit IRC21:20
*** Mudpuppy_ has quit IRC21:21
*** cbaesema has joined #openstack-ansible21:36
openstackgerritMerged stackforge/os-ansible-deployment: Updated repository for minimum viable kilo install  https://review.openstack.org/16698621:54
*** javeriak has joined #openstack-ansible22:00
openstackgerritMiguel Grinberg proposed stackforge/os-ansible-deployment: Horizon config changes for kilo  https://review.openstack.org/16746022:07
*** fawadkhaliq has quit IRC22:48
*** javeriak_ has joined #openstack-ansible23:47
*** javeriak has quit IRC23:48
*** javeriak has joined #openstack-ansible23:52
*** javeriak_ has quit IRC23:52

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