Skip to content

Commit

Permalink
Update bundle for ODH 1.5.0 release
Browse files Browse the repository at this point in the history
* Set default channel to Rolling
* Update odhdashboardconfig
* Update CSV for ODH 1.5.0 release
* Set rolling as the default channel
* Remove Kubeflow from CSV metadata
* Format config CSV file
* Update generated bundle

Signed-off-by: Landon LaSmith <[email protected]>
  • Loading branch information
LaVLaS committed Apr 6, 2023
1 parent b8027a2 commit e37b846
Show file tree
Hide file tree
Showing 7 changed files with 661 additions and 48 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ IMG ?= quay.io/opendatahub/opendatahub-operator:dev-$(VERSION)
IMAGE_BUILDER ?= podman
OPERATOR_NAMESPACE ?= opendatahub-operator-system
CHANNELS="stable,rolling"
DEFAULT_CHANNEL="stable"
DEFAULT_CHANNEL="rolling"
# CHANNELS define the bundle channels used in the bundle.
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
# To re-generate a bundle for other specific channels without changing the standard setup, you can:
Expand Down
2 changes: 1 addition & 1 deletion bundle.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ 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.channel.default.v1=stable
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
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3
Expand Down
306 changes: 282 additions & 24 deletions bundle/manifests/opendatahub-operator.clusterserviceversion.yaml

Large diffs are not rendered by default.

39 changes: 39 additions & 0 deletions bundle/manifests/opendatahub.io_odhdashboardconfigs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ spec:
type: boolean
disableInfo:
type: boolean
disableModelServing:
type: boolean
disableProjects:
type: boolean
disableSupport:
type: boolean
disableTracking:
Expand All @@ -35,6 +39,8 @@ spec:
type: boolean
enablement:
type: boolean
modelMetricsNamespace:
type: string
type: object
groupsConfig:
properties:
Expand All @@ -46,10 +52,43 @@ spec:
- adminGroups
- allowedGroups
type: object
modelServerSizes:
items:
properties:
name:
type: string
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:
- 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:
Expand Down
2 changes: 1 addition & 1 deletion bundle/metadata/annotations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ annotations:
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
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
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ spec:
type: boolean
disableModelServing:
type: boolean
modelMetricsNamespace:
type: string
groupsConfig:
type: object
required:
Expand Down
356 changes: 335 additions & 21 deletions config/manifests/bases/opendatahub-operator.clusterserviceversion.yaml

Large diffs are not rendered by default.

0 comments on commit e37b846

Please sign in to comment.