diff --git a/components/operators/openshift-ai/instance/components/dashboard-feature-hardware-profiles/patch-rhoai-dashboard.yaml b/components/operators/openshift-ai/instance/components/dashboard-feature-hardware-profiles/patch-rhoai-dashboard.yaml index 1700bc18a..6c36ed7fd 100644 --- a/components/operators/openshift-ai/instance/components/dashboard-feature-hardware-profiles/patch-rhoai-dashboard.yaml +++ b/components/operators/openshift-ai/instance/components/dashboard-feature-hardware-profiles/patch-rhoai-dashboard.yaml @@ -5,3 +5,6 @@ metadata: spec: dashboardConfig: disableHardwareProfiles: false + disableAcceleratorProfiles: true + notebookSizes: [] + modelServerSizes: [] diff --git a/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-cpu/README.md b/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-cpu/README.md new file mode 100644 index 000000000..baa481701 --- /dev/null +++ b/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-cpu/README.md @@ -0,0 +1,24 @@ +# hardware-profiles-2.22-cpu + +> [!WARNING] +> Hardware profiles in 2.22 utilize the `dashboard.opendatahub.io/v1alpha1` API version and 2.23+ migrated to `infrastructure.opendatahub.io/v1alpha1`. + +## Purpose +This component is designed help admins configure a hardware profile with cpu. + +For more information on accelerators, please see the [Working with hardware profiles](https://docs.redhat.com/en/documentation/red_hat_openshift_ai_self-managed/2-latest/html/working_with_accelerators/working-with-hardware-profiles_accelerators#working-with-hardware-profiles_accelerators) documentation. + +## Usage + +This component can be added to a base by adding the `components` section to your overlay `kustomization.yaml` file: + +``` +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization + +resources: + - ../../base + +components: + - ../../components/hardware-profiles-2.22-cpu +``` diff --git a/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-cpu/hardware-profile-serving.yaml b/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-cpu/hardware-profile-serving.yaml new file mode 100644 index 000000000..cfd22be74 --- /dev/null +++ b/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-cpu/hardware-profile-serving.yaml @@ -0,0 +1,26 @@ +apiVersion: dashboard.opendatahub.io/v1alpha1 +kind: HardwareProfile +metadata: + annotations: + opendatahub.io/dashboard-feature-visibility: '["model-serving","pipelines"]' + opendatahub.io/description: "" + opendatahub.io/disabled: "false" + opendatahub.io/display-name: default + name: default-serving +spec: + description: '' + displayName: default + enabled: true + identifiers: + - identifier: cpu + displayName: CPU + resourceType: CPU + defaultCount: "4" + minCount: "1" + maxCount: "32" + - identifier: memory + displayName: Memory + resourceType: Memory + defaultCount: 8Gi + minCount: 2Gi + maxCount: 64Gi diff --git a/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-cpu/hardware-profile-workbench.yaml b/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-cpu/hardware-profile-workbench.yaml new file mode 100644 index 000000000..26e90390c --- /dev/null +++ b/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-cpu/hardware-profile-workbench.yaml @@ -0,0 +1,26 @@ +apiVersion: dashboard.opendatahub.io/v1alpha1 +kind: HardwareProfile +metadata: + annotations: + opendatahub.io/dashboard-feature-visibility: '["workbench"]' + opendatahub.io/description: "" + opendatahub.io/disabled: "false" + opendatahub.io/display-name: default + name: default-notebooks +spec: + description: '' + displayName: default + enabled: true + identifiers: + - identifier: cpu + displayName: CPU + resourceType: CPU + defaultCount: "2" + minCount: "1" + maxCount: "8" + - identifier: memory + displayName: Memory + resourceType: Memory + defaultCount: 8Gi + minCount: 2Gi + maxCount: 32Gi diff --git a/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-cpu/kustomization.yaml b/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-cpu/kustomization.yaml new file mode 100644 index 000000000..3559fd6cc --- /dev/null +++ b/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-cpu/kustomization.yaml @@ -0,0 +1,8 @@ +apiVersion: kustomize.config.k8s.io/v1alpha1 +kind: Component + +namespace: redhat-ods-applications + +resources: + - hardware-profile-serving.yaml + - hardware-profile-workbench.yaml diff --git a/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-nvidia-gpu/README.md b/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-nvidia-gpu/README.md new file mode 100644 index 000000000..8ce8a1301 --- /dev/null +++ b/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-nvidia-gpu/README.md @@ -0,0 +1,24 @@ +# hardware-profiles-nvidia-gpu + +> [!WARNING] +> Hardware profiles in 2.22 utilize the `dashboard.opendatahub.io/v1alpha1` API version and 2.23+ migrated to `infrastructure.opendatahub.io/v1alpha1`. + +## Purpose +This component is designed help admins configure a hardware profile with NVIDIA GPUs. + +For more information on accelerators, please see the [Working with hardware profiles](https://docs.redhat.com/en/documentation/red_hat_openshift_ai_self-managed/2-latest/html/working_with_accelerators/working-with-hardware-profiles_accelerators#working-with-hardware-profiles_accelerators) documentation. + +## Usage + +This component can be added to a base by adding the `components` section to your overlay `kustomization.yaml` file: + +``` +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization + +resources: + - ../../base + +components: + - ../../components/hardware-profiles-2.22-nvidia-gpu +``` diff --git a/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-nvidia-gpu/hardware-profile-serving.yaml b/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-nvidia-gpu/hardware-profile-serving.yaml new file mode 100644 index 000000000..a2d39c08d --- /dev/null +++ b/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-nvidia-gpu/hardware-profile-serving.yaml @@ -0,0 +1,40 @@ +apiVersion: dashboard.opendatahub.io/v1alpha1 +kind: HardwareProfile +metadata: + annotations: + opendatahub.io/dashboard-feature-visibility: '["model-serving","pipelines"]' + opendatahub.io/description: "" + opendatahub.io/disabled: "false" + opendatahub.io/display-name: nvidia-gpu + name: nvidia-gpu-serving +spec: + description: '' + displayName: nvidia-gpu + enabled: true + identifiers: + - identifier: cpu + displayName: CPU + resourceType: CPU + defaultCount: "4" + minCount: "1" + maxCount: "32" + - identifier: memory + displayName: Memory + resourceType: Memory + defaultCount: 8Gi + minCount: 2Gi + maxCount: 120Gi + - identifier: nvidia.com/gpu + displayName: nvidia.com/gpu + defaultCount: 1 + minCount: 1 + maxCount: 8 + tolerations: + - effect: NoSchedule + key: nvidia-gpu-only + operator: Exists + value: "" + - effect: NoSchedule + key: nvidia.com/gpu + operator: Exists + value: "" diff --git a/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-nvidia-gpu/hardware-profile-workbench.yaml b/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-nvidia-gpu/hardware-profile-workbench.yaml new file mode 100644 index 000000000..8778cc69a --- /dev/null +++ b/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-nvidia-gpu/hardware-profile-workbench.yaml @@ -0,0 +1,40 @@ +apiVersion: dashboard.opendatahub.io/v1alpha1 +kind: HardwareProfile +metadata: + annotations: + opendatahub.io/dashboard-feature-visibility: '["workbench"]' + opendatahub.io/description: "" + opendatahub.io/disabled: "false" + opendatahub.io/display-name: nvidia-gpu + name: nvidia-gpu-notebooks +spec: + description: '' + displayName: nvidia-gpu + enabled: true + identifiers: + - identifier: cpu + displayName: CPU + resourceType: CPU + defaultCount: "1" + minCount: "1" + maxCount: "8" + - identifier: memory + displayName: Memory + resourceType: Memory + defaultCount: 8Gi + minCount: 2Gi + maxCount: 32Gi + - identifier: nvidia.com/gpu + displayName: nvidia.com/gpu + defaultCount: 1 + minCount: 1 + maxCount: 1 + tolerations: + - effect: NoSchedule + key: nvidia-gpu-only + operator: Exists + value: "" + - effect: NoSchedule + key: nvidia.com/gpu + operator: Exists + value: "" diff --git a/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-nvidia-gpu/kustomization.yaml b/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-nvidia-gpu/kustomization.yaml new file mode 100644 index 000000000..3559fd6cc --- /dev/null +++ b/components/operators/openshift-ai/instance/components/hardware-profiles-2.22-nvidia-gpu/kustomization.yaml @@ -0,0 +1,8 @@ +apiVersion: kustomize.config.k8s.io/v1alpha1 +kind: Component + +namespace: redhat-ods-applications + +resources: + - hardware-profile-serving.yaml + - hardware-profile-workbench.yaml diff --git a/components/operators/openshift-ai/instance/components/hardware-profiles-cpu/README.md b/components/operators/openshift-ai/instance/components/hardware-profiles-cpu/README.md new file mode 100644 index 000000000..6015798cb --- /dev/null +++ b/components/operators/openshift-ai/instance/components/hardware-profiles-cpu/README.md @@ -0,0 +1,24 @@ +# hardware-profiles-cpu + +> [!WARNING] +> Hardware profiles in 2.22 utilize the `dashboard.opendatahub.io/v1alpha1` API version and 2.23+ migrated to `infrastructure.opendatahub.io/v1alpha1`. + +## Purpose +This component is designed help admins configure a hardware profile with cpu. + +For more information on accelerators, please see the [Working with hardware profiles](https://docs.redhat.com/en/documentation/red_hat_openshift_ai_self-managed/2-latest/html/working_with_accelerators/working-with-hardware-profiles_accelerators#working-with-hardware-profiles_accelerators) documentation. + +## Usage + +This component can be added to a base by adding the `components` section to your overlay `kustomization.yaml` file: + +``` +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization + +resources: + - ../../base + +components: + - ../../components/hardware-profiles-cpu +``` diff --git a/components/operators/openshift-ai/instance/components/hardware-profiles-cpu/hardware-profile-serving.yaml b/components/operators/openshift-ai/instance/components/hardware-profiles-cpu/hardware-profile-serving.yaml new file mode 100644 index 000000000..358fb66b4 --- /dev/null +++ b/components/operators/openshift-ai/instance/components/hardware-profiles-cpu/hardware-profile-serving.yaml @@ -0,0 +1,23 @@ +apiVersion: infrastructure.opendatahub.io/v1alpha1 +kind: HardwareProfile +metadata: + annotations: + opendatahub.io/dashboard-feature-visibility: '["model-serving","pipelines"]' + opendatahub.io/description: "" + opendatahub.io/disabled: "false" + opendatahub.io/display-name: default + name: default-serving +spec: + identifiers: + - identifier: cpu + displayName: CPU + resourceType: CPU + defaultCount: "4" + minCount: "1" + maxCount: "32" + - identifier: memory + displayName: Memory + resourceType: Memory + defaultCount: 8Gi + minCount: 2Gi + maxCount: 64Gi diff --git a/components/operators/openshift-ai/instance/components/hardware-profiles-cpu/hardware-profile-workbench.yaml b/components/operators/openshift-ai/instance/components/hardware-profiles-cpu/hardware-profile-workbench.yaml new file mode 100644 index 000000000..054ad6970 --- /dev/null +++ b/components/operators/openshift-ai/instance/components/hardware-profiles-cpu/hardware-profile-workbench.yaml @@ -0,0 +1,23 @@ +apiVersion: infrastructure.opendatahub.io/v1alpha1 +kind: HardwareProfile +metadata: + annotations: + opendatahub.io/dashboard-feature-visibility: '["workbench"]' + opendatahub.io/description: "" + opendatahub.io/disabled: "false" + opendatahub.io/display-name: default + name: default-notebooks +spec: + identifiers: + - identifier: cpu + displayName: CPU + resourceType: CPU + defaultCount: "2" + minCount: "1" + maxCount: "8" + - identifier: memory + displayName: Memory + resourceType: Memory + defaultCount: 8Gi + minCount: 2Gi + maxCount: 32Gi diff --git a/components/operators/openshift-ai/instance/components/hardware-profiles-cpu/kustomization.yaml b/components/operators/openshift-ai/instance/components/hardware-profiles-cpu/kustomization.yaml new file mode 100644 index 000000000..3559fd6cc --- /dev/null +++ b/components/operators/openshift-ai/instance/components/hardware-profiles-cpu/kustomization.yaml @@ -0,0 +1,8 @@ +apiVersion: kustomize.config.k8s.io/v1alpha1 +kind: Component + +namespace: redhat-ods-applications + +resources: + - hardware-profile-serving.yaml + - hardware-profile-workbench.yaml diff --git a/components/operators/openshift-ai/instance/components/nvidia-gpu-hardware-profile/README.md b/components/operators/openshift-ai/instance/components/hardware-profiles-nvidia-gpu/README.md similarity index 72% rename from components/operators/openshift-ai/instance/components/nvidia-gpu-hardware-profile/README.md rename to components/operators/openshift-ai/instance/components/hardware-profiles-nvidia-gpu/README.md index 3df677d40..3c228deea 100644 --- a/components/operators/openshift-ai/instance/components/nvidia-gpu-hardware-profile/README.md +++ b/components/operators/openshift-ai/instance/components/hardware-profiles-nvidia-gpu/README.md @@ -1,4 +1,7 @@ -# nvidia-gpu-hardware-profile +# hardware-profiles-nvidia-gpu + +> [!WARNING] +> Hardware profiles in 2.22 utilize the `dashboard.opendatahub.io/v1alpha1` API version and 2.23+ migrated to `infrastructure.opendatahub.io/v1alpha1`. ## Purpose This component is designed help admins configure a hardware profile with NVIDIA GPUs. @@ -17,5 +20,5 @@ resources: - ../../base components: - - ../../components/nvidia-gpu-hardware-profile + - ../../components/hardware-profiles-nvidia-gpu ``` diff --git a/components/operators/openshift-ai/instance/components/hardware-profiles-nvidia-gpu/hardware-profile-serving.yaml b/components/operators/openshift-ai/instance/components/hardware-profiles-nvidia-gpu/hardware-profile-serving.yaml new file mode 100644 index 000000000..8e4a7bf09 --- /dev/null +++ b/components/operators/openshift-ai/instance/components/hardware-profiles-nvidia-gpu/hardware-profile-serving.yaml @@ -0,0 +1,40 @@ +apiVersion: infrastructure.opendatahub.io/v1alpha1 +kind: HardwareProfile +metadata: + annotations: + opendatahub.io/dashboard-feature-visibility: '["model-serving","pipelines"]' + opendatahub.io/description: "" + opendatahub.io/disabled: "false" + opendatahub.io/display-name: nvidia-gpu + name: nvidia-gpu-serving +spec: + identifiers: + - identifier: cpu + displayName: CPU + resourceType: CPU + defaultCount: "4" + minCount: "1" + maxCount: "32" + - identifier: memory + displayName: Memory + resourceType: Memory + defaultCount: 8Gi + minCount: 2Gi + maxCount: 120Gi + - identifier: nvidia.com/gpu + displayName: nvidia.com/gpu + defaultCount: 1 + minCount: 1 + maxCount: 8 + scheduling: + node: + tolerations: + - effect: NoSchedule + key: nvidia-gpu-only + operator: Exists + value: "" + - effect: NoSchedule + key: nvidia.com/gpu + operator: Exists + value: "" + type: Node diff --git a/components/operators/openshift-ai/instance/components/hardware-profiles-nvidia-gpu/hardware-profile-workbench.yaml b/components/operators/openshift-ai/instance/components/hardware-profiles-nvidia-gpu/hardware-profile-workbench.yaml new file mode 100644 index 000000000..7ab61c460 --- /dev/null +++ b/components/operators/openshift-ai/instance/components/hardware-profiles-nvidia-gpu/hardware-profile-workbench.yaml @@ -0,0 +1,40 @@ +apiVersion: infrastructure.opendatahub.io/v1alpha1 +kind: HardwareProfile +metadata: + annotations: + opendatahub.io/dashboard-feature-visibility: '["workbench"]' + opendatahub.io/description: "" + opendatahub.io/disabled: "false" + opendatahub.io/display-name: nvidia-gpu + name: nvidia-gpu-notebooks +spec: + identifiers: + - identifier: cpu + displayName: CPU + resourceType: CPU + defaultCount: "1" + minCount: "1" + maxCount: "8" + - identifier: memory + displayName: Memory + resourceType: Memory + defaultCount: 8Gi + minCount: 2Gi + maxCount: 32Gi + - identifier: nvidia.com/gpu + displayName: nvidia.com/gpu + defaultCount: 1 + minCount: 1 + maxCount: 1 + scheduling: + node: + tolerations: + - effect: NoSchedule + key: nvidia-gpu-only + operator: Exists + value: "" + - effect: NoSchedule + key: nvidia.com/gpu + operator: Exists + value: "" + type: Node diff --git a/components/operators/openshift-ai/instance/components/hardware-profiles-nvidia-gpu/kustomization.yaml b/components/operators/openshift-ai/instance/components/hardware-profiles-nvidia-gpu/kustomization.yaml new file mode 100644 index 000000000..3559fd6cc --- /dev/null +++ b/components/operators/openshift-ai/instance/components/hardware-profiles-nvidia-gpu/kustomization.yaml @@ -0,0 +1,8 @@ +apiVersion: kustomize.config.k8s.io/v1alpha1 +kind: Component + +namespace: redhat-ods-applications + +resources: + - hardware-profile-serving.yaml + - hardware-profile-workbench.yaml diff --git a/components/operators/openshift-ai/instance/components/model-server-pod-sizes/README.md b/components/operators/openshift-ai/instance/components/model-server-pod-sizes/README.md index 8735fd39e..f0632b8f3 100644 --- a/components/operators/openshift-ai/instance/components/model-server-pod-sizes/README.md +++ b/components/operators/openshift-ai/instance/components/model-server-pod-sizes/README.md @@ -1,5 +1,8 @@ # model-server-pod-sizes +> [!WARNING] +> This option has been depreciated in favor of Hardware Profiles. + ## Purpose This component is designed help admins configure the default sizes users can select from when creating a new Model Server. diff --git a/components/operators/openshift-ai/instance/components/notebook-pod-sizes/README.md b/components/operators/openshift-ai/instance/components/notebook-pod-sizes/README.md index d8130a9ff..ee4344e10 100644 --- a/components/operators/openshift-ai/instance/components/notebook-pod-sizes/README.md +++ b/components/operators/openshift-ai/instance/components/notebook-pod-sizes/README.md @@ -1,5 +1,8 @@ # notebook-pod-sizes +> [!WARNING] +> This option has been depreciated in favor of Hardware Profiles. + ## Purpose This component is designed help admins configure the default sizes users can select from when creating a new Workbenches. diff --git a/components/operators/openshift-ai/instance/components/nvidia-gpu-accelerator-profile/README.md b/components/operators/openshift-ai/instance/components/nvidia-gpu-accelerator-profile/README.md index 298a103f7..fcf6b3978 100644 --- a/components/operators/openshift-ai/instance/components/nvidia-gpu-accelerator-profile/README.md +++ b/components/operators/openshift-ai/instance/components/nvidia-gpu-accelerator-profile/README.md @@ -1,5 +1,8 @@ # nvidia-gpu-accelerator-profile +> [!WARNING] +> This option has been depreciated in favor of Hardware Profiles. + ## Purpose This component is designed help admins configure an accelerator profile with NVIDIA GPUs. diff --git a/components/operators/openshift-ai/instance/components/nvidia-gpu-hardware-profile/hardware-profile.yaml b/components/operators/openshift-ai/instance/components/nvidia-gpu-hardware-profile/hardware-profile.yaml deleted file mode 100644 index 403d033f4..000000000 --- a/components/operators/openshift-ai/instance/components/nvidia-gpu-hardware-profile/hardware-profile.yaml +++ /dev/null @@ -1,18 +0,0 @@ -apiVersion: dashboard.opendatahub.io/v1 -kind: AcceleratorProfile -metadata: - name: nvidia-gpu - namespace: redhat-ods-applications -spec: - displayName: nvidia-gpu - enabled: true - identifier: nvidia.com/gpu - tolerations: - - effect: NoSchedule - key: nvidia-gpu-only - operator: Exists - value: '' - - effect: NoSchedule - key: nvidia.com/gpu - operator: Exists - value: '' diff --git a/components/operators/openshift-ai/instance/components/nvidia-gpu-hardware-profile/kustomization.yaml b/components/operators/openshift-ai/instance/components/nvidia-gpu-hardware-profile/kustomization.yaml deleted file mode 100644 index a190b1bb2..000000000 --- a/components/operators/openshift-ai/instance/components/nvidia-gpu-hardware-profile/kustomization.yaml +++ /dev/null @@ -1,5 +0,0 @@ -apiVersion: kustomize.config.k8s.io/v1alpha1 -kind: Component - -resources: - - hardware-profile.yaml diff --git a/components/operators/openshift-ai/instance/overlays/fast-nvidia-gpu/kustomization.yaml b/components/operators/openshift-ai/instance/overlays/fast-nvidia-gpu/kustomization.yaml index 588aacc4c..25345420a 100644 --- a/components/operators/openshift-ai/instance/overlays/fast-nvidia-gpu/kustomization.yaml +++ b/components/operators/openshift-ai/instance/overlays/fast-nvidia-gpu/kustomization.yaml @@ -14,10 +14,9 @@ components: - ../../components/dashboard-feature-hardware-profiles - ../../components/dashboard-feature-model-catalog - ../../components/default-notebook-pvc-size - - ../../components/nvidia-gpu-hardware-profile + - ../../components/hardware-profiles-cpu + - ../../components/hardware-profiles-nvidia-gpu - ../../components/idle-notebook-culling - - ../../components/notebook-pod-sizes - ../../components/make-kubeadmin-cluster-admin - - ../../components/model-server-pod-sizes - ../../components/rhoai-auth - ../../components/anythingllm-image diff --git a/components/operators/openshift-ai/instance/overlays/fast/kustomization.yaml b/components/operators/openshift-ai/instance/overlays/fast/kustomization.yaml index d29a2ac34..e7a317f4b 100644 --- a/components/operators/openshift-ai/instance/overlays/fast/kustomization.yaml +++ b/components/operators/openshift-ai/instance/overlays/fast/kustomization.yaml @@ -13,8 +13,7 @@ components: - ../../components/dashboard-feature-hardware-profiles - ../../components/dashboard-feature-model-catalog - ../../components/default-notebook-pvc-size + - ../../components/hardware-profiles-cpu - ../../components/idle-notebook-culling - - ../../components/notebook-pod-sizes - ../../components/make-kubeadmin-cluster-admin - - ../../components/model-server-pod-sizes - ../../components/rhoai-auth diff --git a/components/operators/openshift-ai/instance/overlays/stable-2.19-nvidia-gpu/kustomization.yaml b/components/operators/openshift-ai/instance/overlays/stable-2.19-nvidia-gpu/kustomization.yaml index 2c3a776ea..72ec017b7 100644 --- a/components/operators/openshift-ai/instance/overlays/stable-2.19-nvidia-gpu/kustomization.yaml +++ b/components/operators/openshift-ai/instance/overlays/stable-2.19-nvidia-gpu/kustomization.yaml @@ -12,8 +12,6 @@ components: - ../../components/components-training - ../../components/components-trustyai - ../../components/default-notebook-pvc-size - - ../../components/dashboard-feature-hardware-profiles - - ../../components/nvidia-gpu-hardware-profile - ../../components/idle-notebook-culling - ../../components/notebook-pod-sizes - ../../components/make-kubeadmin-cluster-admin diff --git a/components/operators/openshift-ai/instance/overlays/stable-2.19/kustomization.yaml b/components/operators/openshift-ai/instance/overlays/stable-2.19/kustomization.yaml index a08b4eb0e..6defa0d6a 100644 --- a/components/operators/openshift-ai/instance/overlays/stable-2.19/kustomization.yaml +++ b/components/operators/openshift-ai/instance/overlays/stable-2.19/kustomization.yaml @@ -11,7 +11,6 @@ components: - ../../components/components-modelmesh - ../../components/components-training - ../../components/default-notebook-pvc-size - - ../../components/dashboard-feature-hardware-profiles - ../../components/idle-notebook-culling - ../../components/notebook-pod-sizes - ../../components/make-kubeadmin-cluster-admin diff --git a/components/operators/openshift-ai/instance/overlays/stable-2.22-nvidia-gpu/kustomization.yaml b/components/operators/openshift-ai/instance/overlays/stable-2.22-nvidia-gpu/kustomization.yaml index 9db43f14f..758a82e1a 100644 --- a/components/operators/openshift-ai/instance/overlays/stable-2.22-nvidia-gpu/kustomization.yaml +++ b/components/operators/openshift-ai/instance/overlays/stable-2.22-nvidia-gpu/kustomization.yaml @@ -13,10 +13,9 @@ components: - ../../components/components-trustyai - ../../components/dashboard-feature-hardware-profiles - ../../components/default-notebook-pvc-size - - ../../components/nvidia-gpu-hardware-profile - ../../components/idle-notebook-culling - - ../../components/notebook-pod-sizes + - ../../components/hardware-profiles-2.22-cpu + - ../../components/hardware-profiles-2.22-nvidia-gpu - ../../components/make-kubeadmin-cluster-admin - - ../../components/model-server-pod-sizes - ../../components/rhoai-auth - ../../components/anythingllm-image diff --git a/components/operators/openshift-ai/instance/overlays/stable-2.22/kustomization.yaml b/components/operators/openshift-ai/instance/overlays/stable-2.22/kustomization.yaml index 8dd4956a5..ad9174c85 100644 --- a/components/operators/openshift-ai/instance/overlays/stable-2.22/kustomization.yaml +++ b/components/operators/openshift-ai/instance/overlays/stable-2.22/kustomization.yaml @@ -13,7 +13,6 @@ components: - ../../components/dashboard-feature-hardware-profiles - ../../components/default-notebook-pvc-size - ../../components/idle-notebook-culling - - ../../components/notebook-pod-sizes + - ../../components/hardware-profiles-2.22-cpu - ../../components/make-kubeadmin-cluster-admin - - ../../components/model-server-pod-sizes - ../../components/rhoai-auth