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

Enable model registry feature by default #3259

Merged
merged 1 commit into from
Sep 26, 2024
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
2 changes: 1 addition & 1 deletion backend/src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const blankDashboardCR: DashboardConfig = {
disableAcceleratorProfiles: false,
disablePipelineExperiments: false,
disableDistributedWorkloads: false,
disableModelRegistry: true,
disableModelRegistry: false,
disableConnectionTypes: true,
disableStorageClasses: true,
disableNIMModelServing: true,
Expand Down
2 changes: 1 addition & 1 deletion docs/dashboard-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The following are a list of features that are supported, along with there defaul
| disableBiasMetrics | false | Disables Model Bias tab from Model Serving metrics. |
| disablePerformanceMetrics | false | Disables Endpoint Performance tab from Model Serving metrics. |
| disableDistributedWorkloads | false | Disables Distributed Workload Metrics from the dashboard. |
| disableModelRegistry | true | Disables Model Registry from the dashboard. |
| disableModelRegistry | false | Disables Model Registry from the dashboard. |
| disableConnectionTypes | true | Disables creating custom data connection types from the dashboard. |
| disableStorageClasses | true | Disables storage classes settings nav item from the dashboard. |
| disableNIMModelServing | true | Disables components of NIM Model UI from the dashboard.
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/__mocks__/mockDashboardConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const mockDashboardConfig = ({
disableBiasMetrics = false,
disablePipelineExperiments = false,
disableDistributedWorkloads = false,
disableModelRegistry = true,
disableModelRegistry = false,
disableConnectionTypes = true,
disableStorageClasses = false,
disableNotebookController = false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
disableKServeMetrics: false
disableModelMesh: false
disableDistributedWorkloads: false
disableModelRegistry: true
disableModelRegistry: false
disableConnectionTypes: true
disableStorageClasses: true
disableNIMModelServing: true
Expand Down
Loading