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

nerc-ocp-prod: Add RHOAI GPU accelereatorProfiles #626

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
apiVersion: dashboard.opendatahub.io/v1
kind: AcceleratorProfile
metadata:
name: nvidia-a100-gpu
namespace: redhat-ods-applications
spec:
displayName: NVIDIA A100 GPU
enabled: true
identifier: nvidia.com/gpu
tolerations:
- effect: NoSchedule
key: nvidia.com/gpu.product
operator: Equal
value: NVIDIA-A100-SXM4-40GB
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

resources:
- a100-acceleratorprofile.yaml
- v100-acceleratorprofile.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
apiVersion: dashboard.opendatahub.io/v1
kind: AcceleratorProfile
metadata:
name: nvidia-v100-gpu
namespace: redhat-ods-applications
spec:
displayName: NVIDIA V100 GPU
enabled: true
identifier: nvidia.com/gpu
tolerations:
- effect: NoSchedule
key: nvidia.com/gpu.product
operator: Equal
value: Tesla-V100-PCIE-32GB
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ resources:
- odhdashboardconfigs/odh-dashboard-config.yaml
- imagestreams/ucsls-f24-imagestream.yaml
- imagestreams/oauth-proxy.yaml
- acceleratorprofiles
Loading