Skip to content

Commit

Permalink
ODH Operator release v1.2.0 (#154)
Browse files Browse the repository at this point in the history
* Add OLM bundle for ODH 1.2.0

Signed-off-by: Landon LaSmith <[email protected]>

* Update ODH for v1.2.0 release

Signed-off-by: Landon LaSmith <[email protected]>
  • Loading branch information
LaVLaS authored May 2, 2022
1 parent 16eba4a commit 1e384be
Show file tree
Hide file tree
Showing 6 changed files with 452 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,8 @@
## Release 1.1.0 (2021-06-21T01:41:47)
### Improvements
* Add OLM files for v1.1.0 release

## Release 1.2.0 (2022-04-21T01:46:27)
### Improvements
* Fix syncing cache behind HTTP proxy (#148)
* Add OLM files for v1.2.0 release
2 changes: 1 addition & 1 deletion Dockerfile.bundle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM scratch

# This arg should be updated to use the most recent release in deploy/olm-catalog/opendatahub
ARG OPERATOR_RELEASE=1.1.2
ARG OPERATOR_RELEASE=1.2.0

# Operator bundle Dockerfile
# See - https://github.com/operator-framework/operator-registry/blob/master/docs/design/operator-bundle.md
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: kfdefs.kfdef.apps.kubeflow.org
labels:
component: opendatahub-operator
spec:
group: kfdef.apps.kubeflow.org
names:
kind: KfDef
listKind: KfDefList
plural: kfdefs
singular: kfdef
scope: Namespaced
subresources:
status: {}
validation:
openAPIV3Schema:
description: KfDef is the Schema for the kfdefs API
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources'
type: string
kind:
description: 'Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds'
type: string
metadata:
type: object
spec:
description: KfDefSpec defines the desired state of KfDef
type: object
status:
description: KfDefStatus defines the observed state of KfDef
type: object
type: object
version: v1
versions:
- name: v1
served: true
storage: true
schema:
openAPIV3Schema:
description: KfDef is the Schema for the kfdefs API
type: object
properties:
apiVersion:
description: >-
APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the
latest internal value, and may reject unrecognized values. More
info:
https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
type: string
kind:
description: >-
Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the
client submits requests to. Cannot be updated. In CamelCase.
More info:
https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: KfDefSpec defines the desired state of KfDef
type: object
properties:
applications:
type: array
items:
type: object
x-kubernetes-preserve-unknown-fields: true
repos:
type: array
items:
type: object
x-kubernetes-preserve-unknown-fields: true
version:
type: string
status:
description: KfDefStatus defines the observed state of KfDef
type: object
x-kubernetes-preserve-unknown-fields: true

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
annotations:
operators.operatorframework.io.bundle.mediatype.v1: "registry+v1"
operators.operatorframework.io.bundle.manifests.v1: "manifests/"
operators.operatorframework.io.bundle.metadata.v1: "metadata/"
operators.operatorframework.io.bundle.package.v1: "opendatahub-operator"
operators.operatorframework.io.bundle.channels.v1: "stable,rolling"
operators.operatorframework.io.bundle.channel.default.v1: "stable"
2 changes: 1 addition & 1 deletion deploy/olm-catalog/opendatahub/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
updateGraph: replaces-mode
reviewers:
- lavlas
- nakfour
- VaishnaviHire
- crobby

0 comments on commit 1e384be

Please sign in to comment.