-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json.example
69 lines (69 loc) · 1.67 KB
/
config.json.example
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
68
69
{
"challenge_name": "CrowdAI Test Challenge",
"challenge_slug": "test-challenge-ignore",
"sensitive_keys": [
"redis_host",
"redis_password",
"docker_username",
"docker_password",
"docker_image_name",
"image_pull_secret"
],
"renderer_path": "challenges.example_contractor.renderer",
"evaluator_path": "challenges.example_contractor.evaluator",
"admins": [
"spMohanty"
],
"redis_host": "your <redis_host>",
"redis_port": 6379,
"redis_db": 0,
"redis_password": "your <redis_password>",
"redis_namespace": "test_challenge",
"job_enqueue_channel": "test_challenge_worker",
"job_contractor_module_name": "general_evaluation_worker",
"total_job_processing_timeout": 10800,
"docker_registry_url": "",
"docker_username": "your <docker_username>",
"docker_password": "your <docker_password>",
"docker_image_name": "your <docker_image_name>",
"image_pull_secret": "your <image_pull_secret>",
"kube_config": "challenges/example_contractor/kube.config",
"gitlab_logs_project_id": 263,
"subcontractor_image": "crowdaidocker/example-subcontractor",
"resources": {
"redis": {
"requests": {
"cpu": 1,
"memory": "2048Mi"
},
"limits": {
"cpu": 1,
"memory": "2048Mi"
}
},
"subcontractor": {
"requests": {
"cpu": 1,
"memory": "2048Mi",
"gpu": 0
},
"limits": {
"cpu": 1,
"memory": "2048Mi",
"gpu": 0
}
},
"agent": {
"requests": {
"cpu": 1,
"memory": "2048Mi",
"gpu": 0
},
"limits": {
"cpu": 2,
"memory": "4096Mi",
"gpu": 0
}
}
}
}