forked from localstack/localstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CODEOWNERS
Validating CODEOWNERS rules...
125 lines (101 loc) · 3.83 KB
/
CODEOWNERS
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
######################
### CODE OWNERS ###
######################
# CODEOWNERS
/CODEOWNERS @thrau @dominikschubert
# ASF
/localstack/aws/ @thrau
/tests/unit/aws/ @thrau
# ASF parsers and serializers
/localstack/aws/protocol @alexrashed
# left empty (without owner) because the generated APIs belong to the specific service owners
# you can overwrite this for single services afterwards
/localstack/aws/api/
# CLI/plugins
/localstack/cli/ @thrau
/localstack/plugins.py @thrau
/localstack/config.py @thrau
/tests/unit/cli/ @thrau
/tests/unit/services/test_internal.py @thrau
# Container utils
/localstack/utils/container_utils/ @dfangl @dominikschubert
/localstack/utils/docker_utils.py @dfangl @dominikschubert
/tests/integration/docker_utils/ @dfangl @dominikschubert
/tests/unit/test_dockerclient.py @dfangl @dominikschubert
# HTTP framework
/localstack/http/ @thrau
# Dockerfile
/Dockerfile @alexrashed
/Dockerfile.rh @alexrashed
# Circle CI pipeline
/.circleci/config.yml @thrau @alexrashed @dfangl
# Analytics client
/localstack/utils/analytics/ @thrau
######################
### SERVICE OWNERS ###
######################
# Cloudformation
/localstack/services/cloudformation/ @dominikschubert
/localstack/utils/cloudformation/ @dominikschubert
/tests/integration/cloudformation/ @dominikschubert
/tests/unit/test_cloudformation.py @dominikschubert
# left empty (without owner) because the models belong to the specific service owners
# you can overwrite this for single services afterwards
/localstack/services/cloudformation/models/
/localstack/services/cloudformation/models/cloudformation.py @dominikschubert
# Cloudwatch
/localstack/services/cloudwatch/ @silv-io
/tests/integration/test_cloudwatch.py @silv-io
# EC2
/localstack/services/ec2/ @viren-nadkarni
/tests/integration/test_ec2.py @viren-nadkarni
# ElasticSearch
/localstack/services/es/ @alexrashed
/localstack/services/cloudformation/models/elasticsearch.py @alexrashed
/tests/integration/test_es.py @alexrashed
# Events / EventBridge
/localstack/services/events/ @dominikschubert @dfangl
/localstack/services/cloudformation/models/events.py @dominikschubert @dfangl
/tests/integration/test_events.py @dominikschubert @dfangl
# OpenSearch
/localstack/services/opensearch/ @alexrashed
/tests/integration/test_opensearch.py @alexrashed
/tests/unit/services/opensearch/test_s3.py @alexrashed
# IAM
/localstack/services/iam/ @dominikschubert
/localstack/services/cloudformation/models/iam.py @dominikschubert
/tests/integration/test_iam.py @dominikschubert
# Lambda
/localstack/services/awslambda/ @dfangl @dominikschubert
/localstack/services/cloudformation/models/awslambda.py @dfangl @dominikschubert
/tests/integration/awslambda/ @dfangl @dominikschubert
# Secretsmanager
/localstack/services/secretsmanager/ @dominikschubert
/localstack/services/cloudformation/models/secretsmanager.py @dominikschubert
/tests/integration/test_secretsmanager.py @dominikschubert
# Stepfunctions
/localstack/services/stepfunctions/ @dominikschubert
/localstack/services/cloudformation/models/stepfunctions.py @dominikschubert
/tests/integration/test_stepfunctions.py @dominikschubert
# SES
/localstack/services/ses/ @viren-nadkarni
/tests/integration/test_ses.py @viren-nadkarni
# SSM
/localstack/services/ssm/ @dominikschubert
/localstack/services/cloudformation/models/ssm.py @dominikschubert
/tests/integration/test_ssm.py @dominikschubert
# SQS
/localstack/services/sqs/ @thrau
/localstack/services/cloudformation/models/sqs.py @thrau
/tests/integration/test_sqs.py @thrau
/tests/unit/test_sqs.py @thrau
# SNS
/localstack/services/sns/ @bentsku
/localstack/services/cloudformation/models/sns.py @bentsku
/tests/integration/test_sns.py @bentsku
/tests/unit/test_sns.py @bentsku
# S3
/localstack/services/s3/ @thrau
/localstack/services/cloudformation/models/s3.py @thrau
/tests/integration/test_s3.py @thrau
/tests/unit/test_s3.py @thrau