| *** otter768 has quit IRC | 00:39 | |
| *** otter768 has joined #openstack-chef | 00:41 | |
| *** aspiers_ has joined #openstack-chef | 01:30 | |
| *** aspiers has quit IRC | 01:33 | |
| *** otter768 has quit IRC | 02:09 | |
| *** otter768 has joined #openstack-chef | 03:22 | |
| *** os-chef-bot has quit IRC | 03:37 | |
| *** os-chef-bot has joined #openstack-chef | 04:02 | |
| *** otter768_ has joined #openstack-chef | 04:27 | |
| *** otter768 has quit IRC | 04:29 | |
| *** shunliz has joined #openstack-chef | 04:38 | |
| *** otter768_ has quit IRC | 04:56 | |
| *** wojdev has joined #openstack-chef | 05:44 | |
| *** wojdev has quit IRC | 05:52 | |
| *** otter768 has joined #openstack-chef | 06:57 | |
| *** otter768 has quit IRC | 07:02 | |
| *** openstack has joined #openstack-chef | 07:21 | |
| *** ChanServ sets mode: +o openstack | 07:21 | |
| *** nkrinner has joined #openstack-chef | 07:45 | |
| *** otter768 has joined #openstack-chef | 08:00 | |
| *** otter768 has quit IRC | 08:05 | |
| *** zsli_ has joined #openstack-chef | 08:30 | |
| *** shunliz has quit IRC | 08:33 | |
| *** aspiers_ is now known as aspiers | 08:48 | |
| *** zsli_ has quit IRC | 09:51 | |
| *** otter768 has joined #openstack-chef | 10:01 | |
| *** otter768 has quit IRC | 10:07 | |
| *** otter768 has joined #openstack-chef | 12:02 | |
| *** otter768 has quit IRC | 12:07 | |
| *** shunliz has joined #openstack-chef | 12:07 | |
| *** dmowrer has joined #openstack-chef | 12:08 | |
| *** dmowrer has quit IRC | 13:01 | |
| *** otter768 has joined #openstack-chef | 13:06 | |
| *** dmowrer has joined #openstack-chef | 13:10 | |
| *** otter768 has quit IRC | 13:34 | |
| *** Neo_ has joined #openstack-chef | 14:03 | |
| Neo_ | Hi !!! | 14:03 |
|---|---|---|
| Neo_ | anyone there... got messed up in some design with chef... | 14:04 |
| *** dmowrer has quit IRC | 14:17 | |
| *** dmowrer has joined #openstack-chef | 14:22 | |
| jklare | hi @Neo_ | 14:25 |
| jklare | @Neo_ how can i help you? | 14:26 |
| Neo_ | Thanks for respone jklare | 14:29 |
| Neo_ | actually i would like to run chef client on controller node, compute node, network node etc... | 14:30 |
| Neo_ | Compute node and network node should wait until convergence of Controller node | 14:30 |
| Neo_ | how can i do that using chef | 14:30 |
| jklare | @Neo_ that is a very good question, sadly there is not a simple answer to that | 14:31 |
| Neo_ | i guess that it may be a common requirement for many infrastructure implementation.... | 14:32 |
| jklare | @Neo_ if you are using chef-provisoning you can probably define some triggers to orchestrate the whole cluster deployment depeding on the convergance states of single nodes | 14:32 |
| jklare | @Neo_ i also heard, that there are some people using ansible to orchestrate the chef runs | 14:32 |
| Neo_ | ok, i shall explore on chef-provision and ansible... Can I have both chef server and chef client on a single node ? | 14:33 |
| jklare | @Neo_ the basic issue here is, that there is no build in dependency checking in chef and therefore no easy solution to orchestrate a whole cluster | 14:33 |
| jklare | @Neo_ sure | 14:33 |
| Neo_ | ok, shall try that too... | 14:34 |
| Neo_ | i saw some lock mechanism while googling, can it help | 14:35 |
| jklare | @Neo_ depending on the way you use the cookbooks, it might also be possible to set some node state after a successfull chef run on a controller and check/wait for this state/attribute/flag in the chef-runs on the other nodes | 14:35 |
| Neo_ | that should be good idea... | 14:36 |
| Neo_ | if you are aware of Openstack installation, we connect to database server, and create database per service like glance etc.... add users, roles etc... | 14:38 |
| Neo_ | i am trying to use expect script and invoke them using chef receipes..... is there any other way to do this ? | 14:39 |
| jklare | @Neo_ you invoke the chef run, the run of single recipes or the run of some scripts? | 14:42 |
| Neo_ | scripts | 14:43 |
| jklare | @Neo_ and your goal is to run these scripts as soon as the database is reads or as soon as the chefrun finished? | 14:43 |
| jklare | @Neo_ and these scripts run some commands to migrate the databses? | 14:44 |
| Neo_ | @jkalre : the scripts are used to create database, add users etc... | 14:44 |
| Neo_ | as it is interactive, i am looking to use expect scripts and someway to trigger them from chef | 14:45 |
| jklare | interactive means it requires user input? | 14:47 |
| Neo_ | for example, in openstack installation we run a command "mysql -u root -p" to connect to the datbases server... | 14:49 |
| Neo_ | it enters in to another shell, where we create databases, users. Can we do this without expect scripts... | 14:50 |
| jklare | i think i still do not understand what expect scripts are | 14:51 |
| jklare | you can create all the databases and users directly during the chef-run | 14:51 |
| jklare | and the identity-registration recipes in the different cookbooks do exactly that | 14:51 |
| jklare | https://github.com/openstack/cookbook-openstack-network/blob/56c95b6ce3ad2f9fd2ff2882a05e03781f73b8ca/recipes/identity_registration.rb | 14:52 |
| Neo_ | ok, actually i am in the beginner mode and designing the implementation approach... shall try it with chef-run. | 14:52 |
| jklare | the ressources 'openstack_identity_register' in this recipe create the users, the services etc | 14:53 |
| jklare | https://github.com/openstack/cookbook-openstack-network/blob/28a867e442ac7ec102d72f222a2b2b4c75d17320/recipes/db_migration.rb | 14:53 |
| jklare | this recipe basically runs all the needed bash/scripts to do the migrations for the needed databases | 14:54 |
| Neo_ | thanks, very useful info | 14:55 |
| jklare | happy to help | 14:55 |
| Neo_ | shall start trying and exploring | 14:56 |
| jklare | good luck and feel free to come back to our channel and ask all the questions that arise :) | 14:57 |
| Neo_ | Thanks Much !!! | 14:57 |
| *** shunliz has quit IRC | 15:01 | |
| *** openstackgerrit has quit IRC | 15:02 | |
| *** openstackgerrit has joined #openstack-chef | 15:02 | |
| *** Neo_ has quit IRC | 15:06 | |
| *** dmowrer has quit IRC | 15:10 | |
| openstackgerrit | Remi Vichery proposed openstack/cookbook-openstack-dashboard: Added Nuage Networks extensions https://review.openstack.org/246559 | 15:12 |
| *** dmowrer has joined #openstack-chef | 15:13 | |
| openstackgerrit | Christoph Albers proposed openstack/cookbook-openstack-compute: refactoring step 1 https://review.openstack.org/248767 | 15:32 |
| j^2 | hey all | 15:33 |
| j^2 | there's a chance i'll be late to our meeting | 15:33 |
| jklare | ok | 15:33 |
| *** otter768 has joined #openstack-chef | 15:35 | |
| *** otter768 has quit IRC | 15:39 | |
| j^2 | jklare: you should have mentioned chef-provisioning to neo_ ;? | 15:47 |
| jklare | @j^2 i did | 15:48 |
| j^2 | ah nice | 15:48 |
| j^2 | i must have missed it | 15:48 |
| jklare | the first thing i said ;) | 15:48 |
| *** jmickle has joined #openstack-chef | 15:53 | |
| *** jmickle has quit IRC | 16:34 | |
| *** jmickle has joined #openstack-chef | 16:35 | |
| jklare | a cool talk from aspiers, just in case anyone is interested ;) http://www.slideshare.net/adamspiers/compute-node-ha-current-upstream-development | 16:59 |
| j^2 | nice | 16:59 |
| aspiers | :) | 17:01 |
| aspiers | see also http://eavesdrop.openstack.org/meetings/ha/2015/ha.2015-11-23-09.00.log.html#l-149 | 17:01 |
| *** otter768 has joined #openstack-chef | 17:06 | |
| j^2 | https://review.openstack.org/248829 | 17:13 |
| j^2 | jklare: ^^ | 17:13 |
| *** otter768 has quit IRC | 17:21 | |
| *** nkrinner has quit IRC | 17:37 | |
| *** otter768 has joined #openstack-chef | 18:04 | |
| *** otter768 has quit IRC | 18:41 | |
| *** otter768 has joined #openstack-chef | 18:49 | |
| jmickle | j^2: how you doing | 19:01 |
| j^2 | jmickle: not to shabby, how's it on your end? | 19:02 |
| jmickle | doing great | 19:02 |
| jmickle | you know any postgres consultants that are super awesome | 19:02 |
| jmickle | you wouldnt mind recommending? I need some help and have $$$ | 19:02 |
| jmickle | haha | 19:02 |
| j^2 | yeah honestly i don't | 19:03 |
| jmickle | haha bummer | 19:03 |
| jmickle | you ready for the hollidays? | 19:03 |
| j^2 | getting there, well trying to at least ;) | 19:04 |
| jmickle | ahhh | 19:04 |
| jmickle | staying local? | 19:04 |
| jmickle | or traveling | 19:04 |
| j^2 | sorry, staying local. I got hit by a rootkit on my personal NAS so i'm freaking out over here | 19:11 |
| j^2 | http://blog.jandorsman.com/2014-03-13-synology-error-ldpreload-cannot-be-preloaded/ | 19:11 |
| sc` | ouch | 19:12 |
| j^2 | yeah, I have no idea why it's popped up now, but it has. | 19:13 |
| j^2 | it's not great | 19:13 |
| j^2 | really not great | 19:13 |
| sc` | definitely not delightful | 19:14 |
| jmickle | ouch | 19:21 |
| *** DeVVaN has joined #openstack-chef | 19:38 | |
| *** DeVVaN has quit IRC | 19:39 | |
| *** otter768 has quit IRC | 19:49 | |
| j^2 | It seems i've been nominated for the OpenStack Board from Operations: https://www.openstack.org/community/members/profile/19802 if you want ta help me out | 20:09 |
| jmickle | j^2: you should be the board of openstack :-P | 20:13 |
| jmickle | i would vote for you but openstack didnt approve my foundation membership because i didnt add an affiliation | 20:13 |
| j^2 | ahhh | 20:13 |
| jmickle | apparently the hundreds of thousands of lines of code, and community support isnt enough :-P | 20:14 |
| j^2 | ha! | 20:14 |
| jmickle | (im a little bitter if you cant tell) | 20:14 |
| jmickle | get on the board and change that stupid policy | 20:15 |
| jmickle | so i can finally be recognized as a community member for os | 20:15 |
| j^2 | :F | 20:15 |
| j^2 | :FD | 20:15 |
| j^2 | ahh! | 20:15 |
| j^2 | :D i mean | 20:15 |
| jmickle | haha | 20:15 |
| jmickle | although apparently | 20:15 |
| jmickle | i lost my chef membership as well | 20:15 |
| * jmickle grumbles | 20:16 | |
| jmickle | but i kind of stepped out of communities for a little bit | 20:16 |
| jmickle | so im not surprised at that one | 20:16 |
| jmickle | they are just tiresome | 20:17 |
| jmickle | and a very thankless job | 20:17 |
| j^2 | :( | 20:17 |
| jmickle | Honestly it was LA that killed it for me | 20:17 |
| jmickle | lol | 20:17 |
| jmickle | next conference we should grab a beer | 20:18 |
| j^2 | :D sounds like a plan | 20:18 |
| jmickle | whats on your list for conf's? | 20:18 |
| jmickle | also where is mattray been or jeff hackert been i havent heard much from them these days | 20:19 |
| jmickle | everyone is heads down prolly | 20:19 |
| jmickle | but i do strongly advise taking a break | 20:20 |
| jmickle | i took 12 weeks off work | 20:20 |
| jmickle | and even longer away from communities | 20:20 |
| jmickle | and it was the best recharge ive ever had | 20:21 |
| j^2 | ah yeah makes sense | 20:21 |
| jmickle | i went fishing, sailing and simply drank some beer and watched tv | 20:21 |
| jmickle | and it was everything i could ask for | 20:21 |
| jmickle | haha | 20:21 |
| *** otter768 has joined #openstack-chef | 21:50 | |
| *** otter768 has quit IRC | 21:55 | |
| *** otter768 has joined #openstack-chef | 22:06 | |
| *** dmowrer has quit IRC | 22:12 | |
| *** dmowrer has joined #openstack-chef | 22:16 | |
| *** dmowrer has quit IRC | 22:20 | |
| *** dmowrer has joined #openstack-chef | 22:20 | |
| *** dmowrer has quit IRC | 22:25 | |
| *** otter768 has quit IRC | 23:21 | |
| *** otter768 has joined #openstack-chef | 23:23 | |
| *** dmowrer has joined #openstack-chef | 23:25 | |
| *** dmowrer has quit IRC | 23:26 | |
| *** dmowrer has joined #openstack-chef | 23:27 | |
| *** dmowrer has quit IRC | 23:31 | |
| *** otter768 has quit IRC | 23:49 | |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!