This message was deleted.
# ask-for-help
s
This message was deleted.
s
You may need to look into this a bit but I think it is possible to add tolerations through the
bento_deployment_overrides
field using the JSON editor. cc: @sauyon
f
Done, thanks a lot @Sean! We’ve added both a label and a taint to our node pool. This is what we added to our bento deployment for anyone else that might need it.
Copy code
"bento_deployment_overrides": {
    "extraPodSpec": {
        "nodeSelector": {
            "nodeLabel": "value"
        },
        "tolerations": [
            {
                "key": "nodeTaintKey",
                "operator": "Exists",
                "effect": "NoSchedule"
            }
        ]
    }
}
👍 1