forked from opendatahub-io/odh-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
83 changes: 83 additions & 0 deletions
83
manifests/overlays/odhdashboardconfig/odh-dashboard-config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
# ODHDashboardConfig to enable the notebook-controller feature and add notebook sizes | ||
apiVersion: opendatahub.io/v1alpha | ||
kind: OdhDashboardConfig | ||
metadata: | ||
creationTimestamp: null | ||
name: odh-dashboard-config | ||
spec: | ||
dashboardConfig: | ||
disableBYONImageStream: false | ||
disableClusterManager: false | ||
disableISVBadges: false | ||
disableInfo: false | ||
disableSupport: false | ||
disableTracking: true | ||
enablement: true | ||
disableProjects: true | ||
disablePipelines: true | ||
disableModelServing: true | ||
disableProjectSharing: true | ||
disableCustomServingRuntimes: true | ||
disableBiasMetrics: true | ||
disablePerformanceMetrics: true | ||
disableAcceleratorProfiles: true | ||
disableKServe: false | ||
disableModelMesh: false | ||
disableDistributedWorkloads: true | ||
notebookController: | ||
enabled: true | ||
notebookSizes: | ||
- name: Small | ||
resources: | ||
limits: | ||
cpu: '2' | ||
memory: 2Gi | ||
requests: | ||
cpu: '1' | ||
memory: 1Gi | ||
- name: Medium | ||
resources: | ||
limits: | ||
cpu: '4' | ||
memory: 4Gi | ||
requests: | ||
cpu: '2' | ||
memory: 2Gi | ||
- name: Large | ||
resources: | ||
limits: | ||
cpu: '8' | ||
memory: 8Gi | ||
requests: | ||
cpu: '4' | ||
memory: 4Gi | ||
modelServerSizes: | ||
- name: Small | ||
resources: | ||
limits: | ||
cpu: '2' | ||
memory: 8Gi | ||
requests: | ||
cpu: '1' | ||
memory: 4Gi | ||
- name: Medium | ||
resources: | ||
limits: | ||
cpu: '8' | ||
memory: 10Gi | ||
requests: | ||
cpu: '4' | ||
memory: 8Gi | ||
- name: Large | ||
resources: | ||
limits: | ||
cpu: '10' | ||
memory: 20Gi | ||
requests: | ||
cpu: '6' | ||
memory: 16Gi | ||
groupsConfig: | ||
adminGroups: 'odh-admins' | ||
allowedGroups: 'system:authenticated' | ||
templateOrder: [] | ||
templateDisablement: [] |
6 changes: 6 additions & 0 deletions
6
manifests/overlays/odhdashboardconfig/odh-enabled-applications-config.configmap.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
kind: ConfigMap | ||
apiVersion: v1 | ||
metadata: | ||
name: odh-enabled-applications-config | ||
data: | ||
jupyter: 'true' |