This repository was archived by the owner on Feb 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathoperator_config.py
56 lines (51 loc) · 1.57 KB
/
operator_config.py
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
operator_schema = {
"region": {"required": True, "type": "string", "help_message": "AWS region"},
"instance_type": {
"required": True,
"default": "ml.t2.medium",
"type": "string",
"help_message": "Instance type for the sagemaker deployment",
},
"initial_instance_count": {
"default": 1,
"type": "integer",
"coerce": int,
"required": True,
"help_message": "Initial instance count for the sagemaker deployment",
},
"timeout": {
"required": False,
"default": 60,
"coerce": int,
"type": "integer",
"help_message": "Timeout for the sagemaker deployment",
},
}
data_capture_schema = {
"enable_data_capture": {
"required": False,
"default": False,
"type": "boolean",
"coerce": bool,
"help_message": "Enable data capture for the sagemaker deployment",
},
"destination_s3_uri": {
"required": False,
"default": "",
"type": "string",
"help_message": "S3 URI for the data capture for the sagemaker deployment",
},
"initial_sampling_percentage": {
"required": False,
"type": "integer",
"default": "1",
"coerce": int,
"help_message": "Percentage of the data capture for the sagemaker deployment. Value between 0 and 100",
"max": 100,
"min": 1,
},
}
OPERATOR_SCHEMA = {**operator_schema, **data_capture_schema}
OPERATOR_NAME = "aws-sagemaker"
OPERATOR_MODULE = "bentoctl_sagemaker"
OPERATOR_DEFAULT_TEMPLATE = "terraform"