Closed paulreimer closed 5 years ago
It would help my use case of using kubernetes + Drone, and desiring to have k8s nodes dedicated to running Drone jobs.
This could work by having a cluster admin create k8s nodes with taints: kubectl taint nodes node1 dedicated=drone:NoSchedule
taints
kubectl taint nodes node1 dedicated=drone:NoSchedule
And so a feature request for supporting config option in Drone to set matching tolerations:
tolerations
spec: tolerations: - key: dedicated value: drone
This is good.
👍
there is a new (still experimental) kubernetes runner that supports this syntax: https://github.com/drone-runners/drone-runner-kube
It would help my use case of using kubernetes + Drone, and desiring to have k8s nodes dedicated to running Drone jobs.
This could work by having a cluster admin create k8s nodes with
taints
:kubectl taint nodes node1 dedicated=drone:NoSchedule
And so a feature request for supporting config option in Drone to set matching
tolerations
: