Skip to content

Commit

Permalink
ocp-test: add ODF daemonset tolerations for GPU nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
jtriley committed Jan 30, 2025
1 parent bea300e commit c8ffa93
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
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

0 comments on commit c8ffa93

Please sign in to comment.