ceph / ceph-csi-operator

Kubernetes operator for managing the CephCSI plugins
Apache License 2.0
16 stars 18 forks source link

add missing tolerations field in nodeplugin podspec #150

Closed leelavg closed 1 month ago

Madhu-1 commented 1 month ago

@leelavg let me know if its tested and good to be merged.

leelavg commented 1 month ago

/hold

still testing, will update, something else doesn't seem right.

leelavg commented 1 month ago

/unhold

Tested:

I was doing a mistake (with name of operatorconfig) during testing and results got delayed, working as expected.

> k get ds -oyaml | grep toleration -A7
        tolerations:
        - effect: NoSchedule
          key: node-role.kubernetes.io/master
          operator: Exists
        - effect: NoSchedule
          key: node.ocs.openshift.io/storage
          operator: Equal
          value: "true"

> k get deploy -oyaml | grep toleration -A4
        tolerations:
        - effect: NoSchedule
          key: node.ocs.openshift.io/storage
          operator: Equal
          value: "true"