This message was deleted.
# longhorn-storage
a
This message was deleted.
l
Are you sure you need the
=true
part? Also was all volumes detached before applying the toleration setting? That might be needed.
d
Will try without true. Don't have any volumes created yet, literally pretty out of the box longhorn, haven't configured anything yet. Even tried to recreate it from scratch.
👍 1
Nope no change.
Again wiped it and recreated it from scratch to be sure.
Found the issue, needed to have manager and driver also support the nodes:
Copy code
preUpgradeChecker:
  jobEnabled: false

defaultSettings:
  taintToleration: GameServersOnly=true:NoSchedule

longhornManager:
  tolerations:
  - key: "GameServersOnly"
    operator: "Equal"
    value: "true"
    effect: "NoSchedule"

longhornDriver:
  tolerations:
  - key: "GameServersOnly"
    operator: "Equal"
    value: "true"
    effect: "NoSchedule"
👍 1