-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcloud_scheduler.conf
More file actions
54 lines (43 loc) · 1.8 KB
/
Copy pathcloud_scheduler.conf
File metadata and controls
54 lines (43 loc) · 1.8 KB
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
#
# A sample configuration file for the cloud scheduler.
#
[global]
# condor_webservice_url must point to the URL of your Condor pool, and the
# port on which it is running (usually 8080).
#
# The default value is http://localhost:8080
condor_webservice_url: http://localhost:8080
# cloud_resource_config is the path to the default list of resources you want
# to use with Cloud Scheduler. If no file is supplied on the command
# line (-c some_cloud | --cloud-config=some_cloud), this file will
# be used.
#
cloud_resource_config: /etc/cloudscheduler/cloud_resources.conf
# info_server_port is the port that the xmlrpc server that serves information
# to tools like cloud_status uses. You may need to change this
# to something other than the default if you have a conflict
# with some other program, but you probably won't need to.
#
# The default value is 8111
#info_server_port: 8111
[logging]
# log_level specifies how much information from Cloud Scheduler to log.
#
# Choose from DEBUG, INFO, WARNING, ERROR and CRITICAL
# The default is INFO
#log_level: INFO
# log_location specifies where to put the Cloud Scheduler log file. If left
# blank, logging will just be sent to standard out
#
#log_location: /tmp/cloudscheduler.log
# log_stdout specifies whether to log to standard out. If set to true, this
# will log to stdout in addition to logging to a file specified
# in log_location, if set to false, Cloud Scheduler won't log to
# stdout, even if there is no value specified for log_location
#
# The default is false
#log_stdout: false
# log_max_size is the maximum filesize in Bytes for your log file
#
# The default is unlimited file size
#log_max_size: 2097152