Sangraham Logo

Taints and toleration's

Tainting a node using kubectl

NoExecute

tolerations:
  - key: "KEY"
    operator: "Equal"
    value: "VALUE"
    effect: "NoExecute"
    tolerationSeconds: 300

Few node labels that are tainted:

Set Tolerance so that it schedules on every node [1]

tolerations:
  - effect: NoSchedule
    operator: Exists

References

[1]: Helm: set tolerations for promtail in loki-stack chart · Issue #2298 · grafana/loki · GitHub