openstackgerrit | Adam Harwell proposed openstack/octavia master: Update example config to have more correct keystone_authtoken example https://review.openstack.org/465772 | 00:08 |
---|---|---|
*** kobis has joined #openstack-lbaas | 00:26 | |
*** leitan has joined #openstack-lbaas | 00:44 | |
rm_work | UGH this is a nasty bug... | 00:56 |
*** leitan has quit IRC | 01:21 | |
*** fnaval has joined #openstack-lbaas | 02:24 | |
*** mhayden has quit IRC | 02:28 | |
*** mhayden has joined #openstack-lbaas | 02:33 | |
*** links has joined #openstack-lbaas | 03:14 | |
*** yamamoto_ has joined #openstack-lbaas | 03:50 | |
*** kobis has quit IRC | 03:59 | |
*** armax has quit IRC | 04:14 | |
*** links has quit IRC | 04:20 | |
*** fnaval has quit IRC | 04:41 | |
*** fnaval has joined #openstack-lbaas | 04:41 | |
*** links has joined #openstack-lbaas | 04:58 | |
*** fnaval has quit IRC | 05:00 | |
rm_work | re: "nasty bug" -- if you try to create a listener, and it fails to provision on the amp, it goes to ERROR. It can't then be deleted, because when you try to delete it, we try to remove it from the amp config, and it isn't found on the amp, so it reverts the delete >_> | 05:02 |
rm_work | we need to "best effort" to delete it from the amp, and if it isn't found, that's OK | 05:02 |
*** gcheresh has joined #openstack-lbaas | 05:02 | |
*** ssmith has joined #openstack-lbaas | 05:16 | |
*** cpuga has quit IRC | 05:22 | |
*** cpuga has joined #openstack-lbaas | 05:23 | |
*** cpuga has quit IRC | 05:27 | |
openstackgerrit | Adam Harwell proposed openstack/octavia master: Don't leave LBs in PENDING_DELETE after refusing to cascade! https://review.openstack.org/465813 | 05:37 |
rm_work | ^^ that was also BAD (and my fault) | 05:37 |
*** yamamoto_ has quit IRC | 05:39 | |
*** rcernin has joined #openstack-lbaas | 05:46 | |
*** links has quit IRC | 06:08 | |
*** pksingh has joined #openstack-lbaas | 06:11 | |
pksingh | rm_work: hello | 06:11 |
rm_work | o/ | 06:11 |
pksingh | rm_work: need some iinformation related to octavia | 06:12 |
pksingh | pksingh: can you please help m eout | 06:12 |
pksingh | rm_work: ^^ | 06:12 |
rm_work | maybe, what is it? | 06:12 |
pksingh | rm_work: can i write custom user_data during amphora image boot? | 06:13 |
rm_work | i believe so | 06:13 |
pksingh | rm_work: any configuration in octavia for that | 06:13 |
rm_work | i'm not sure where exactly... | 06:13 |
rm_work | it might be a code change | 06:14 |
pksingh | i was checking this function https://github.com/openstack/octavia/blob/da2f3d4a7ccfe45afe6f7337d177a1f31c9b5a3d/octavia/controller/worker/tasks/compute_tasks.py#L51 | 06:14 |
rm_work | ah, right | 06:14 |
pksingh | rm_work: but i am not sure from where config_drive_files option is passed | 06:14 |
pksingh | rm_work: basically i need to change the content of some files | 06:15 |
rm_work | yeah... | 06:15 |
rm_work | it might be a code change there | 06:15 |
rm_work | i'd have to trace that back u | 06:15 |
rm_work | *up a bit | 06:15 |
rm_work | trying to debug something else at the moment though :/ | 06:15 |
pksingh | rm_work: please help if you have time, ok no issue may be after some time | 06:15 |
*** pksingh has quit IRC | 06:17 | |
*** pksingh has joined #openstack-lbaas | 06:22 | |
*** links has joined #openstack-lbaas | 06:24 | |
*** pcaruana has joined #openstack-lbaas | 06:24 | |
*** pksingh has quit IRC | 06:26 | |
*** yamamoto_ has joined #openstack-lbaas | 06:26 | |
*** pksingh has joined #openstack-lbaas | 06:32 | |
*** pksingh has quit IRC | 06:36 | |
*** ssmith has quit IRC | 07:04 | |
*** pksingh has joined #openstack-lbaas | 07:15 | |
*** links has quit IRC | 07:16 | |
*** aojea has joined #openstack-lbaas | 07:22 | |
rm_work | pksingh: config_drive_files isn't passed in from anywhere that is used... so you'd need to make a code change there to allow someone to put in custom files... or patch it yourself to put in files, but that's kind of bad. it'd be cool to make it configurable somehow | 07:27 |
*** links has joined #openstack-lbaas | 07:30 | |
pksingh | rm_work: what do you suggest, change in amphora image(i.e. custom amphora image) build or in octavia code for this purpose? | 07:30 |
rm_work | if the files are very static... probably add them to the image | 07:31 |
rm_work | make a custom element | 07:31 |
rm_work | and you can add the custom element to the build easily | 07:31 |
rm_work | export DIB_LOCAL_ELEMENTS=my_custom_element | 07:32 |
rm_work | making an element that just adds static files is VERY simple | 07:32 |
pksingh | rm_work: not very much familier with custom elements | 07:33 |
rm_work | see in diskimage-create.sh on line 336, we just add DIB_LOCAL_ELEMENTS to the end of the element sequence | 07:33 |
rm_work | yeah it's very simple | 07:33 |
rm_work | take a look at... | 07:33 |
pksingh | rm_work: need to look into it | 07:33 |
rm_work | pksingh: super easy, so just do this | 07:34 |
rm_work | go to the octavia/elements dir | 07:34 |
rm_work | mkdir my_custom_element/static/ | 07:34 |
rm_work | and inside that static folder, put the files you want in, treating that folder as / | 07:35 |
rm_work | so look at "amphora-agent" for example | 07:35 |
rm_work | it has static/etc/logrotate.d/amphora-agent | 07:35 |
rm_work | anything in static/ gets placed from / | 07:35 |
pksingh | rm_work: thank you sir :) | 07:36 |
rm_work | then before you run the create script, export DIB_LOCAL_ELEMENTS=my_custom_element | 07:36 |
rm_work | and you're set | 07:36 |
rm_work | the image should contain the files you want | 07:36 |
pksingh | rm_work: great | 07:36 |
pksingh | rm_work: we will try this, and ask for your help if i face any problem | 07:37 |
pksingh | rm_work: thnx | 07:37 |
rm_work | ok | 07:37 |
rm_work | i'm about to leave for the night, but I will be around tomorrow | 07:37 |
*** gongysh has joined #openstack-lbaas | 08:27 | |
*** krypto has joined #openstack-lbaas | 08:46 | |
*** krypto has quit IRC | 08:46 | |
*** krypto has joined #openstack-lbaas | 08:46 | |
nmagnezi | o/ | 09:05 |
*** pksingh has quit IRC | 09:20 | |
*** pksingh has joined #openstack-lbaas | 09:52 | |
*** belharar has joined #openstack-lbaas | 09:59 | |
*** csomerville has quit IRC | 10:04 | |
*** csomerville has joined #openstack-lbaas | 10:05 | |
*** belharar has quit IRC | 10:08 | |
*** diltram has quit IRC | 10:18 | |
*** diltram has joined #openstack-lbaas | 10:18 | |
*** pksingh has quit IRC | 10:30 | |
*** pksingh has joined #openstack-lbaas | 10:45 | |
*** openstackgerrit has quit IRC | 10:48 | |
*** pksingh has quit IRC | 10:49 | |
*** atoth has joined #openstack-lbaas | 11:27 | |
*** gongysh has quit IRC | 11:39 | |
*** chlong has joined #openstack-lbaas | 11:48 | |
nmagnezi | rm_work, here by any chance? | 12:01 |
*** yamamoto_ has quit IRC | 12:03 | |
*** catintheroof has joined #openstack-lbaas | 12:09 | |
*** belharar has joined #openstack-lbaas | 12:14 | |
*** leitan has joined #openstack-lbaas | 12:25 | |
*** krypto has quit IRC | 12:33 | |
*** krypto has joined #openstack-lbaas | 12:33 | |
*** cpuga has joined #openstack-lbaas | 12:36 | |
*** cpuga has quit IRC | 12:40 | |
*** cpuga has joined #openstack-lbaas | 12:41 | |
*** yamamoto has joined #openstack-lbaas | 12:44 | |
*** links has quit IRC | 12:45 | |
*** catintheroof has quit IRC | 12:50 | |
*** ssmith has joined #openstack-lbaas | 12:58 | |
xgerman | o/ | 12:59 |
nmagnezi | xgerman, o/ | 13:21 |
xgerman | hi, so I will be out the next two weeks beginning tomorrow — so today would be a good day to get me to review stuff ;-) | 13:22 |
nmagnezi | xgerman, first, have a nice vacation :) | 13:23 |
nmagnezi | xgerman, second, nothing too big for me to ask for, still struggling with some tripleO deployment stuff | 13:23 |
xgerman | thanks — I am in Germany so will be fun ;-) | 13:23 |
xgerman | yeah, I have too many balls in the air right now to do something meaningful for LBaaS/Octavia | 13:24 |
xgerman | BTW blogan was legendary to do his best work on Octavia while on PTO | 13:25 |
nmagnezi | xgerman, I was actually running scenario tests post deployment (locally) and getting some errors related to "endpoint not found" and I suspect it is related to the fact that the tempest lib quota client tries to fetch the endpoint with service-type loadbalancer whereas It's service_type=octavia | 13:25 |
xgerman | service_type octavia is wrong | 13:25 |
nmagnezi | xgerman, lol, shame he is not around anymore | 13:25 |
xgerman | yeah, he joined the “Borg” | 13:26 |
nmagnezi | xgerman, really? good I asked you! | 13:26 |
nmagnezi | xgerman, and as for Germany I agree. I love to visit this country. so many places to see | 13:26 |
xgerman | we agreed on loadbalancer I think — | 13:26 |
xgerman | nmagnezi it’s great there — but I am biased since I am from there + have family | 13:27 |
nmagnezi | xgerman, your name turns you in :-) | 13:28 |
nmagnezi | btw what is "Borg" ? | 13:29 |
xgerman | It’s Mestery’s team at IBM — lot’s of Neutron people join to be never heard from again | 13:29 |
mestery | lol | 13:29 |
nmagnezi | mestery, i hope that was not an evil "lol" (aka muhahaha) O_o | 13:30 |
mestery | It's all good :P | 13:32 |
xgerman | :-) | 13:32 |
*** belharar has quit IRC | 13:38 | |
*** chlong has quit IRC | 14:04 | |
*** atoth has quit IRC | 14:05 | |
*** gcheresh has quit IRC | 14:08 | |
*** yamamoto has quit IRC | 14:11 | |
*** yamamoto has joined #openstack-lbaas | 14:12 | |
nmagnezi | xgerman, will it be sane to backport https://review.openstack.org/#/c/450916 to stable/ocata | 14:14 |
xgerman | mmh, we can try — but might be an uphill battle | 14:15 |
*** yamamoto has quit IRC | 14:16 | |
*** atoth has joined #openstack-lbaas | 14:16 | |
nmagnezi | xgerman, you might be right. the thing is, it breaks the Octavia tripleO deployment for stable/ocata | 14:17 |
xgerman | mmgh, can’t that be configurable in some way | 14:17 |
xgerman | also for OSA I just made it the new one (but I am also very lax with tempest tests) | 14:18 |
*** fnaval has joined #openstack-lbaas | 14:32 | |
*** yamamoto has joined #openstack-lbaas | 14:33 | |
*** armax has joined #openstack-lbaas | 14:56 | |
*** pksingh has joined #openstack-lbaas | 14:58 | |
*** aojea has quit IRC | 15:02 | |
*** reedip has joined #openstack-lbaas | 15:04 | |
*** yamamoto has quit IRC | 15:08 | |
*** krypto has quit IRC | 15:13 | |
*** pksingh has quit IRC | 15:20 | |
*** pksingh has joined #openstack-lbaas | 15:26 | |
*** krypto has joined #openstack-lbaas | 15:28 | |
*** krypto has quit IRC | 15:34 | |
*** cody-somerville has joined #openstack-lbaas | 15:39 | |
*** cody-somerville has quit IRC | 15:39 | |
*** cody-somerville has joined #openstack-lbaas | 15:39 | |
*** csomerville has quit IRC | 15:41 | |
*** SumitNaiksatam has joined #openstack-lbaas | 15:42 | |
*** chlong has joined #openstack-lbaas | 15:43 | |
*** aojea has joined #openstack-lbaas | 15:43 | |
*** fnaval has quit IRC | 15:45 | |
*** rcernin has quit IRC | 15:47 | |
*** fnaval has joined #openstack-lbaas | 15:58 | |
*** yamamoto has joined #openstack-lbaas | 16:09 | |
*** yamamoto has quit IRC | 16:15 | |
*** catintheroof has joined #openstack-lbaas | 16:19 | |
*** aojea has quit IRC | 16:25 | |
*** pcaruana has quit IRC | 16:40 | |
*** bzhao has quit IRC | 16:42 | |
*** bzhao has joined #openstack-lbaas | 16:43 | |
*** yamamoto has joined #openstack-lbaas | 17:11 | |
*** krypto has joined #openstack-lbaas | 17:13 | |
*** aojea has joined #openstack-lbaas | 17:14 | |
*** yamamoto has quit IRC | 17:16 | |
*** aojea has quit IRC | 17:18 | |
* blogan still haunts these hallways | 17:26 | |
blogan | boo | 17:26 |
*** reedip has quit IRC | 17:30 | |
*** harlowja has joined #openstack-lbaas | 17:30 | |
*** aojea has joined #openstack-lbaas | 17:31 | |
*** pksingh_ has joined #openstack-lbaas | 17:42 | |
*** pksingh has quit IRC | 17:43 | |
*** pksingh_ has quit IRC | 17:46 | |
*** gcheresh has joined #openstack-lbaas | 17:50 | |
*** pksingh_ has joined #openstack-lbaas | 17:55 | |
*** armax has quit IRC | 17:57 | |
*** harlowja has quit IRC | 18:01 | |
*** yamamoto has joined #openstack-lbaas | 18:13 | |
*** harlowja has joined #openstack-lbaas | 18:15 | |
*** krypto has quit IRC | 18:18 | |
*** yamamoto has quit IRC | 18:18 | |
*** armax has joined #openstack-lbaas | 18:32 | |
*** cody-somerville has quit IRC | 18:42 | |
*** cody-somerville has joined #openstack-lbaas | 18:42 | |
*** pksingh_ has quit IRC | 18:48 | |
*** harlowja has quit IRC | 18:56 | |
*** SumitNaiksatam has quit IRC | 19:02 | |
*** aojea has quit IRC | 19:06 | |
rm_work | blogan: hey! | 19:06 |
blogan | rm_work: ahoy! | 19:06 |
rm_work | nmagnezi: yeah i'm here | 19:06 |
rm_work | and BTW it's "load-balancer" | 19:07 |
rm_work | with a hyphen | 19:07 |
*** harlowja has joined #openstack-lbaas | 19:07 | |
*** SumitNaiksatam has joined #openstack-lbaas | 19:12 | |
blogan | who hyphenates loadbalancer | 19:14 |
blogan | or load balancer | 19:14 |
rm_work | RIGHT | 19:14 |
rm_work | wtf | 19:14 |
blogan | pick a side! | 19:14 |
rm_work | I've been fighting it for so long | 19:14 |
rm_work | i tried | 19:14 |
rm_work | let me see if i can find the CR | 19:14 |
rm_work | blogan: finally got this merged: https://review.openstack.org/#/c/463888/ :P | 19:14 |
rm_work | the thing i asked you about a while back | 19:14 |
*** yamamoto has joined #openstack-lbaas | 19:15 | |
blogan | noice! | 19:17 |
blogan | even kevinbenton +2'ed it | 19:17 |
blogan | i figured he'd -2 everything once he got the ultimate power of ptl | 19:18 |
xgerman | he is a good sport | 19:21 |
*** yamamoto has quit IRC | 19:21 | |
*** aojea has joined #openstack-lbaas | 19:26 | |
rm_work | heh yeah | 19:35 |
*** fnaval has quit IRC | 19:44 | |
*** harlowja has quit IRC | 20:03 | |
*** SumitNaiksatam has quit IRC | 20:09 | |
*** SumitNaiksatam has joined #openstack-lbaas | 20:11 | |
*** yamamoto has joined #openstack-lbaas | 20:17 | |
*** yamamoto has quit IRC | 20:21 | |
*** harlowja has joined #openstack-lbaas | 20:30 | |
kevinbenton | blogan: why are you here? | 20:37 |
kevinbenton | you didn't even stop by neutron to say hello! | 20:37 |
blogan | kevinbenton: i got pinged in here, maybe if you cared you'd ping me in neutron! | 20:37 |
kevinbenton | blogan: i see how it is, can i assign you a few bugs? | 20:39 |
*** harlowja has quit IRC | 20:39 | |
blogan | kevinbenton: you can do whatever you want in launchpad :) but you can't make me do anything! | 20:40 |
blogan | your dark magic holds no power against me anymore | 20:41 |
nmagnezi | blogan, the power of launcpad compels you! | 20:42 |
kevinbenton | blogan: yeah, you don't want the google results for "Brandon Logan" to be a bunch of open bugs assigned to you :) | 20:43 |
blogan | nmagnezi: im too lazy to giphy the exorcist | 20:44 |
nmagnezi | :D | 20:44 |
blogan | kevinbenton: i'm probably the most boring google search | 20:44 |
kevinbenton | blogan: "brandon logan obituary" is the first auto suggest for me | 20:46 |
kevinbenton | blogan: after i type brandon logan :) | 20:46 |
blogan | lol | 20:48 |
blogan | i have risen! | 20:48 |
*** jidar has quit IRC | 20:48 | |
xgerman | lol | 20:49 |
*** jidar has joined #openstack-lbaas | 20:50 | |
*** jidar has quit IRC | 20:57 | |
*** jidar has joined #openstack-lbaas | 20:59 | |
*** gcheresh has quit IRC | 20:59 | |
*** ssmith has quit IRC | 21:05 | |
*** armax has quit IRC | 21:09 | |
*** yamamoto has joined #openstack-lbaas | 21:18 | |
*** yamamoto has quit IRC | 21:22 | |
*** cpuga has quit IRC | 21:29 | |
*** catintheroof has quit IRC | 21:47 | |
*** aojea has quit IRC | 21:49 | |
*** leitan has quit IRC | 21:51 | |
*** armax has joined #openstack-lbaas | 21:56 | |
*** cpuga has joined #openstack-lbaas | 21:57 | |
*** yuanying has quit IRC | 22:12 | |
*** yuanying has joined #openstack-lbaas | 22:12 | |
*** yamamoto_ has joined #openstack-lbaas | 22:19 | |
*** yamamoto_ has quit IRC | 22:24 | |
johnsom | kevinbenton: he like us best... | 22:34 |
johnsom | Have fun googling me.. this is by design | 22:36 |
*** fnaval has joined #openstack-lbaas | 22:40 | |
*** fnaval has quit IRC | 22:42 | |
*** fnaval has joined #openstack-lbaas | 22:43 | |
*** chlong has quit IRC | 22:45 | |
*** armax has quit IRC | 23:13 | |
*** yamamoto_ has joined #openstack-lbaas | 23:20 | |
*** armax has joined #openstack-lbaas | 23:22 | |
*** yamamoto_ has quit IRC | 23:26 | |
*** leitan has joined #openstack-lbaas | 23:37 | |
*** aojea has joined #openstack-lbaas | 23:49 | |
*** aojea has quit IRC | 23:54 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!