[01:38:37] !log codesearch deleting codesearch6 instance (T279763) [01:38:42] Logged the message at https://wikitech.wikimedia.org/wiki/Nova_Resource:Codesearch/SAL [01:38:42] T279763: Move codesearch to cinder - https://phabricator.wikimedia.org/T279763 [01:42:30] can cinder volumes be attached to multiple instances at the same time? [08:25:27] legoktm: in theory yes, but it wont work as a shared fs, so be careful, use RO on the second instance [09:06:57] !log project-proxy cleanup horizon hiera that is applied to both 'proxy' prefix and project-level (leave the project-level one) [09:07:00] Logged the message at https://wikitech.wikimedia.org/wiki/Nova_Resource:Project-proxy/SAL [09:09:23] !log project-proxy enable XFF for wsexport.{wmflabs,wmcloud}.org https://gerrit.wikimedia.org/r/plugins/gitiles/cloud/instance-puppet/+/10fd2f002c3c2b20d5ca9b359b540e33789defc0%5E%21/#F0 (T279111) [09:09:27] Logged the message at https://wikitech.wikimedia.org/wiki/Nova_Resource:Project-proxy/SAL [09:09:27] T279111: Request to enable XFF headers for wikisource VPS project - https://phabricator.wikimedia.org/T279111 [10:06:50] !log Merged the ceph 15 (Octopus) repo deployment to codfw, only the repo, not the packages (T274566) [10:07:02] dcaro: Unknown project "Merged" [10:07:03] T274566: [ceph] Test and upgrade to Octopus - https://phabricator.wikimedia.org/T274566 [10:07:37] !log admin Merged the ceph 15 (Octopus) repo deployment to codfw, only the repo, not the packages (T274566) [10:07:41] Logged the message at https://wikitech.wikimedia.org/wiki/Nova_Resource:Admin/SAL [10:15:24] !log admin starting the upgrade of codfw ceph to octopus 15.2.20 (T274566) [10:15:28] Logged the message at https://wikitech.wikimedia.org/wiki/Nova_Resource:Admin/SAL [10:15:28] T274566: [ceph] Test and upgrade to Octopus - https://phabricator.wikimedia.org/T274566 [10:37:07] !log admin Upgrade of codfw ceph to octopus 15.2.20, mons upgraded, mgrs next (T274566) [10:37:12] Logged the message at https://wikitech.wikimedia.org/wiki/Nova_Resource:Admin/SAL [10:37:13] T274566: [ceph] Test and upgrade to Octopus - https://phabricator.wikimedia.org/T274566 [10:41:53] !log admin Upgrade of codfw ceph to octopus 15.2.20, mgrs upgraded, osds next (T274566) [10:41:57] Logged the message at https://wikitech.wikimedia.org/wiki/Nova_Resource:Admin/SAL [10:48:30] !log admin Upgrade of codfw ceph to octopus 15.2.20 done, will run some performance tests now (T274566) [10:48:35] Logged the message at https://wikitech.wikimedia.org/wiki/Nova_Resource:Admin/SAL [10:48:35] T274566: [ceph] Test and upgrade to Octopus - https://phabricator.wikimedia.org/T274566 [12:40:52] !log tools.lexeme-forms deployed 30c561955f (login link in navbar) [12:40:56] Logged the message at https://wikitech.wikimedia.org/wiki/Nova_Resource:Tools.lexeme-forms/SAL [20:09:49] is it possible to create a python 3.6 venv? [20:11:50] I don't think we have 3.6 available anywhere, but the kubernetes cluster has 3.7 available [20:13:36] the grid is still on 3.5, but we're preparing for an operating system upgrade there which will include python 3.7 [20:14:24] any timeframe for that? [20:16:15] DatGuy: no firm timelines yet. You can follow along at T275864 [20:16:16] T275864: Toolforge: migrate to Debian Buster - https://phabricator.wikimedia.org/T275864 [20:16:59] T277653 is probably the sub-task you would be most interested in [20:17:00] T277653: Toolforge: migrate grid to Debian Buster - https://phabricator.wikimedia.org/T277653 [20:17:19] thanks [20:32:14] !log tools.lexeme-forms deployed 0006696173 (remove automatic login redirect) [20:32:17] Logged the message at https://wikitech.wikimedia.org/wiki/Nova_Resource:Tools.lexeme-forms/SAL [20:50:02] Question: I have a web tool (Python/Flask) running in k8s backend. I would like to expose a couple of environment variables to my tool. How can I best do that? In uwsgi.ini ? [20:50:03] (the specific usecase is to expose statsd auto-config variables like `STATSD_HOST`) [20:52:40] (reading up more, I think I will answer my own question with indeed `uwsgi.ini`) (re @JeanFred: Question: I have a web tool (Python/Flask) running in k8s backend. I would like to expose a couple of environment variables to my tool. How can I best do that? In uwsgi.ini ? [20:52:40] (the specific usecase is to expose statsd auto-config variables like `STATSD_HOST`)) [20:53:27] @JeanFred: I think that should work. Something like `env = STATSD_HOST=whatever` [20:55:00] The "kubernetes way" would be to add them to the pod spec for your container, but `webservice` does not have any magic to support this currently [20:56:00] @JeanFred Another way to do it would be to use something like https://pypi.org/project/python-dotenv/ in your app [20:56:58] Yeah, that was what I was hoping for − some magic to shove in service.manifest or the like. it does not strictly belong to uwsgi but that will od (re @wmtelegram_bot: The "kubernetes way" would be to add them to the pod spec for your container, but `webservice` does not have any magic to support this currently) [20:57:01] Yeah, that was what I was hoping for − some magic to shove in service.manifest or the like. it does not strictly belong to uwsgi but that will do (re @wmtelegram_bot: The "kubernetes way" would be to add them to the pod spec for your container, but `webservice` does not have any magic to support this currently) [20:58:29] @JeanFred: patches welcome :) It is something that webservice could handle with a small bit of work [20:59:22] !log tools.lexeme-forms deployed b17ed175fe (move login hint up) [20:59:25] Logged the message at https://wikitech.wikimedia.org/wiki/Nova_Resource:Tools.lexeme-forms/SAL [21:01:22] Oh, I had actually misread what dotenv does. Could work. [21:01:22] (Trying to keep the difference in glue minimal between the dockre-compose dev env and the toolforge env − an .env file would work on both.) (re @wmtelegram_bot: @JeanFred Another way to do it would be to use something like https://pypi.org/project/python-dotenv/ in your app) [21:06:14] * bd808 wishes that bridgebot was able to keep its primary nick better :/ [21:40:47] !log tools.notwikilambda switched WSOAuth to Gerrit version [21:40:50] Logged the message at https://wikitech.wikimedia.org/wiki/Nova_Resource:Tools.notwikilambda/SAL