Skip to content

Commit d597b66

Browse files
authored
Merge pull request #1265 from benluddy/manifests-for-0.14.1
Generate manifests for version 0.14.1.
2 parents b894125 + 713cac3 commit d597b66

File tree

40 files changed

+32345
-1341
lines changed

40 files changed

+32345
-1341
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
# Source: olm/templates/0000_50_olm_00-namespace.yaml
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"
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
# Source: olm/templates/0000_50_olm_01-olm-operator.serviceaccount.yaml
3+
kind: ServiceAccount
4+
apiVersion: v1
5+
metadata:
6+
name: olm-operator-serviceaccount
7+
namespace: openshift-operator-lifecycle-manager
8+
---
9+
# Source: olm/templates/0000_50_olm_01-olm-operator.serviceaccount.yaml
10+
apiVersion: rbac.authorization.k8s.io/v1
11+
kind: ClusterRole
12+
metadata:
13+
name: system:controller:operator-lifecycle-manager
14+
rules:
15+
- apiGroups: ["*"]
16+
resources: ["*"]
17+
verbs: ["*"]
18+
- nonResourceURLs: ["*"]
19+
verbs: ["*"]
20+
---
21+
# Source: olm/templates/0000_50_olm_01-olm-operator.serviceaccount.yaml
22+
apiVersion: rbac.authorization.k8s.io/v1
23+
kind: ClusterRoleBinding
24+
metadata:
25+
name: olm-operator-binding-openshift-operator-lifecycle-manager
26+
roleRef:
27+
apiGroup: rbac.authorization.k8s.io
28+
kind: ClusterRole
29+
name: system:controller:operator-lifecycle-manager
30+
subjects:
31+
- kind: ServiceAccount
32+
name: olm-operator-serviceaccount
33+
namespace: openshift-operator-lifecycle-manager
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
# Source: olm/templates/0000_50_olm_02-services.yaml
3+
apiVersion: v1
4+
kind: Service
5+
metadata:
6+
name: olm-operator-metrics
7+
namespace: openshift-operator-lifecycle-manager
8+
annotations:
9+
service.alpha.openshift.io/serving-cert-secret-name: olm-operator-serving-cert
10+
labels:
11+
app: olm-operator
12+
spec:
13+
type: ClusterIP
14+
ports:
15+
- name: https-metrics
16+
port: 8081
17+
protocol: TCP
18+
targetPort: metrics
19+
selector:
20+
app: olm-operator
21+
---
22+
# Source: olm/templates/0000_50_olm_02-services.yaml
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

0 commit comments

Comments
 (0)