-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweaviate-task.json
53 lines (53 loc) · 1.45 KB
/
weaviate-task.json
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
{
"containerDefinitions": [
{
"name": "weaviate",
"image": "cr.weaviate.io/semitechnologies/weaviate:1.24.14",
"cpu": 1024,
"memory": 3072,
"portMappings": [
{
"name": "8080",
"containerPort": 8080,
"hostPort": 8080,
"protocol": "tcp",
"appProtocol": "http"
},
{
"name": "50051",
"containerPort": 50051,
"hostPort": 50051,
"protocol": "tcp",
"appProtocol": "grpc"
}
],
"essential": true,
"environment": [
{
"name": "ENABLE_MODULES",
"value": "text2vec-aws,generative-aws"
}
],
"environmentFiles": [],
"mountPoints": [],
"volumesFrom": [],
"ulimits": [],
"systemControls": []
}
],
"family": "weaviate-task",
"networkMode": "awsvpc",
"placementConstraints": [],
"requiresCompatibilities": [
"FARGATE"
],
"cpu": "1024",
"memory": "3072",
"ephemeralStorage": {
"sizeInGiB": 21
},
"runtimePlatform": {
"cpuArchitecture": "X86_64",
"operatingSystemFamily": "LINUX"
}
}