-
Notifications
You must be signed in to change notification settings - Fork 6
/
dispatcher.conf
67 lines (63 loc) · 2.59 KB
/
dispatcher.conf
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
58
59
60
61
62
63
64
65
66
67
##### Catalog Service #####
# URL prefix (default = jdbc:postgresql://)
datastore_url_prefix=jdbc:postgresql://
# IP address (e.g. 10.10.10.1)
datastore_ip=$catalog_ip_address
# Port (default = 5432)
datastore_port=5432
# DB name (e.g. db-saps)
datastore_name=$catalog_db_name
# Driver (default = org.postgresql.Driver)
datastore_driver=org.postgresql.Driver
# Username (e.g. db-user-saps)
datastore_username=$catalog_user
# Password (e.g. db-user-pass)
datastore_password=$catalog_password
###### Permanent Storage ######
# Permanent storage tasks directory (default = archiver)
permanent_storage_tasks_dir=archiver
# Permanent storage debug tasks directory (default = trash)
# Note: This property would only be used if saps_debug_mode=true
permanent_storage_debug_tasks_dir=trash
###### Swift Permanent Storage ######
#### Openstack Service ####
# Openstack identity service API URL (e.g. https://<domain>:5000)
openstack_identity_service_api_url=$openstack_identity_service_api_url
# Openstack project ID
openstack_project_id=$openstack_project_id
# Openstack user ID
openstack_user_id=$openstack_user_id
# Openstack user password
openstack_user_password=$openstack_user_password
# Openstack object store service API URL
openstack_object_store_service_api_url=$openstack_object_store_service_api_url
# Openstack object store service container name
openstack_object_store_service_container_name=$openstack_object_store_service_container_name
# Openstack object store service key
openstack_object_store_service_key=$openstack_object_store_service_key
##### NFS Permanent Storage #####
# NFS permanent storage path (default = /nfs)
nfs_permanent_storage_path=$nfs_permanent_storage_path
# NFS Permanent storage base URL (default = http://<domain>:80/archiver)
permanent_storage_base_url=$permanent_storage_base_url
##### Dispatcher Component #####
# Communication with Dashboard component (default = 8091)
submission_rest_server_port=8091
# Administrator email (e.g. adminemail@domain)
admin_email=$admin_email
# Administrator username (e.g. admin-user)
admin_user=$admin_user
# Administrator password (e.g. admin-pass)
admin_password=$admin_password
# NOReply email used for email recourse
noreply_email=$noreply_email
# NOReply password used for email recourse
noreply_password=$noreply_password
# Default EGI secret key that match with the EGI password
user_egi_secret_key=$user_egi_secret_key
# Temporary storage path mounted by the NFS client
saps_temp_storage_path=$saps_temp_storage_path
# Permanent storage type [swift | nfs]
saps_permanent_storage_type=$saps_permanent_storage_type
# Debug mode [true | false]
saps_debug_mode=$saps_debug_mode