-
Notifications
You must be signed in to change notification settings - Fork 669
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support taints during node creation #624
Comments
This would be pretty handy. Some IKS best practice documents include steps to taint edge nodes to avoid having non-networking workloads scheduled on them (Securing Containers Workload Patterns in IKS is only one example). It would be cool if we didn't need to run the following kubectl taint node -l dedicated=edge dedicated=edge:NoSchedule dedicated=edge:NoExecute |
The current version of IKS doesn't support any taint option. We will open a support ticket on IKS team for the requirement. |
Since recently it is possible to taint all the nodes in a worker pool via ibmcloud cli command |
We will plan in next upcoming sprints |
Hi there,
we would like to have the ability to add taints to a kubernetes node during the creation of a node.
Currently we have to add all taints after the kubernetes cluster is created. Which lead to some more or less complex terraform setup.
I would suggest to add this functionality to the ibm_container_worker_pool resource (https://ibm-cloud.github.io/tf-ibm-docs/v0.17.1/r/container_worker_pool.html)
Some other providers already support this solution (e.g. google https://www.terraform.io/docs/providers/google/r/container_cluster.html#taint)
The text was updated successfully, but these errors were encountered: