Skip to content

Commit

Permalink
Merge branch 'opendatahub-io:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
yzhao583 authored Jul 31, 2024
2 parents 0660dde + 8e59efb commit 0a97a7e
Show file tree
Hide file tree
Showing 45 changed files with 1,513 additions and 302 deletions.
1 change: 1 addition & 0 deletions backend/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export type DashboardConfig = K8sResourceCommon & {
disableArtifactsAPI: boolean;
disableDistributedWorkloads: boolean;
disableModelRegistry: boolean;
disableConnectionTypes: boolean;
};
groupsConfig?: {
adminGroups: string;
Expand Down
1 change: 1 addition & 0 deletions backend/src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ export const blankDashboardCR: DashboardConfig = {
disableArtifactsAPI: true,
disableDistributedWorkloads: false,
disableModelRegistry: true,
disableConnectionTypes: true,
},
notebookController: {
enabled: true,
Expand Down
2 changes: 2 additions & 0 deletions docs/dashboard-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ The following are a list of features that are supported, along with there defaul
| 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. |
| disableConnectionTypes | true | Disables creating custom data connection types from the dashboard. |

## Defaults

Expand Down Expand Up @@ -65,6 +66,7 @@ spec:
disableS3Endpoint: true
disableArtifactsAPI: true
disableDistributedWorkloads: false
disableConnectionTypes: false
```
## Additional fields
Expand Down
Loading

0 comments on commit 0a97a7e

Please sign in to comment.