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 KServeMetrics by default (RHOAIENG-8575) #3032

Merged
merged 1 commit into from
Jul 25, 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 @@ -58,7 +58,7 @@ export const blankDashboardCR: DashboardConfig = {
disablePipelines: false,
disableKServe: false,
disableKServeAuth: false,
disableKServeMetrics: true,
disableKServeMetrics: false,
disableModelMesh: false,
disableAcceleratorProfiles: false,
disablePipelineExperiments: false,
Expand Down
4 changes: 2 additions & 2 deletions docs/dashboard-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The following are a list of features that are supported, along with there defaul
| disableCustomServingRuntimes | false | Disables Custom Serving Runtimes from the Admin Panel. |
| disableKServe | false | Disables the ability to select KServe as a Serving Platform. |
| disableKServeAuth | false | Disables the ability to use auth in KServe. |
| disableKServeMetrics | true | Disables the ability to see KServe Metrics. |
| disableKServeMetrics | false | Disables the ability to see KServe Metrics. |
| disableModelMesh | false | Disables the ability to select ModelMesh as a Serving Platform. |
| disableAcceleratorProfiles | false | Disables Accelerator profiles from the Admin Panel. |
| disableBiasMetrics | false | Disables Model Bias tab from Model Serving metrics. |
Expand Down Expand Up @@ -58,7 +58,7 @@ spec:
disableProjectSharing: false
disableCustomServingRuntimes: false
disableAcceleratorProfiles: false
disableKServeMetrics: true
disableKServeMetrics: false
disableBiasMetrics: false
disablePerformanceMetrics: false
disablePipelineExperiments: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
disableAcceleratorProfiles: false
disableKServe: false
disableKServeAuth: false
disableKServeMetrics: true
disableKServeMetrics: false
disableModelMesh: false
disableDistributedWorkloads: false
disableModelRegistry: true
Expand Down
Loading