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

ocp-test: add ODF daemonset tolerations for GPU nodes #644

Merged
merged 1 commit into from
Jan 30, 2025
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
apiVersion: v1
data:
ROOK_CSI_ENABLE_CEPHFS: "true"
ROOK_LOG_LEVEL: DEBUG
CSI_PLUGIN_TOLERATIONS: |2-

- key: node.ocs.openshift.io/storage
operator: Equal
value: "true"
effect: NoSchedule
- key: nvidia.com/gpu.product
operator: Equal
value: "Tesla-V100-PCIE-32GB"
effect: NoSchedule
- key: nvidia.com/gpu.product
operator: Equal
value: "NVIDIA-A100-SXM4-40GB"
effect: NoSchedule
CSI_PROVISIONER_TOLERATIONS: |2-

- key: node.ocs.openshift.io/storage
operator: Equal
value: "true"
effect: NoSchedule
- key: nvidia.com/gpu.product
operator: Equal
value: "Tesla-V100-PCIE-32GB"
effect: NoSchedule
- key: nvidia.com/gpu.product
operator: Equal
value: "NVIDIA-A100-SXM4-40GB"
effect: NoSchedule
kind: ConfigMap
metadata:
name: rook-ceph-operator-config
namespace: openshift-storage
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ resources:
- ../../../../bundles/odf-external
- externalsecrets/rook-ceph-external-cluster-details.yaml
- redhatcop.redhat.io/odf-node-patcher.yaml
- configmaps/rook-ceph-operator-config.yaml

patches:
- path: storageclasses/ocs-external-storagecluster-ceph-rbd_patch.yaml
Expand Down