*** markvoelker has quit IRC | 00:02 | |
*** h0mer has joined #openstack-ansible | 01:46 | |
*** markvoelker has joined #openstack-ansible | 01:59 | |
*** markvoelker has quit IRC | 02:03 | |
*** heww has joined #openstack-ansible | 02:53 | |
*** heww has quit IRC | 02:54 | |
*** heww has joined #openstack-ansible | 02:56 | |
heww | hi, all, last week I add trove to os-ansible-deployment myself, and everything works well except that trove guestagent will access rabbitmq cluster to tell trove taskmanager its status. | 03:02 |
---|---|---|
heww | trove guestagent which run in nova instance can't connect to rabbitmq cluster using lxc interface linked with br-mgmt | 03:04 |
heww | then I add rabbitmq cluster to haproxy, and trove guestagent connect to rabbit cluster through external_lb_vip_address by haproxy | 03:06 |
heww | after that trove works well | 03:06 |
heww | but, anyone can help me so that trove guestagent can connect to rabbitmq cluster by br-mgmt network which value is {{ rabbitmq_servers }} like other roles. | 03:08 |
*** alejandrito has quit IRC | 03:12 | |
*** ccrouch has left #openstack-ansible | 03:25 | |
*** JRobinson__ is now known as JRobinson__afk | 03:36 | |
*** markvoelker has joined #openstack-ansible | 04:00 | |
*** markvoelker has quit IRC | 04:04 | |
*** JRobinson__afk is now known as JRobinson__ | 04:04 | |
*** daneyon has joined #openstack-ansible | 04:43 | |
*** daneyon has quit IRC | 04:43 | |
*** daneyon has joined #openstack-ansible | 04:44 | |
*** fawadkhaliq has joined #openstack-ansible | 05:23 | |
*** heww has quit IRC | 05:31 | |
*** harlowja has quit IRC | 05:44 | |
*** daneyon has quit IRC | 05:48 | |
*** daneyon has joined #openstack-ansible | 05:49 | |
*** heww has joined #openstack-ansible | 05:51 | |
*** fawadk has joined #openstack-ansible | 05:56 | |
*** fawadkhaliq has quit IRC | 05:58 | |
*** daneyon has quit IRC | 05:58 | |
*** heww has quit IRC | 06:00 | |
*** markvoelker has joined #openstack-ansible | 06:01 | |
*** daneyon has joined #openstack-ansible | 06:02 | |
*** h0mer has quit IRC | 06:02 | |
*** javeriak has joined #openstack-ansible | 06:04 | |
*** markvoelker has quit IRC | 06:05 | |
*** daneyon has quit IRC | 06:08 | |
*** daneyon has joined #openstack-ansible | 06:09 | |
*** javeriak has quit IRC | 06:19 | |
*** javeriak has joined #openstack-ansible | 06:19 | |
*** daneyon_ has joined #openstack-ansible | 06:25 | |
*** fawadk has quit IRC | 06:27 | |
*** daneyon has quit IRC | 06:28 | |
*** daneyon_ has quit IRC | 06:41 | |
*** javeriak has quit IRC | 06:47 | |
*** javeriak has joined #openstack-ansible | 06:49 | |
*** JRobinson__ has quit IRC | 07:06 | |
*** javeriak_ has joined #openstack-ansible | 07:11 | |
*** javeriak has quit IRC | 07:11 | |
*** javeriak_ has quit IRC | 07:14 | |
*** javeriak_ has joined #openstack-ansible | 07:19 | |
*** javeriak_ has quit IRC | 07:23 | |
*** javeriak has joined #openstack-ansible | 07:24 | |
*** pilgrimstack has joined #openstack-ansible | 07:42 | |
*** javeriak has quit IRC | 07:43 | |
*** javeriak has joined #openstack-ansible | 07:43 | |
*** javeriak has quit IRC | 07:47 | |
*** javeriak has joined #openstack-ansible | 07:49 | |
*** gparaskevas has joined #openstack-ansible | 08:00 | |
*** fawadkhaliq has joined #openstack-ansible | 08:01 | |
*** markvoelker has joined #openstack-ansible | 08:02 | |
*** markvoelker has quit IRC | 08:06 | |
*** subscope has joined #openstack-ansible | 08:10 | |
odyssey4me | javeriak regarding your instance build failure one in three times - are you using swift or a file based glance back-end? | 08:22 |
javeriak | odyssey4me: nope, i just uploaded a regular cirros image through horizon | 08:23 |
odyssey4me | javeriak but what is your glance configured to use as a back-end? | 08:23 |
odyssey4me | ie what is the glance store? | 08:23 |
javeriak | odyssey4me: not sure, this a standard OSAD deployed cluster, where can I check? | 08:25 |
odyssey4me | javeriak if it's a multi-node deployment, then there is no such thing as a 'standard' build - you have many options to choose from :) | 08:26 |
odyssey4me | grep ^glance_default_store /etc/openstack_deploy/user_variables.yml | 08:27 |
*** fawadkhaliq has quit IRC | 08:28 | |
javeriak | glance_default_store: file | 08:29 |
*** fawadkhaliq has joined #openstack-ansible | 08:30 | |
odyssey4me | ok, so what's happening there is that glance is using the file system to store images | 08:30 |
odyssey4me | you have three controllers, with haproxy load balancing between them | 08:30 |
odyssey4me | if that file store isn't on a shared file system back-end (like an nfs share) then the image is only present once per three calls due to the load balancing | 08:31 |
odyssey4me | it's best to use a shared backing store for glance, like an nfs share, swift, ceph, etc | 08:31 |
odyssey4me | you can work around the issue by doing one of the following: 1) implementing a mechanism to replicate your file store between controllers - something like rsync or whatever | 08:32 |
odyssey4me | 2) shutting down the two glance services that don't have the data required - not a great workaround, but it'll do for testing | 08:32 |
odyssey4me | 3) implementing a different load balancing algorithm for load balancing that always forwards glance api traffic to the same back-end (probably best implemented alongside option 1) | 08:34 |
odyssey4me | 4 switching to a shared back-end data store for glance images (the best option) | 08:34 |
javeriak | so that means a vm creation call should fail every now and then whenever the calls reache a controller not hosting the image-file? | 08:35 |
odyssey4me | javeriak every time the api call asks for an image for which the container servicing the api call is not there, the call will fail | 08:35 |
odyssey4me | the LB is set to use a round robin LB scheme as I recall, so it makes sense that it'll be a 1 in 3 success | 08:36 |
javeriak | odyssey4me: yes that makes sense, but since this is how we always deploy through OSAD (ie 3 -controllers), doesnt it implement any of these solutions by default? since this issue will always be there | 08:42 |
odyssey4me | javeriak most deployers will use a shared file system back-end, or swift - and ceph is being worked on as another option for 11.2.0 | 08:45 |
odyssey4me | javeriak another option, which RAX uses in its deployments in its own DC's is to use cloudfiles as a back-end | 08:46 |
odyssey4me | the shared file system back-end of choice is normally some sort of NFS bac-end | 08:46 |
javeriak | odyssey4me: right, thanks for the explanation! I'll go investigate and see whats the best implementation for us | 08:48 |
*** fawadkhaliq has quit IRC | 09:03 | |
*** fawadkhaliq has joined #openstack-ansible | 09:06 | |
*** javeriak has quit IRC | 09:09 | |
*** javeriak has joined #openstack-ansible | 09:11 | |
*** gparaskevas has quit IRC | 09:21 | |
*** gparaskevas has joined #openstack-ansible | 09:27 | |
gparaskevas | Hello there! | 09:29 |
*** fawadkhaliq has quit IRC | 09:32 | |
gparaskevas | odyssey4me: Hello how aare you? I am beggining to do the contrib on that https://bugs.launchpad.net/openstack-ansible/+bug/1446432 . I will clone master i will create a new branch with the issue id and i will then commit? | 09:32 |
openstack | Launchpad bug 1446432 in openstack-ansible "Enable HAProxy stats Web UI" [Wishlist,In progress] - Assigned to George Paraskevas (gparaskevas) | 09:32 |
*** fawadkhaliq has joined #openstack-ansible | 09:33 | |
evrardjp | good morning everyone | 09:44 |
evrardjp | quick question odyssey4me: for the commit I'm owner (but I didn't do the last commit), is it allowed to review it? | 09:44 |
*** fawadkhaliq has quit IRC | 09:45 | |
evrardjp | It's weird to review your own commit, but it's not only mine at the end... | 09:45 |
*** fawadkhaliq has joined #openstack-ansible | 09:45 | |
svg | evrardjp: welcome to gerrit club | 09:48 |
evrardjp | hehe thanks svg | 09:48 |
evrardjp | now, I'll try to review the ceph integration | 09:50 |
*** fawadkhaliq has quit IRC | 09:58 | |
gparaskevas | can someone help me with i commit on a bug please? | 10:01 |
*** markvoelker has joined #openstack-ansible | 10:02 | |
*** markvoelker has quit IRC | 10:07 | |
*** Ti-mo has quit IRC | 10:08 | |
*** jmccrory has quit IRC | 10:08 | |
*** logan2 has quit IRC | 10:08 | |
*** jmccrory has joined #openstack-ansible | 10:08 | |
*** Ti-mo- has joined #openstack-ansible | 10:08 | |
*** logan2 has joined #openstack-ansible | 10:08 | |
evrardjp | gparaskevas: I'm not very experienced with that, but yes, cloning and then branching seems a good approach | 10:09 |
gparaskevas | evrardjp: ok i have done that but now i am trying to git review and i have some error there. | 10:09 |
evrardjp | There are documentation about the best practices for the commits (messages and content) | 10:10 |
evrardjp | https://wiki.openstack.org/wiki/GitCommitMessages | 10:10 |
evrardjp | please also read this: https://wiki.openstack.org/wiki/How_To_Contribute | 10:11 |
evrardjp | the workflow is explained here: http://docs.openstack.org/infra/manual/developers.html | 10:11 |
evrardjp | (it also explains the agreement that you have to sign for openstack contributions) | 10:12 |
evrardjp | ok gparaskevas | 10:12 |
evrardjp | git review -s was working fine? | 10:12 |
gparaskevas | it seems i shoud create a remote | 10:12 |
evrardjp | ok | 10:12 |
evrardjp | maybe you try with the sandbox first: http://docs.openstack.org/infra/manual/sandbox.html#sandbox | 10:13 |
javeriak | gparaskevas : try this as well, it says nothing about needing to create a sepeerate branch though, you should be able to commit directly with the appropriate Bug ref in the commit-message, http://docs.openstack.org/infra/manual/developers.html#development-workflow | 10:13 |
evrardjp | git review -s handles the setup and the creation of the remotes | 10:13 |
odyssey4me | gparaskevas the workflow outlined by evrardjp is correct | 10:14 |
evrardjp | there is a debug flag on git review that can help you | 10:14 |
odyssey4me | typically git clone the repo, then git checkout master; then git checkout -b bug/<bug number>, then make changes and commit, then git review to push it up | 10:15 |
evrardjp | but keep in mind that git review -s could fail if you didn't do the previous steps explained in the developpers.html page | 10:15 |
odyssey4me | ++ | 10:15 |
evrardjp | (like creating the accounts, signing the agreements...) | 10:15 |
odyssey4me | evrardjp usually as the owner you can review if someone's changed your patch, but you shouldn't +2 your own patch (only cores can +2 though) | 10:16 |
odyssey4me | if your patch has been updated by someone else, then you can add a vote with comment that you're happy with the later changes and have tested, etc | 10:17 |
evrardjp | I didn't intend (never!) to do a +2 | 10:17 |
evrardjp | odyssey4me: seems logical... I was wondering if there was a netiquette to respect | 10:17 |
evrardjp | just common sense | 10:17 |
evrardjp | \o/ | 10:17 |
odyssey4me | :) | 10:18 |
*** daneyon has joined #openstack-ansible | 10:18 | |
evrardjp | odyssey4me: Quick question about the launchpad milestones... At the moment (with the delay) they are wrongly ordered (11.1.1 before 11.1.0)... won't it be a problem later? | 10:20 |
evrardjp | maybe the time estimation on launchpad should be changed... | 10:20 |
evrardjp | details, details... | 10:20 |
odyssey4me | evrardjp the ordering will be fixed when we set a date for the milestones that don't currently have one | 10:21 |
*** fawadkhaliq has joined #openstack-ansible | 10:21 | |
odyssey4me | we'll discuss the dates on thu at the meeting - let me quickly add that to the agenda | 10:22 |
evrardjp | I wasn't planning to add you more work, just concerned about possible future issues (if any) and wanted to learn by the same occasion | 10:22 |
*** javeriak has quit IRC | 10:23 | |
evrardjp | anyway gparaskevas: is your git review -s working ? | 10:23 |
*** daneyon has quit IRC | 10:23 | |
gparaskevas | evrardjp: no :( it asks for username i fill it in but then says cannot find your gerrit | 10:24 |
gparaskevas | evrardjp: i have created a username gparask i have added my ssh key wich it asked me for as well the first time i git review on the consle shows the correct repo...something's missing | 10:25 |
evrardjp | on the gerrit setting, there is "generate password" under "HTTP password" | 10:26 |
*** javeriak has joined #openstack-ansible | 10:26 | |
evrardjp | oh ok | 10:27 |
gparaskevas | yes | 10:27 |
*** javeriak has quit IRC | 10:27 | |
evrardjp | (just making sure this is filled in too first) | 10:27 |
gparaskevas | i havent create a password.. | 10:27 |
gparaskevas | should i? | 10:27 |
gparaskevas | i thought that it worked with keys | 10:27 |
evrardjp | you should | 10:28 |
evrardjp | in all cases you should | 10:28 |
evrardjp | you'll use ssh but you can also use HTTPS | 10:28 |
evrardjp | it depends what you prefer | 10:28 |
evrardjp | but you still should do it | 10:28 |
evrardjp | then try to use your git review with -v (to be verbose) | 10:31 |
evrardjp | so git review -s -v | 10:31 |
evrardjp | and make sure everything mentionned here is done: http://docs.openstack.org/infra/manual/developers.html#account-setup | 10:31 |
evrardjp | (I said you should do it because it never hurts) | 10:32 |
gparaskevas | ok let me check! | 10:34 |
gparaskevas | ok i did the git review succesfully(it didnt promt any messages at lease this time) where can i see any changes on that? | 10:55 |
*** pilgrimstack1 has joined #openstack-ansible | 10:57 | |
*** pilgrimstack has quit IRC | 10:57 | |
gparaskevas | odyssey4me: i dit a git review after i have done all the steps. Commit message also included the solves tag ans the branch name was bug/issueid | 10:58 |
odyssey4me | gparaskevas ok, I don't see the review though? | 11:03 |
odyssey4me | evrardjp thank you for helping gparaskevas :) | 11:03 |
*** pilgrimstack1 has quit IRC | 11:11 | |
*** pilgrimstack has joined #openstack-ansible | 11:12 | |
*** javeriak has joined #openstack-ansible | 11:20 | |
odyssey4me | gparaskevas so you've done 'git commit' and completed the message, did you then do a 'git review' afterwards to push it up? | 11:22 |
*** jaypipes has joined #openstack-ansible | 11:27 | |
*** javeriak has quit IRC | 11:28 | |
openstackgerrit | Jesse Pretorius proposed stackforge/os-ansible-deployment-specs: Add tox generated files to .gitignore https://review.openstack.org/208440 | 11:29 |
gparaskevas | odyssey4me: i dit a git review yes but i cannot see it either so let me check if the gerrit is correct on my config | 11:29 |
*** javeriak has joined #openstack-ansible | 11:29 | |
openstackgerrit | Jesse Pretorius proposed stackforge/os-ansible-deployment-specs: Added spec to upgrade MariaDB to v10 https://review.openstack.org/203708 | 11:31 |
*** markvoelker has joined #openstack-ansible | 11:33 | |
*** markvoelker has quit IRC | 11:38 | |
odyssey4me | mattt can you trouble you for a quick backport review? https://review.openstack.org/208012 | 11:41 |
mattt | odyssey4me: sure looking | 11:41 |
*** javeriak has quit IRC | 11:46 | |
*** javeriak_ has joined #openstack-ansible | 11:48 | |
gparaskevas | odyssey4me: it seems like i am not doing something right. I create account based on the same email for openstack, gerrit and launchpad(review and bugs using the same launchpad account) i assigned the bug to me. I cloned the master repo and i created a new branch for the bug. then i commited with details and tags and then i git reviewed some error regadin my gerrit | 11:50 |
gparaskevas | odyssey4me: then i vreated a gerrit for my repo with my username then i git review again and then no errors... | 11:51 |
gparaskevas | odyssey4me: but there is still no code shown anywhere | 11:51 |
odyssey4me | gparaskevas is the configure gerrit-username the same as your launchpad name? | 11:51 |
gparaskevas | let me see | 11:52 |
odyssey4me | can you perhaps pastebin the output ? | 11:52 |
gparaskevas | sure | 11:52 |
odyssey4me | thanks mattt | 11:53 |
mattt | np! | 11:54 |
*** markvoelker_ has joined #openstack-ansible | 11:54 | |
*** javeriak_ has quit IRC | 11:55 | |
*** javeriak has joined #openstack-ansible | 11:55 | |
mattt | review.openstack.org painfully slow for anyone else? | 11:56 |
gparaskevas | odyssey4me: http://paste.openstack.org/show/406736/ check my details. my gerrit username is gparask because i couldnt write gparaskevas like on launchpad | 11:56 |
gparaskevas | mattt: yes painfully slow | 11:57 |
odyssey4me | gparaskevas are you able to log into the gerrit review website? ie review.openstack.org ? | 11:58 |
gparaskevas | yes i am currently logged in | 11:58 |
odyssey4me | gparaskevas is that with the shorter username? | 11:59 |
odyssey4me | gparaskevas go to https://review.openstack.org/#/settings/ - what does it show for your username? | 11:59 |
gparaskevas | odyssey4me: gparask | 11:59 |
svg | Hi all | 12:00 |
svg | mattt: What is now left to do for the ceph review? | 12:01 |
odyssey4me | ok, can you pastebin the output from 'git review -v -s' ? | 12:01 |
mattt | svg: not much, i think we're good to go | 12:01 |
svg | Which means..? | 12:02 |
svg | I guess this needs two +2 reviews now? | 12:02 |
mattt | svg: yeah, i'm just reviewing some of the changes that went in over the weekend, then I'll +2 | 12:02 |
svg | On a sidenote, I need to prepare a kilo version with the ceph patch, for internal testing | 12:03 |
gparaskevas | odyssey4me: http://paste.openstack.org/show/406739/ | 12:03 |
odyssey4me | svg if this is approved, it can be backported with a simple cherry-pick | 12:03 |
svg | I'm wondering if i just backport the thing, ot if there might be anything else i need to take into account atm. | 12:03 |
odyssey4me | svg for your own internal test you should just be able to do a cherry-pick on top of your own checkout | 12:04 |
*** fawadkhaliq has quit IRC | 12:04 | |
svg | Because me is going two weeks to France by the end of the week, and I'd like to allow $cowroker to not need me :) | 12:04 |
odyssey4me | but for now, don't backport until we have the master patch merged | 12:04 |
odyssey4me | considering our delays for 11.1.0 it would seem that this may be able to be brought forward from 11.2.0 to 11.1.0 :) | 12:05 |
svg | That would be handy. | 12:05 |
svg | I'm just trying to get an idea of the time frame here, as I not much time for the internal stuff anymore? | 12:06 |
mattt | i'd love for people to give this a bit of a workout in master before we backport to kilo | 12:07 |
mattt | but assuming we don't discover any issues it should be a straightforward backport | 12:07 |
odyssey4me | svg we'll re-discuss the time-frame for releasing 11.1.0 a little later today when we have as many of the cores online as possible | 12:07 |
*** daneyon has joined #openstack-ansible | 12:07 | |
svg | ok, thx, then we will know more today. | 12:07 |
*** daneyon has quit IRC | 12:12 | |
*** woodard has joined #openstack-ansible | 12:13 | |
mattt | evrardjp: you're about 10 mins too late on your comments :) | 12:20 |
mattt | evrardjp: this review has been in flight for over 3 months, we wanted to get what is there merged now and we can improve where necessary with subsequent patches | 12:21 |
evrardjp | sorry, hard to follow you guys when in a meeting ;) | 12:21 |
evrardjp | that's no problem then | 12:22 |
evrardjp | there is always room for improvement, right? :D | 12:22 |
mattt | evrardjp: yes! and smaller changes will now be much easier to get through, so please do help where you're able | 12:22 |
evrardjp | my comments was more a way to open the discussion too | 12:24 |
odyssey4me | evrardjp the comments are valuable, but a lot easier when done in line at the location in question | 12:26 |
odyssey4me | have you seen that you can comment on a specific line in a file? | 12:27 |
evrardjp | I've seen that option, but was wondering what was the impact of doing it... Thought the basic text was a good start | 12:27 |
evrardjp | will do it differently next time | 12:28 |
odyssey4me | and yes, the patch is on its way to merging into master - so once it's merged you can log specific bugs and work on patches which are targeted at certain topics - it's a lot easier when working on something small that targets a specific focal point | 12:28 |
*** woodard has quit IRC | 12:28 | |
odyssey4me | evrardjp see for example https://review.openstack.org/#/c/207793/ | 12:28 |
odyssey4me | in the os-neutron-install change there was a comment on a specific line which is seen in context | 12:29 |
odyssey4me | this makes it easier to discuss in the right context | 12:29 |
*** woodard has joined #openstack-ansible | 12:29 | |
*** woodard has quit IRC | 12:30 | |
*** woodard has joined #openstack-ansible | 12:31 | |
*** alextricity has quit IRC | 12:38 | |
*** alextricity has joined #openstack-ansible | 12:38 | |
gparaskevas | odyssey4me: so is it that my gerrit username is gparask and my launchpad username is gparaskevas? is that the issue? | 12:39 |
odyssey4me | gparaskevas no idea - both my usernames are the same, and mine is longer than yours, so I'm not sure why you made yours shorter? | 12:43 |
gparaskevas | odyssey4me: i dont know if its a matter of length i just couldnt set gparaskevas as my username on gerrit... | 12:44 |
odyssey4me | can you paste both the console output all the way from the line where you actually write the command? | 12:44 |
odyssey4me | also add a git review output from your branch | 12:44 |
odyssey4me | hmm, let me check something | 12:45 |
gparaskevas | http://paste.openstack.org/show/406746/ | 12:46 |
gparaskevas | sure | 12:46 |
odyssey4me | if you execute 'git commit -a --amend' then pastebin the commit edit that's shown? | 12:46 |
gparaskevas | http://paste.openstack.org/show/406747/ | 12:47 |
odyssey4me | ok, there's no change-id line which means that git review isn't working properly | 12:49 |
odyssey4me | normally a post-commit hook would add a change id to your commit message | 12:50 |
gparaskevas | mm thats true | 12:50 |
gparaskevas | so? | 12:50 |
gparaskevas | can i add it manualy? | 12:50 |
openstackgerrit | Merged stackforge/os-ansible-deployment: Enable Horizon to consume a Keystone v3 API endpoint https://review.openstack.org/208012 | 12:50 |
odyssey4me | no, it's dynamically generated | 12:50 |
*** tlian has joined #openstack-ansible | 12:50 | |
odyssey4me | gparaskevas so that means that your git review plugin isn't properly configured for the repo, which is odd | 12:53 |
gparaskevas | odyssey4me: i did that because i had some problems..:git remote add gerrit ssh://gparask@review.openstack.org:29418/stackforge/os-ansible-deployment.git | 12:55 |
gparaskevas | look at what problems i had in the begginging | 12:55 |
odyssey4me | what version of git-review do you have installed? ie: pip freeze | grep review | 12:56 |
gparaskevas | git-review-1.24-5.fc22.noarch | 12:56 |
gparaskevas | git-review==1.24 | 12:57 |
gparaskevas | i did install it with yum | 12:57 |
odyssey4me | please paste the output (including command executed) of git review? | 12:59 |
gparaskevas | odyssey4me: git review -v -d : http://paste.openstack.org/show/406749/ | 13:00 |
*** markvoelker_ has quit IRC | 13:02 | |
odyssey4me | right, now that makes sense | 13:03 |
odyssey4me | it can't connect to gerrit on that port via ssh - do you have a firewall perhaps blocking outgoing high ports? | 13:03 |
odyssey4me | or unknown ports? | 13:04 |
*** markvoelker has joined #openstack-ansible | 13:04 | |
* odyssey4me you may wish to try setting this up: http://docs.openstack.org/infra/manual/developers.html#accessing-gerrit-over-https | 13:04 | |
odyssey4me | gparaskevas ^ | 13:05 |
gparaskevas | odyssey4me: ok | 13:05 |
openstackgerrit | Merged stackforge/os-ansible-deployment: Add Ceph/RBD support to playbooks https://review.openstack.org/181957 | 13:16 |
* svg http://i61.tinypic.com/2d1jne0.jpg | 13:19 | |
svg | Thank you all for your support! ^^ | 13:19 |
*** woodard has quit IRC | 13:21 | |
mattt | svg: more like http://www.quickmeme.com/img/4a/4a5c519396c22eef4722df1c81c2d589854e5bfe5982e1824d7d6e6d8a2650fd.jpg | 13:21 |
svg | I'm not that complicated guy :) | 13:25 |
*** woodard has joined #openstack-ansible | 13:25 | |
openstackgerrit | Jesse Pretorius proposed stackforge/os-ansible-deployment-specs: Added spec to upgrade MariaDB to v10 https://review.openstack.org/203708 | 13:27 |
*** bapalm has joined #openstack-ansible | 13:27 | |
*** TheIntern has joined #openstack-ansible | 13:30 | |
*** KLevenstein has joined #openstack-ansible | 13:33 | |
*** richoid has quit IRC | 13:33 | |
gparaskevas | odyssey4me: i tried with https but it still goes over ssh for some reason | 13:33 |
odyssey4me | did you remove the gerrit remote after configuring the scheme and port? | 13:34 |
odyssey4me | ie git remote rm gerrit | 13:34 |
gparaskevas | yes :( | 13:34 |
odyssey4me | do a fresh 'git config --list' and 'git remote -v' and pastebin it? | 13:35 |
gparaskevas | odyssey4me: http://paste.openstack.org/show/406754/ | 13:37 |
odyssey4me | that looks right, now execute: git review -v -s | 13:39 |
-openstackstatus- NOTICE: The Gerrit service on review.openstack.org has been restarted in an attempt to improve performance. | 13:39 | |
*** sdake has joined #openstack-ansible | 13:41 | |
gparaskevas | odyssey4me: http://paste.openstack.org/show/406757/ | 13:44 |
odyssey4me | gparaskevas although I don't think it'll help - try removing the clone and re-cloning it? | 13:48 |
gparaskevas | od odyssey4me ok | 13:48 |
odyssey4me | gparaskevas also, have you generated the http password? https://review.openstack.org/#/settings/http-password | 13:49 |
gparaskevas | yes but when i changed from ssh to http it only asked me for usernmae and never asked me from password on the commandline | 13:50 |
odyssey4me | yeah, that's because it's still trying to use ssh - as long as you've done that then it's fine | 13:50 |
*** bapalm_ has joined #openstack-ansible | 13:51 | |
odyssey4me | if re-cloning and trying again doesn't work, try : git config remote.gerrit.url='https://gparask@review.openstack.org/stackforge/os-ansible-deployment.git' | 13:53 |
odyssey4me | then try to git review -s again | 13:53 |
*** sigmavirus24_awa is now known as sigmavirus24 | 13:54 | |
*** spotz_zzz is now known as spotz | 13:54 | |
*** bapalm has quit IRC | 13:54 | |
*** daneyon has joined #openstack-ansible | 13:56 | |
*** javeriak has quit IRC | 13:57 | |
gparaskevas | odyssey4me: i am not running anything as root nor am i useing sudo | 13:59 |
*** Mudpuppy has joined #openstack-ansible | 14:00 | |
*** daneyon has quit IRC | 14:01 | |
odyssey4me | gparaskevas that should be fine - I don't use sudo either, nor am I running as root | 14:01 |
*** spotz is now known as spotz_zzz | 14:03 | |
*** spotz_zzz is now known as spotz | 14:04 | |
*** ccrouch has joined #openstack-ansible | 14:05 | |
*** ccrouch has left #openstack-ansible | 14:05 | |
gparaskevas | odyssey4me: i am recloning from github | 14:05 |
gparaskevas | odyssey4me: i am redoing the changes ad i will tell you once more | 14:06 |
*** ccrouch has joined #openstack-ansible | 14:11 | |
*** ccrouch has left #openstack-ansible | 14:11 | |
*** prad has joined #openstack-ansible | 14:11 | |
*** prad has quit IRC | 14:11 | |
*** pilgrimstack has quit IRC | 14:14 | |
*** pilgrimstack has joined #openstack-ansible | 14:14 | |
*** sdake has quit IRC | 14:16 | |
*** sdake has joined #openstack-ansible | 14:24 | |
evrardjp | just to be sure gparaskevas: you're using the same email for gerrit and for launchpad? Is that the same email address used to sign the (C)CLA? | 14:25 |
gparaskevas | evrardjp: yes... | 14:25 |
gparaskevas | i have loged in with the same email address on all services | 14:25 |
evrardjp | so the (C)CLA has been signed too | 14:26 |
evrardjp | (I ask this because I got the same message with CCLA not signed) | 14:26 |
sigmavirus24 | evrardjp: ICLA is what gparaskevas signs, CCLA is what his employer signs I think | 14:26 |
evrardjp | indeed | 14:26 |
sigmavirus24 | (I := Individual, C := Corporate) | 14:26 |
evrardjp | I thought it was CLA and CCLA | 14:26 |
evrardjp | but yes, that's the idea | 14:27 |
sigmavirus24 | different Apache projects use different shorthand | 14:27 |
evrardjp | I just wanted to make sure <something> was signed | 14:27 |
gparaskevas | nothing is signed i am sorry | 14:27 |
gparaskevas | wait | 14:27 |
sigmavirus24 | :D | 14:27 |
gparaskevas | when i created the opensatck account is asked me for what company i work for | 14:27 |
gparaskevas | this is all about? | 14:28 |
gparaskevas | it has to do with the afiliaton? | 14:28 |
evrardjp | could you go there? https://review.openstack.org/#/settings/agreements | 14:29 |
evrardjp | and see if something is "verified" ? | 14:29 |
gparaskevas | nothing | 14:30 |
evrardjp | that's your issue | 14:30 |
gparaskevas | finaly | 14:30 |
evrardjp | I asked if you read the page completely at the start of the questions ;) | 14:31 |
evrardjp | it's written :D | 14:31 |
evrardjp | I had the same issue | 14:31 |
*** prad has joined #openstack-ansible | 14:36 | |
gparaskevas | evrardjp: first of all thank you! i send an email to my boss to see it through and i will try again after i sign it | 14:38 |
openstackgerrit | Serge van Ginderachter proposed stackforge/os-ansible-deployment: Enable Neutron lbaas-haproxy https://review.openstack.org/208519 | 14:51 |
*** javeriak has joined #openstack-ansible | 14:56 | |
jwitko | hey guys, it looks like my ELK stack is spazzing out. I have messages being spammed at ridiculous rates about errors that happened days ago.... Anyone ever deal with something like this before? | 14:56 |
*** yaya has joined #openstack-ansible | 14:57 | |
*** javeriak_ has joined #openstack-ansible | 15:00 | |
*** phalmos has joined #openstack-ansible | 15:00 | |
openstackgerrit | Serge van Ginderachter proposed stackforge/os-ansible-deployment: Enable Neutron lbaas-haproxy https://review.openstack.org/208519 | 15:00 |
*** javeriak has quit IRC | 15:01 | |
odyssey4me | jwitko sure, thought it depends on what version of everything you're using, of course | 15:08 |
jwitko | Kilo | 15:08 |
jwitko | sorry, 11.0.4 osad Kilo branch | 15:08 |
odyssey4me | jwitko have you used the ELK stack from rpc-openstack then? because OSAD does not include the ELK stack | 15:09 |
jwitko | doh. yes | 15:09 |
odyssey4me | so it all depends on how your log shipping is happening - if not via beaver, then logstash doesn't keep up well | 15:09 |
jwitko | its using Beaver | 15:09 |
odyssey4me | if it's only coming in via rsyslog then it's likely that you're having sporadic log shipping failures which cause a backup - that's why we switched to beaver | 15:10 |
odyssey4me | other than that, you'll have to isolate whether you're getting resubmissions of old events, or whether it's not keeping up with new events | 15:10 |
odyssey4me | then isolate whether the issue is logstash not keeping up with processing, or whether elasticsearch is not keeping up with storing | 15:11 |
javeriak_ | hey guys, due to some power trips a deployment of mine has gone into a bad state, i cant atm figure out what else to check, all nova services show as Down, indivdually they are in the running states, i tried restarting and no luck, also haproxy stats show all backends as UP, any pointers on what else I could check | 15:11 |
jwitko | looks like iv’e got some work ahead of me | 15:11 |
jwitko | thanks odyssey4me | 15:11 |
*** alextricity_r has joined #openstack-ansible | 15:15 | |
javeriak_ | I do see alot of ECONNREFUSED, oslo.messaging._drivers.impl_rabbit AMQP server on 172.20.190.154:5672 is unreachable in nova logs | 15:15 |
sigmavirus24 | javeriak_: what version? | 15:15 |
alextricity_r | Morning! Does anyone know where the OSAD docs are? | 15:15 |
sigmavirus24 | javeriak_: is rabbit even up? | 15:15 |
alextricity_r | I remember viewing them in the past, but I lost the link.. | 15:15 |
sigmavirus24 | alextricity_r: I believe osad.readthedocs.org | 15:15 |
evrardjp | javeriak_: check everywhere your rabbit status | 15:15 |
mgariepy | alextricity_r, http://osad.readthedocs.org/en/latest/ | 15:16 |
alextricity_r | sigmavirus24: mgariepy Thanks :) | 15:16 |
odyssey4me | alextricity_r dotted over a few places - that's one place, the rest are in example configs and the main defaults files in each role | 15:16 |
sigmavirus24 | javeriak_: also I think I remember hearing that if you restart rabbit you have to then restart nova because of a channels issue in oslo.message | 15:16 |
sigmavirus24 | *messaging | 15:16 |
odyssey4me | javeriak_ sounds ot me like your rabbitmq may be down | 15:16 |
evrardjp | alextricity_r: make html on your git clone in the docs section | 15:16 |
evrardjp | far better :) | 15:17 |
sigmavirus24 | I don't think the issue was that rabbit was unreachable though | 15:17 |
evrardjp | less friendly but always available | 15:17 |
evrardjp | alextricity_r: check not only if a process is running, but also how it behaves | 15:18 |
sigmavirus24 | evrardjp: I believe you meant that for javeriak_ ? | 15:19 |
javeriak_ | what container does rabbit live in guys? | 15:19 |
javeriak_ | i havnt been able to find the service yet | 15:20 |
evrardjp | sigmavirus24: yes Indeed | 15:20 |
javeriak_ | sigmavirus24: I'm on 10.1.10 | 15:20 |
evrardjp | end of the day, I overflowed :p | 15:20 |
sigmavirus24 | evrardjp: infra1_rabbit_mq_container for example | 15:22 |
sigmavirus24 | evrardjp: understandable | 15:22 |
evrardjp | sigmavirus24: ;) | 15:22 |
javeriak_ | also btw is there a way to restart services from within the main infra nodes, as in not have to go into respective containers, something like all the symlinked logs you can get under /openstack/logs | 15:23 |
javeriak_ | sigmavirus24: ofcourse :P, i should have seen that | 15:23 |
evrardjp | it shouldn't happen, openstack doesn't need a centralized reboot or any reboot at all ;) | 15:24 |
sigmavirus24 | javeriak_: most of the services should start when the container comes up so you could do `lxc-stop -n container; lxc-start -d -n container` | 15:25 |
evrardjp | javeriak_: to test the rabbitmq, I usually start with checking peers (rabbitmqctl cluster_status) then checking the policies (rabbitmqctl list_policies) | 15:25 |
sigmavirus24 | the -d is import so it goes into daemon mode | 15:25 |
javeriak_ | sigmavirus24: yes im familiar with the lxc commands, so rabbitmq does indeed report that its not running | 15:26 |
odyssey4me | javeriak_ use ansible, eg: ansible <group name> -m shell -a '<command to run>' | 15:27 |
sigmavirus24 | odyssey4me: that's the easy way | 15:27 |
sigmavirus24 | psh | 15:27 |
odyssey4me | javeriak_ a specific example: ansible nova_api_os_compute -m shell -a 'service nova-api-os-compute restart' | 15:29 |
odyssey4me | (run from your playbooks directory) | 15:29 |
javeriak_ | odyssey4me: ah right thats much easier , thanks | 15:31 |
odyssey4me | sigmavirus24 palendae I think we have a ordering issue in the upgrade script - either that or one of the patches isn't right | 15:31 |
odyssey4me | the /tmp/fix_juno_log_rotate play fails because it's trying to act on the cinder_scheduler, nova_console, repo and rsyslog containers... none of which exist until the lxc-containers-create play runs | 15:34 |
odyssey4me | or maybe this one should also be || true | 15:34 |
javeriak_ | so rabbitmq failed to start, getting unhelpful crash reports... | 15:35 |
sigmavirus24 | odyssey4me: palendae is on voluncation | 15:35 |
odyssey4me | oh dear | 15:36 |
sigmavirus24 | odyssey4me: i was seeing the same thing but my may concern was that we had fixed the syntax problems in run-upgrade.sh | 15:36 |
odyssey4me | thx sigmavirus24 | 15:36 |
*** gparaskevas has quit IRC | 15:37 | |
*** phalmos has quit IRC | 15:40 | |
odyssey4me | sigmavirus24 mattt d34dh0r53 unfortunately we're the only cores available right now for voting, so instead of trying to release 11.1.0 today I suggest that we do so on Thu after the community meeting | 15:44 |
*** daneyon has joined #openstack-ansible | 15:45 | |
mattt | odyssey4me: sounds fine to me | 15:46 |
evrardjp | mattt: I'm not sure to have followed the ceph commits right now, will it be merged in the 11.1.0 ? | 15:47 |
evrardjp | or do you wish more testing on master? | 15:47 |
mattt | evrardjp: my personal opinion is for it to go into 11.2 | 15:48 |
evrardjp | there is no expected date for 11.2 :) | 15:49 |
*** daneyon has quit IRC | 15:50 | |
evrardjp | I'll try my chances with master then | 15:50 |
evrardjp | or cherry picking | 15:50 |
evrardjp | thanks for the info | 15:50 |
mattt | evrardjp: yeah cherry-picking should work | 15:50 |
mattt | evrardjp: it may go into 11.1, but like i say i'd rather see more people bash it a bit before we backport to kilo | 15:50 |
*** daneyon has joined #openstack-ansible | 15:51 | |
*** daneyon has quit IRC | 15:51 | |
*** daneyon has joined #openstack-ansible | 15:51 | |
odyssey4me | evrardjp cherry pick to the kilo branch is the best strategy | 15:53 |
evrardjp | I think too | 15:53 |
odyssey4me | the master branch uses the upstream master branches which are massively in flux, wherea the kilo branch tracks the stable/kilo branches upstream | 15:53 |
evrardjp | this also helps give feedback for future merges | 15:53 |
*** openstackgerrit_ has joined #openstack-ansible | 15:54 | |
evrardjp | odyssey4me: that's why I was afraid :p | 15:54 |
*** daneyon_ has joined #openstack-ansible | 15:54 | |
*** daneyon has quit IRC | 15:56 | |
odyssey4me | sigmavirus24 perhaps it's best to rebase https://review.openstack.org/207936 on top of https://review.openstack.org/207687 ? | 15:58 |
sigmavirus24 | odyssey4me: ah yeah, it'll cause a merge conflict but i'll fix it up as soon as the other merges | 15:59 |
sigmavirus24 | it's a stupid merge conflict too because git is bad at merging things sometimes | 15:59 |
odyssey4me | yeah | 16:00 |
*** ccrouch has joined #openstack-ansible | 16:04 | |
*** ccrouch has left #openstack-ansible | 16:04 | |
*** phalmos has joined #openstack-ansible | 16:04 | |
odyssey4me | sigmavirus24 odd, I can't seem to find where '/tmp/fix_juno_log_rotate.yml' is being created? | 16:06 |
sigmavirus24 | odyssey4me: it's inline in run-upgrade.sh I thought | 16:06 |
sigmavirus24 | odyssey4me: https://github.com/stackforge/os-ansible-deployment/blob/kilo/scripts/run-upgrade.sh#L579 | 16:07 |
*** galstrom_zzz is now known as galstrom | 16:07 | |
odyssey4me | sigmavirus24 ah, lovely - it's in kilo and not master :/ | 16:08 |
sigmavirus24 | odyssey4me: "fix juno" | 16:09 |
sigmavirus24 | only needs to be in kilo | 16:09 |
odyssey4me | sigmavirus24 yeah, although I'm concerned at our divergence without a proper review of what needs to be where | 16:10 |
sigmavirus24 | odyssey4me: the problem is for upgrades from juno to kilo, not juno to liberty (since we're not supporting upgrades from juno to liberty) | 16:10 |
odyssey4me | sigmavirus24 agreed, but we're fixing several upgrade things directly in the kilo branch which are also useful for future upgrades | 16:11 |
odyssey4me | never mind though, for liberty I think we need to revamp this whole method | 16:11 |
odyssey4me | the monolithic method must die | 16:12 |
d34dh0r53 | odyssey4me: I'm out of the office starting Thu | 16:12 |
openstackgerrit | Merged stackforge/os-ansible-deployment: Properly parse and quote arguments in upgrade script https://review.openstack.org/207687 | 16:12 |
openstackgerrit | Jesse Pretorius proposed stackforge/os-ansible-deployment: Properly parse and quote arguments in upgrade script https://review.openstack.org/208546 | 16:13 |
odyssey4me | d34dh0r53 sigmavirus24 ^ forward port to master from kilo | 16:13 |
*** javeriak_ has quit IRC | 16:13 | |
sigmavirus24 | I'll rebase the other one now | 16:14 |
*** sdake has quit IRC | 16:16 | |
openstackgerrit | Ian Cordasco proposed stackforge/os-ansible-deployment: Use playbook status to report upgrade failure https://review.openstack.org/207936 | 16:16 |
sigmavirus24 | odyssey4me: rebased ^ | 16:16 |
*** fawadkhaliq has joined #openstack-ansible | 16:16 | |
odyssey4me | d34dh0r53 ^^ | 16:17 |
d34dh0r53 | looks good | 16:17 |
*** sdake has joined #openstack-ansible | 16:21 | |
*** javeriak has joined #openstack-ansible | 16:22 | |
*** javeriak_ has joined #openstack-ansible | 16:26 | |
*** javeriak has quit IRC | 16:31 | |
*** phalmos has quit IRC | 16:33 | |
openstackgerrit | Jesse Pretorius proposed stackforge/os-ansible-deployment: Force the juno log rotate fix task to always succeed https://review.openstack.org/208557 | 16:33 |
*** alop has joined #openstack-ansible | 16:33 | |
*** phalmos has joined #openstack-ansible | 16:35 | |
odyssey4me | sigmavirus24 ^ that should do the trick to fix the issue I found... I'm rebuilding an AIO to verify. | 16:37 |
*** TheIntern has quit IRC | 16:37 | |
sigmavirus24 | I have one up so I'll test that | 16:39 |
*** richoid has joined #openstack-ansible | 16:40 | |
*** sdake has quit IRC | 16:43 | |
*** sdake has joined #openstack-ansible | 16:47 | |
*** harlowja has joined #openstack-ansible | 17:03 | |
*** phalmos has quit IRC | 17:05 | |
*** yaya_ has joined #openstack-ansible | 17:09 | |
*** yaya has quit IRC | 17:09 | |
*** yaya_ is now known as yaya | 17:09 | |
sigmavirus24 | odyssey4me: so far so good on the upgrade with that change | 17:21 |
odyssey4me | sigmavirus24 excellent :) | 17:36 |
sigmavirus24 | well I mean | 17:42 |
*** TheIntern has joined #openstack-ansible | 17:42 | |
sigmavirus24 | galera is still restarting | 17:42 |
sigmavirus24 | but | 17:42 |
odyssey4me | sigmavirus24 did you set galera_ignore_cluster_state to true in user_variables ? | 17:43 |
sigmavirus24 | damnit | 17:43 |
sigmavirus24 | I knew I forgot something | 17:43 |
odyssey4me | if not, then your upgrade will fail | 17:44 |
sigmavirus24 | yep | 17:44 |
openstackgerrit | Tom Cameron proposed stackforge/os-ansible-deployment: Add new roles to create a router container and custom routes https://review.openstack.org/203683 | 17:44 |
sigmavirus24 | it just failed as you said that | 17:44 |
odyssey4me | sigmavirus24 ok, I have an upgrade test running now | 17:47 |
sigmavirus24 | I'm rebuilding Juno AIOs as we speak to test out the ugprades | 17:48 |
odyssey4me | hmm, I forgot to lower the number of forks in ansible.cfg | 17:48 |
odyssey4me | without doing that often results in ssh connection failures :/ | 17:49 |
odyssey4me | there we go, the upgrade script has passed the stage where it failed previously :) | 17:50 |
*** javeriak_ has quit IRC | 17:57 | |
openstackgerrit | Merged stackforge/os-ansible-deployment: Change ansible forks used https://review.openstack.org/207474 | 17:59 |
*** javeriak has joined #openstack-ansible | 18:01 | |
odyssey4me | d34dh0r53 https://review.openstack.org/208557 | 18:02 |
*** javeriak has quit IRC | 18:05 | |
*** javeriak has joined #openstack-ansible | 18:05 | |
*** openstackgerrit_ has quit IRC | 18:07 | |
d34dh0r53 | odyssey4me: sigmavirus24 should I merge this, or wait until sigmavirus24's test is doine? | 18:11 |
d34dh0r53 | looks like it should get past that point to me now | 18:12 |
sigmavirus24 | d34dh0r53: up to you, | 18:12 |
sigmavirus24 | It'll take a while for these AIOs to build before I can even do a full upgrade run | 18:12 |
d34dh0r53 | k | 18:12 |
*** phalmos has joined #openstack-ansible | 18:15 | |
*** javeriak has quit IRC | 18:16 | |
*** harlowja has quit IRC | 18:21 | |
*** harlowja has joined #openstack-ansible | 18:21 | |
*** yaya has quit IRC | 18:29 | |
*** javeriak has joined #openstack-ansible | 18:29 | |
*** fawadkhaliq has quit IRC | 18:31 | |
openstackgerrit | Jesse Pretorius proposed stackforge/os-ansible-deployment: Move ansible logging to gate-check script only https://review.openstack.org/207502 | 18:34 |
odyssey4me | sigmavirus24 meh, now it failed on the setup-infrastructure play during the galera install :/ | 18:36 |
openstackgerrit | Merged stackforge/os-ansible-deployment: Use playbook status to report upgrade failure https://review.openstack.org/207936 | 18:40 |
*** javeriak has quit IRC | 18:41 | |
sigmavirus24 | odyssey4me: I'll cherrypick that forward | 18:42 |
*** TheIntern has quit IRC | 18:44 | |
openstackgerrit | Ian Cordasco proposed stackforge/os-ansible-deployment: Use playbook status to report upgrade failure https://review.openstack.org/208607 | 18:46 |
*** TheIntern has joined #openstack-ansible | 18:46 | |
odyssey4me | sigmavirus24 fyi a simple re-run of that playbook worked perfectly | 18:46 |
sigmavirus24 | odyssey4me: d34dh0r53 ^ forward port | 18:46 |
openstackgerrit | Jesse Pretorius proposed stackforge/os-ansible-deployment: Move ansible logging to gate-check script only https://review.openstack.org/207502 | 19:22 |
*** sdake has quit IRC | 19:28 | |
odyssey4me | sigmavirus24 happy to +w this one? https://review.openstack.org/208557 | 19:38 |
odyssey4me | I think that'll be the last of the required patches for a decent QE test run | 19:39 |
sigmavirus24 | yeah my last AIO failed somewhere unrelated | 19:39 |
*** galstrom is now known as galstrom_zzz | 20:00 | |
*** sdake has joined #openstack-ansible | 20:01 | |
*** galstrom_zzz is now known as galstrom | 20:01 | |
*** alextricity_r has quit IRC | 20:03 | |
*** sdake_ has joined #openstack-ansible | 20:10 | |
*** sdake has quit IRC | 20:13 | |
*** yaya has joined #openstack-ansible | 20:35 | |
openstackgerrit | Merged stackforge/os-ansible-deployment: Force the juno log rotate fix task to always succeed https://review.openstack.org/208557 | 20:44 |
*** bapalm_ has quit IRC | 21:00 | |
*** woodard has quit IRC | 21:08 | |
*** yaya has quit IRC | 21:12 | |
*** daneyon_ has quit IRC | 21:14 | |
*** daneyon has joined #openstack-ansible | 21:15 | |
*** pilgrimstack has quit IRC | 21:16 | |
*** pilgrimstack1 has joined #openstack-ansible | 21:16 | |
*** galstrom is now known as galstrom_zzz | 21:21 | |
*** galstrom_zzz is now known as galstrom | 21:35 | |
*** TheIntern has quit IRC | 21:36 | |
*** yaya has joined #openstack-ansible | 21:39 | |
*** yaya has quit IRC | 21:50 | |
Sam-I-Am | moo | 22:03 |
*** Mudpuppy has quit IRC | 22:06 | |
*** yaya has joined #openstack-ansible | 22:09 | |
*** KLevenstein has quit IRC | 22:18 | |
bgmccollum | odyssey4me, gparaskevas: git review using HTTP passwords requires git-review 1.25 or newer | 22:23 |
*** spotz is now known as spotz_zzz | 22:28 | |
sigmavirus24 | bgmccollum: that's a good fun fact | 22:32 |
sigmavirus24 | I'll remember it :D | 22:32 |
*** JRobinson__ has joined #openstack-ansible | 22:34 | |
*** galstrom is now known as galstrom_zzz | 22:37 | |
*** yaya has quit IRC | 22:38 | |
*** yaya has joined #openstack-ansible | 23:14 | |
*** darrenc has quit IRC | 23:23 | |
*** JRobinson__ has quit IRC | 23:23 | |
*** darrenc has joined #openstack-ansible | 23:23 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 23:24 | |
*** darrenc has quit IRC | 23:35 | |
*** darrenc has joined #openstack-ansible | 23:35 | |
*** phalmos has quit IRC | 23:36 | |
*** darrenc is now known as darrenc_afk | 23:45 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!