From ec2622a34eb9cf764ce370736909026ea955cc00 Mon Sep 17 00:00:00 2001 From: Lucas Fernandez Date: Thu, 7 Mar 2024 14:53:42 +0100 Subject: [PATCH] Re-enable unused config files --- .../odh-dashboard-config.yaml | 83 +++++++++++++++++++ ...enabled-applications-config.configmap.yaml | 6 ++ 2 files changed, 89 insertions(+) create mode 100644 manifests/overlays/odhdashboardconfig/odh-dashboard-config.yaml create mode 100644 manifests/overlays/odhdashboardconfig/odh-enabled-applications-config.configmap.yaml diff --git a/manifests/overlays/odhdashboardconfig/odh-dashboard-config.yaml b/manifests/overlays/odhdashboardconfig/odh-dashboard-config.yaml new file mode 100644 index 0000000000..ad8a0d8b89 --- /dev/null +++ b/manifests/overlays/odhdashboardconfig/odh-dashboard-config.yaml @@ -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: [] diff --git a/manifests/overlays/odhdashboardconfig/odh-enabled-applications-config.configmap.yaml b/manifests/overlays/odhdashboardconfig/odh-enabled-applications-config.configmap.yaml new file mode 100644 index 0000000000..e772080481 --- /dev/null +++ b/manifests/overlays/odhdashboardconfig/odh-enabled-applications-config.configmap.yaml @@ -0,0 +1,6 @@ +kind: ConfigMap +apiVersion: v1 +metadata: + name: odh-enabled-applications-config +data: + jupyter: 'true'