Skip to content

Commit

Permalink
Merge pull request operator-framework#802 from alecmerdler/OLM-1017
Browse files Browse the repository at this point in the history
Cut Release 0.9.0
  • Loading branch information
openshift-merge-robot authored Apr 10, 2019
2 parents b853cc5 + 81e0402 commit eef76a2
Show file tree
Hide file tree
Showing 62 changed files with 5,001 additions and 60 deletions.
20 changes: 20 additions & 0 deletions deploy/ocp/manifests/0.9.0/0000_50_olm_00-namespace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
# Source: olm/templates/0000_50_olm_00-namespace.yaml
apiVersion: v1
kind: Namespace
metadata:
name: openshift-operator-lifecycle-manager

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

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

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.9.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

0 comments on commit eef76a2

Please sign in to comment.