Skip to content
This repository was archived by the owner on Nov 7, 2019. It is now read-only.

Commit 4678e80

Browse files
Adding vendored code for removing opkit managing crds
Signed-off-by: Christopher Hein <[email protected]>
1 parent d504206 commit 4678e80

File tree

8 files changed

+128
-12
lines changed

8 files changed

+128
-12
lines changed

configs/aws-service-operator.yaml

Lines changed: 128 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,133 @@ items:
66
metadata:
77
name: aws-service-operator
88

9+
- apiVersion: apiextensions.k8s.io/v1beta1
10+
kind: CustomResourceDefinition
11+
metadata:
12+
name: cloudformationtemplates.service-operator.aws
13+
spec:
14+
group: service-operator.aws
15+
names:
16+
kind: CloudFormationTemplate
17+
listKind: CloudFormationTemplateList
18+
plural: cloudformationtemplates
19+
shortNames:
20+
- cft
21+
- cfts
22+
- cfn
23+
- cfns
24+
- cloudformation
25+
singular: cloudformationtemplates
26+
scope: Namespaced
27+
version: v1alpha1
28+
29+
- apiVersion: apiextensions.k8s.io/v1beta1
30+
kind: CustomResourceDefinition
31+
metadata:
32+
name: dynamodbs.service-operator.aws
33+
spec:
34+
group: service-operator.aws
35+
names:
36+
kind: DynamoDB
37+
listKind: DynamoDBList
38+
plural: dynamodbs
39+
shortNames:
40+
- ddb
41+
- ddbs
42+
- dynamo
43+
- dynamotable
44+
- dynamotables
45+
singular: dynamodbs
46+
scope: Namespaced
47+
version: v1alpha1
48+
49+
- apiVersion: apiextensions.k8s.io/v1beta1
50+
kind: CustomResourceDefinition
51+
metadata:
52+
name: ecrrepositories.service-operator.aws
53+
spec:
54+
group: service-operator.aws
55+
names:
56+
kind: ECRRepository
57+
listKind: ECRRepositoryList
58+
plural: ecrrepositories
59+
shortNames:
60+
- ecr
61+
- repository
62+
singular: ecrrepositories
63+
scope: Namespaced
64+
version: v1alpha1
65+
66+
- apiVersion: apiextensions.k8s.io/v1beta1
67+
kind: CustomResourceDefinition
68+
metadata:
69+
name: s3buckets.service-operator.aws
70+
spec:
71+
group: service-operator.aws
72+
names:
73+
kind: S3Bucket
74+
listKind: S3BucketList
75+
plural: s3buckets
76+
shortNames:
77+
- s3
78+
- bucket
79+
- buckets
80+
singular: s3buckets
81+
scope: Namespaced
82+
version: v1alpha1
83+
84+
- apiVersion: apiextensions.k8s.io/v1beta1
85+
kind: CustomResourceDefinition
86+
metadata:
87+
name: snssubscriptions.service-operator.aws
88+
spec:
89+
group: service-operator.aws
90+
names:
91+
kind: SNSSubscription
92+
listKind: SNSSubscriptionList
93+
plural: snssubscriptions
94+
shortNames:
95+
- subscription
96+
singular: snssubscriptions
97+
scope: Namespaced
98+
version: v1alpha1
99+
100+
- apiVersion: apiextensions.k8s.io/v1beta1
101+
kind: CustomResourceDefinition
102+
metadata:
103+
name: snstopics.service-operator.aws
104+
spec:
105+
group: service-operator.aws
106+
names:
107+
kind: SNSTopic
108+
listKind: SNSTopicList
109+
plural: snstopics
110+
shortNames:
111+
- sns
112+
- topic
113+
- topics
114+
singular: snstopics
115+
scope: Namespaced
116+
version: v1alpha1
117+
118+
- apiVersion: apiextensions.k8s.io/v1beta1
119+
kind: CustomResourceDefinition
120+
metadata:
121+
name: sqsqueues.service-operator.aws
122+
spec:
123+
group: service-operator.aws
124+
names:
125+
kind: SQSQueue
126+
listKind: SQSQueueList
127+
plural: sqsqueues
128+
shortNames:
129+
- sqs
130+
- queue
131+
- queues
132+
singular: sqsqueues
133+
scope: Namespaced
134+
version: v1alpha1
135+
9136
- kind: ClusterRole
10137
apiVersion: rbac.authorization.k8s.io/v1beta1
11138
metadata:
@@ -25,17 +152,6 @@ items:
25152
- create
26153
- delete
27154
- update
28-
- apiGroups:
29-
- extensions
30-
resources:
31-
- thirdpartyresources
32-
verbs:
33-
- get
34-
- list
35-
- watch
36-
- create
37-
- delete
38-
- update
39155
- apiGroups:
40156
- apiextensions.k8s.io
41157
resources:
@@ -95,4 +211,4 @@ items:
95211
- server
96212
- --cluster-name=<CLUSTER_NAME>
97213
- --region=<REGION>
98-
- --account-id=<ACCOUNT_ID>
214+
- --account-id=<ACCOUNT_ID>

0 commit comments

Comments
 (0)