Skip to content

Commit

Permalink
Update OLM bundle for ODH 1.7 Release (#271)
Browse files Browse the repository at this point in the history
* Update OLM bundle for ODH 1.7 Release

Signed-off-by: Landon LaSmith <LLaSmith@redhat.com>

* Run make bundle

Signed-off-by: Landon LaSmith <LLaSmith@redhat.com>

---------

Signed-off-by: Landon LaSmith <LLaSmith@redhat.com>
  • Loading branch information
LaVLaS authored Jul 3, 2023
1 parent 256a2c0 commit f0e987b
Show file tree
Hide file tree
Showing 5 changed files with 157 additions and 194 deletions.
2 changes: 1 addition & 1 deletion bundle.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
LABEL operators.operatorframework.io.bundle.package.v1=opendatahub-operator
LABEL operators.operatorframework.io.bundle.channels.v1=stable,rolling
LABEL operators.operatorframework.io.bundle.channels.v1=rolling
LABEL operators.operatorframework.io.bundle.channel.default.v1=rolling
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.24.1
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
Expand Down
43 changes: 9 additions & 34 deletions bundle/manifests/opendatahub-operator.clusterserviceversion.yaml

Large diffs are not rendered by default.

254 changes: 137 additions & 117 deletions bundle/manifests/opendatahub.io_odhdashboardconfigs.yaml
Original file line number Diff line number Diff line change
@@ -1,136 +1,156 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
creationTimestamp: null
name: odhdashboardconfigs.opendatahub.io
spec:
group: opendatahub.io
scope: Namespaced
names:
kind: OdhDashboardConfig
plural: odhdashboardconfigs
singular: odhdashboardconfig
kind: OdhDashboardConfig
scope: Namespaced
versions:
- name: v1alpha
served: true
storage: true
schema:
openAPIV3Schema:
type: object
required:
- spec
properties:
spec:
type: object
properties:
dashboardConfig:
type: object
- name: v1alpha
schema:
openAPIV3Schema:
properties:
spec:
properties:
dashboardConfig:
properties:
disableBYONImageStream:
type: boolean
disableClusterManager:
type: boolean
disableCustomServingRuntimes:
type: boolean
disableISVBadges:
type: boolean
disableInfo:
type: boolean
disableModelServing:
type: boolean
disablePipelines:
type: boolean
disableProjectSharing:
type: boolean
disableProjects:
type: boolean
disableSupport:
type: boolean
disableTracking:
type: boolean
disableUserManagement:
type: boolean
enablement:
type: boolean
modelMetricsNamespace:
type: string
type: object
groupsConfig:
properties:
adminGroups:
type: string
allowedGroups:
type: string
required:
- adminGroups
- allowedGroups
type: object
modelServerSizes:
items:
properties:
enablement:
type: boolean
disableInfo:
type: boolean
disableSupport:
type: boolean
disableClusterManager:
type: boolean
disableTracking:
type: boolean
disableBYONImageStream:
type: boolean
disableISVBadges:
type: boolean
disableUserManagement:
type: boolean
disableProjects:
type: boolean
disableModelServing:
type: boolean
modelMetricsNamespace:
name:
type: string
groupsConfig:
type: object
resources:
properties:
limits:
properties:
cpu:
type: string
memory:
type: string
type: object
requests:
properties:
cpu:
type: string
memory:
type: string
type: object
type: object
required:
- adminGroups
- allowedGroups
properties:
adminGroups:
type: string
allowedGroups:
type: string
notebookSizes:
type: array
items:
type: object
required:
- name
- resources
- name
- resources
type: object
type: array
notebookController:
properties:
enabled:
type: boolean
gpuSetting:
description: Configure how the GPU field works on the Jupyter
tile. One of 'autodetect' (default, fetches for information),
'hidden' (remove the field) or a number-string (eg '5') to specify
a hardcoded 0 to that number options
type: string
notebookNamespace:
type: string
notebookTolerationSettings:
properties:
name:
enabled:
type: boolean
key:
type: string
resources:
type: object
properties:
requests:
type: object
properties:
cpu:
type: string
memory:
type: string
limits:
type: object
properties:
cpu:
type: string
memory:
type: string
modelServerSizes:
type: array
items:
type: object
required:
- name
- resources
properties:
name:
type: string
resources:
type: object
properties:
requests:
type: object
properties:
cpu:
type: string
memory:
type: string
limits:
type: object
properties:
cpu:
type: string
memory:
type: string
notebookController:
type: object
required:
- enabled
pvcSize:
type: string
storageClassName:
type: string
required:
- enabled
type: object
notebookSizes:
items:
properties:
enabled:
type: boolean
notebookNamespace:
type: string
pvcSize:
name:
type: string
gpuSetting:
description: Configure how the GPU field works on the Jupyter tile. One of 'autodetect' (default, fetches for information), 'hidden' (remove the field) or a number-string (eg '5') to specify a hardcoded 0 to that number options
type: string
notebookTolerationSettings:
type: object
resources:
properties:
enabled:
type: boolean
key:
type: string
storageClassName:
type: string
limits:
properties:
cpu:
type: string
memory:
type: string
type: object
requests:
properties:
cpu:
type: string
memory:
type: string
type: object
type: object
required:
- name
- resources
type: object
type: array
templateOrder:
items:
type: string
type: array
type: object
required:
- spec
type: object
served: true
storage: true
status:
acceptedNames:
kind: ""
plural: ""
conditions: null
storedVersions: null
2 changes: 1 addition & 1 deletion bundle/metadata/annotations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ annotations:
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.channels.v1: rolling
operators.operatorframework.io.bundle.channel.default.v1: rolling
operators.operatorframework.io.metrics.builder: operator-sdk-v1.24.1
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
Expand Down

Large diffs are not rendered by default.

0 comments on commit f0e987b

Please sign in to comment.