-
Notifications
You must be signed in to change notification settings - Fork 1
/
apps.py
57 lines (53 loc) · 2.81 KB
/
apps.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from django.shortcuts import reverse
from django.apps import AppConfig
from django.conf import settings
APP_SETTINGS = dict(
# dkron server URL
URL='http://localhost:8888',
# used to build browser-visible URLs to dkron - can be a full URL if no reverse proxy is being used
PATH=None,
# directory to store and execute the dkron binaries, defaults to temporary one - hardly optimal, do set one up!
BIN_DIR=None,
# dkron version to (download and) use
VERSION='3.2.7',
# can be changed in case a dkron fork is meant to be used
DOWNLOAD_URL_TEMPLATE='https://github.com/distribworks/dkron/releases/download/v{version}/dkron_{version}_{system}_{machine}.tar.gz',
# always `run_dkron` in server mode
SERVER=False,
# tags for the agent/server created by `run_dkron` - `label=` tag is not required as it is added by `DKRON_JOB_LABEL`
TAGS=[],
# label for the jobs managed by this app, used to make this app agent run only jobs created by this app`
JOB_LABEL=None,
# --join when using `run_dkron`
JOIN=[],
# workdir of `run_dkron`
WORKDIR=None,
# gossip encrypt key for `run_dkron`
ENCRYPT=None,
# HTTP Basic auth header value, if dkron instance is protected with it (really recommended, if instance is exposed)
API_AUTH=None,
# Token used by `run_dkron` for webhook calls into this app
TOKEN=None,
# URL called by dkron webhooks to post job start to this app - passed as `--pre-webhook-url` to dkron, so you need to map `dkron.views.pre_webhook` in your project urls.py and this should be full URL to that route and reachable by dkron. Requires DKRON_SENTRY_CRON_URL otherwise nothing would happen
PRE_WEBHOOK_URL=None,
# URL called by dkron webhooks to post job status to this app - passed as `--webhook-url` to dkron, so you need to map `dkron.views.webhook` in your project urls.py and this should be full URL to that route and reachable by dkron
WEBHOOK_URL=None,
# string to be prefixed to each job created by this app in dkron so the same dkron cluster can be used by different apps/instances without conflicting job names (assuming unique namespaces ^^)
NAMESPACE=None,
# node name to be passed to dkron as `--node-name` - defaults to machine hostname
NODE_NAME=None,
# Optional Sentry URL used for monitoring jobs. Use placeholder `<monitor_slug>` in URL for job name.
SENTRY_CRON_URL=None,
)
class DkronConfig(AppConfig):
name = 'dkron'
default_auto_field = 'django.db.models.AutoField'
def ready(self):
for k, v in APP_SETTINGS.items():
_k = 'DKRON_%s' % k
if hasattr(settings, _k):
continue
if (k, v) == ('PATH', None):
# special one to default to reverse url
v = reverse('dkron:proxy')
setattr(settings, _k, v)