Skip to content

Commit e402bfd

Browse files
Merge pull request #866 from jpeeler/manifests-bump-0.10.0
update manifests to 0.10.0
2 parents 7b2b397 + 00574a3 commit e402bfd

File tree

62 files changed

+5094
-57
lines changed

Some content is hidden

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

62 files changed

+5094
-57
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
# Source: olm/templates/0000_50_olm_00-namespace.yaml
3+
apiVersion: v1
4+
kind: Namespace
5+
metadata:
6+
name: openshift-operator-lifecycle-manager
7+
8+
annotations:
9+
openshift.io/node-selector: ""
10+
labels:
11+
openshift.io/run-level: "1"
12+
openshift.io/cluster-monitoring: "true"
13+
14+
---
15+
apiVersion: v1
16+
kind: Namespace
17+
metadata:
18+
name: openshift-operators
19+
20+
annotations:
21+
openshift.io/node-selector: ""
22+
labels:
23+
openshift.io/run-level: "1"
24+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
# Source: olm/templates/0000_50_olm_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
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
# Source: olm/templates/0000_50_olm_02-services.yaml
3+
4+
apiVersion: v1
5+
kind: Service
6+
metadata:
7+
name: olm-operator-metrics
8+
namespace: openshift-operator-lifecycle-manager
9+
annotations:
10+
service.alpha.openshift.io/serving-cert-secret-name: olm-operator-serving-cert
11+
labels:
12+
app: olm-operator
13+
spec:
14+
type: ClusterIP
15+
ports:
16+
- name: https-metrics
17+
port: 8081
18+
protocol: TCP
19+
targetPort: metrics
20+
selector:
21+
app: olm-operator
22+
---
23+
apiVersion: v1
24+
kind: Service
25+
metadata:
26+
name: catalog-operator-metrics
27+
namespace: openshift-operator-lifecycle-manager
28+
annotations:
29+
service.alpha.openshift.io/serving-cert-secret-name: catalog-operator-serving-cert
30+
labels:
31+
app: catalog-operator
32+
spec:
33+
type: ClusterIP
34+
ports:
35+
- name: https-metrics
36+
port: 8081
37+
protocol: TCP
38+
targetPort: metrics
39+
selector:
40+
app: catalog-operator
41+

0 commit comments

Comments
 (0)