Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release] - making new release #1134

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions deploy/ocp/manifests/0.13.0/0000_50_olm_00-namespace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
# Source: olm/templates/0000_50_olm_00-namespace.yaml
apiVersion: v1
kind: Namespace
metadata:
name: openshift-operator-lifecycle-manager

annotations:
openshift.io/node-selector: ""
labels:
openshift.io/run-level: "1"
openshift.io/cluster-monitoring: "true"

---
apiVersion: v1
kind: Namespace
metadata:
name: openshift-operators

annotations:
openshift.io/node-selector: ""
labels:
openshift.io/run-level: "1"

Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
# Source: olm/templates/0000_50_olm_01-olm-operator.serviceaccount.yaml
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: system:controller:operator-lifecycle-manager
rules:
- apiGroups: ["*"]
resources: ["*"]
verbs: ["*"]
- nonResourceURLs: ["*"]
verbs: ["*"]
---
kind: ServiceAccount
apiVersion: v1
metadata:
name: olm-operator-serviceaccount
namespace: openshift-operator-lifecycle-manager
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: olm-operator-binding-openshift-operator-lifecycle-manager
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: system:controller:operator-lifecycle-manager
subjects:
- kind: ServiceAccount
name: olm-operator-serviceaccount
namespace: openshift-operator-lifecycle-manager
41 changes: 41 additions & 0 deletions deploy/ocp/manifests/0.13.0/0000_50_olm_02-services.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
# Source: olm/templates/0000_50_olm_02-services.yaml

apiVersion: v1
kind: Service
metadata:
name: olm-operator-metrics
namespace: openshift-operator-lifecycle-manager
annotations:
service.alpha.openshift.io/serving-cert-secret-name: olm-operator-serving-cert
labels:
app: olm-operator
spec:
type: ClusterIP
ports:
- name: https-metrics
port: 8081
protocol: TCP
targetPort: metrics
selector:
app: olm-operator
---
apiVersion: v1
kind: Service
metadata:
name: catalog-operator-metrics
namespace: openshift-operator-lifecycle-manager
annotations:
service.alpha.openshift.io/serving-cert-secret-name: catalog-operator-serving-cert
labels:
app: catalog-operator
spec:
type: ClusterIP
ports:
- name: https-metrics
port: 8081
protocol: TCP
targetPort: metrics
selector:
app: catalog-operator

Loading