Skip to content

Commit 9b2e775

Browse files
authored
Merge pull request #567 from ecordell/cut-0.8.0
Cut 0.8.0
2 parents b2dae3e + d7a0a31 commit 9b2e775

File tree

56 files changed

+40810
-150
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+40810
-150
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
##---
2+
# Source: olm/templates/0000_30_00-namespace.yaml
3+
apiVersion: v1
4+
kind: Namespace
5+
metadata:
6+
name: openshift-operator-lifecycle-manager
7+
labels:
8+
openshift.io/run-level: "1"
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
##---
2+
# Source: olm/templates/0000_30_01-olm-operator.serviceaccount.yaml
3+
apiVersion: rbac.authorization.k8s.io/v1
4+
kind: ClusterRole
5+
metadata:
6+
name: system:controller:operator-lifecycle-manager
7+
rules:
8+
- apiGroups: ["*"]
9+
resources: ["*"]
10+
verbs: ["*"]
11+
- nonResourceURLs: ["*"]
12+
verbs: ["*"]
13+
---
14+
kind: ServiceAccount
15+
apiVersion: v1
16+
metadata:
17+
name: olm-operator-serviceaccount
18+
namespace: openshift-operator-lifecycle-manager
19+
---
20+
apiVersion: rbac.authorization.k8s.io/v1
21+
kind: ClusterRoleBinding
22+
metadata:
23+
name: olm-operator-binding-openshift-operator-lifecycle-manager
24+
roleRef:
25+
apiGroup: rbac.authorization.k8s.io
26+
kind: ClusterRole
27+
name: system:controller:operator-lifecycle-manager
28+
subjects:
29+
- kind: ServiceAccount
30+
name: olm-operator-serviceaccount
31+
namespace: openshift-operator-lifecycle-manager

0 commit comments

Comments
 (0)