Skip to content

Commit 1263c58

Browse files
authored
operator ack-elasticache-controller (1.2.2)
1 parent 6d158e3 commit 1263c58

16 files changed

+4218
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
FROM scratch
2+
3+
# Core bundle labels.
4+
LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1
5+
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
6+
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
7+
LABEL operators.operatorframework.io.bundle.package.v1=ack-elasticache-controller
8+
LABEL operators.operatorframework.io.bundle.channels.v1=alpha
9+
LABEL operators.operatorframework.io.bundle.channel.default.v1=alpha
10+
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.28.0
11+
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
12+
LABEL operators.operatorframework.io.metrics.project_layout=unknown
13+
14+
# Labels for testing.
15+
LABEL operators.operatorframework.io.test.mediatype.v1=scorecard+v1
16+
LABEL operators.operatorframework.io.test.config.v1=tests/scorecard/
17+
18+
# Copy files to locations specified by labels.
19+
COPY bundle/manifests /manifests/
20+
COPY bundle/metadata /metadata/
21+
COPY bundle/tests/scorecard /tests/scorecard/

operators/ack-elasticache-controller/1.2.2/manifests/ack-elasticache-controller.clusterserviceversion.yaml

Lines changed: 395 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
apiVersion: v1
2+
kind: Service
3+
metadata:
4+
creationTimestamp: null
5+
name: ack-elasticache-metrics-service
6+
spec:
7+
ports:
8+
- name: metricsport
9+
port: 8080
10+
protocol: TCP
11+
targetPort: http
12+
selector:
13+
app.kubernetes.io/name: ack-elasticache-controller
14+
type: ClusterIP
15+
status:
16+
loadBalancer: {}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: Role
3+
metadata:
4+
creationTimestamp: null
5+
name: ack-elasticache-reader
6+
rules:
7+
- apiGroups:
8+
- elasticache.services.k8s.aws
9+
resources:
10+
- cacheclusters
11+
- cacheparametergroups
12+
- cachesubnetgroups
13+
- replicationgroups
14+
- serverlesscaches
15+
- serverlesscachesnapshots
16+
- snapshots
17+
- users
18+
- usergroups
19+
verbs:
20+
- get
21+
- list
22+
- watch
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: Role
3+
metadata:
4+
creationTimestamp: null
5+
name: ack-elasticache-writer
6+
rules:
7+
- apiGroups:
8+
- elasticache.services.k8s.aws
9+
resources:
10+
- cacheclusters
11+
- cacheparametergroups
12+
- cachesubnetgroups
13+
- replicationgroups
14+
- serverlesscaches
15+
- serverlesscachesnapshots
16+
- snapshots
17+
- users
18+
- usergroups
19+
verbs:
20+
- create
21+
- delete
22+
- get
23+
- list
24+
- patch
25+
- update
26+
- watch
27+
- apiGroups:
28+
- elasticache.services.k8s.aws
29+
resources:
30+
- cacheclusters
31+
- cacheparametergroups
32+
- cachesubnetgroups
33+
- replicationgroups
34+
- serverlesscaches
35+
- serverlesscachesnapshots
36+
- snapshots
37+
- users
38+
- usergroups
39+
verbs:
40+
- get
41+
- patch
42+
- update

0 commit comments

Comments
 (0)