-
Notifications
You must be signed in to change notification settings - Fork 2
/
condor_config.local
48 lines (37 loc) · 1.3 KB
/
condor_config.local
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
## Inside Docker we don't want to rely on DNS for user authentication.
TRUST_UID_DOMAIN = TRUE
UID_DOMAIN = condor-cluster
## Use CCB so we don't need to deal with multiple ephemeral ports
## which are not yet supported by Docker.
USE_SHARED_PORT = TRUE
SHARED_PORT_ARGS = -p 9886
UPDATE_COLLECTOR_WITH_TCP = TRUE
SEC_DEFAULT_NEGOTIATION = NEVER
SEC_DEFAULT_AUTHENTICATION = NEVER
## We're not gonna try and reconfigure for each host involved.
## Just rely on our private network.
#ALLOW_READ = 10.*,*@*
#ALLOW_WRITE = 10.*,*@*
#ALLOW_ADMINISTRATOR = 10.*,*@*
#ALLOW_CONFIG = 10.*,*@*
#ALLOW_NEGOTIATOR = 10.*,*@*
#ALLOW_DAEMON = 10.*,*@*
ALLOW_READ = 10.*
ALLOW_WRITE = 10.*
ALLOW_ADMINISTRATOR = 10.*
ALLOW_CONFIG = 10.*
ALLOW_NEGOTIATOR = 10.*
ALLOW_DAEMON = 10.*
# This didn't seem to change the setting for the collector:
# MAX_FILE_DESCRIPTORS=1024
# Maybe DEFAULT_MAX_FILE_DESCRIPTORS?
# The collector wants to allow at least 10240 open descriptors,
# but Docker doesn't permit changing limits.
COLLECTOR_MAX_FILE_DESCRIPTORS=1024
# Fiddling with these have had no effect so far...
FLOCK_FROM=10.*
FLOCK_TO=$(COLLECTOR_HOST)
HOSTALLOW_READ=10.*
HOSTALLOW_WRITE=10.*
HOSTALLOW_NEGOTIATOR = 10.*
HOSTALLOW_ADMINISTRATOR = 10.*