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

Fix 1.4.1 CSV CRD displayname #193

Merged
merged 2 commits into from
Jan 30, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ spec:
type: boolean
disableUserManagement:
type: boolean
disableProjects:
type: boolean
disableModelServing:
type: boolean
groupsConfig:
type: object
required:
Expand Down Expand Up @@ -78,6 +82,33 @@ spec:
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:
Expand All @@ -89,6 +120,9 @@ spec:
type: string
pvcSize:
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
properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,13 +158,13 @@ spec:
kind: OdhDocument
name: odhdocuments.dashboard.opendatahub.io
version: v1
displayName: Open Data Hub Dashboard Configuration
displayName: Open Data Hub Dashboard Documentation
group: dashboard.opendatahub.io
- description: Extension for guiding user through various workflows in the Open Data Hub dashboard.
kind: OdhQuickStart
name: odhquickstarts.console.openshift.io
version: v1
displayName: OdhQuickStart
displayName: Open Data Hub Dashboard QuickStart
group: console.openshift.io
description: |
The Open Data Hub is a machine-learning-as-a-service platform built on Red Hat's Kubernetes-based OpenShift® Container Platform. Open Data Hub integrates multiple AI/ML open source components into one operator that can easily be downloaded and installed by OpenShift users.
Expand Down