-
Notifications
You must be signed in to change notification settings - Fork 87
Description
Summary
In clusters where nodes are tainted, Skupper’s router pods created from a Site resource remain in Pending because the generated Deployment does not include tolerations. Similarly, the Helm chart for the controller does not expose tolerations. This makes dynamic deployment via CI/CD difficult in environments where taints are standard.
Proposal
Add tolerations to:
The Helm chart for the controller.
The Site CR spec so the controller can apply them to the router Deployment.
Why
Without this, Skupper cannot run on clusters where all nodes have NoSchedule taints without manual patching or admission webhooks.
Example
YAMLspec:
tolerations:
- key: "dedicated"
operator: "Equal"
value: "networking"
effect: "NoSchedule"
Questions for maintainers
Is this something you’d like to support in Skupper?
Would you prefer a minimal tolerations field or a full podTemplate approach for future flexibility?
Contribution offer
This would be my first contribution to any open source project. I’m happy to give this a go if you think it’s a good fit and can point me to any development guidelines