Skip to content

Commit 85eca79

Browse files
authored
operator authorino-operator (0.14.0)
1 parent 63f7b60 commit 85eca79

13 files changed

+6190
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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=authorino-operator
8+
LABEL operators.operatorframework.io.bundle.channels.v1=stable
9+
LABEL operators.operatorframework.io.bundle.channel.default.v1=stable
10+
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.32.0
11+
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
12+
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3
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 manifests /manifests/
20+
COPY metadata /metadata/
21+
COPY tests/scorecard /tests/scorecard/
22+
23+
# Custom labels
24+
LABEL com.redhat.openshift.versions=v4.12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: ClusterRole
3+
metadata:
4+
creationTimestamp: null
5+
name: authorino-authconfig-editor-role
6+
rules:
7+
- apiGroups:
8+
- authorino.kuadrant.io
9+
resources:
10+
- authconfigs
11+
verbs:
12+
- create
13+
- delete
14+
- get
15+
- list
16+
- patch
17+
- update
18+
- apiGroups:
19+
- authorino.kuadrant.io
20+
resources:
21+
- authconfigs/status
22+
verbs:
23+
- get
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: ClusterRole
3+
metadata:
4+
creationTimestamp: null
5+
name: authorino-authconfig-viewer-role
6+
rules:
7+
- apiGroups:
8+
- authorino.kuadrant.io
9+
resources:
10+
- authconfigs
11+
verbs:
12+
- get
13+
- list
14+
- watch
15+
- apiGroups:
16+
- authorino.kuadrant.io
17+
resources:
18+
- authconfigs/status
19+
verbs:
20+
- get
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: ClusterRole
3+
metadata:
4+
creationTimestamp: null
5+
name: authorino-manager-k8s-auth-role
6+
rules:
7+
- apiGroups:
8+
- authentication.k8s.io
9+
resources:
10+
- tokenreviews
11+
verbs:
12+
- create
13+
- apiGroups:
14+
- authorization.k8s.io
15+
resources:
16+
- subjectaccessreviews
17+
verbs:
18+
- create
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: ClusterRole
3+
metadata:
4+
creationTimestamp: null
5+
name: authorino-manager-role
6+
rules:
7+
- apiGroups:
8+
- authorino.kuadrant.io
9+
resources:
10+
- authconfigs
11+
verbs:
12+
- create
13+
- delete
14+
- get
15+
- list
16+
- patch
17+
- update
18+
- watch
19+
- apiGroups:
20+
- authorino.kuadrant.io
21+
resources:
22+
- authconfigs/status
23+
verbs:
24+
- get
25+
- patch
26+
- update
27+
- apiGroups:
28+
- coordination.k8s.io
29+
resources:
30+
- leases
31+
verbs:
32+
- create
33+
- get
34+
- list
35+
- update
36+
- apiGroups:
37+
- ""
38+
resources:
39+
- secrets
40+
verbs:
41+
- get
42+
- list
43+
- watch
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+
labels:
6+
control-plane: authorino-operator
7+
name: authorino-operator-metrics
8+
spec:
9+
ports:
10+
- name: metrics
11+
port: 8080
12+
targetPort: metrics
13+
selector:
14+
control-plane: authorino-operator
15+
status:
16+
loadBalancer: {}

0 commit comments

Comments
 (0)