Add toleration provisioner to Kubernetes infrastructure.
See original GitHub issueDescription
they have a connector to managed container instance on some managed Kubernetes. For example, Azure AKS have a connector to ACI. AWS also have a similar service.
It will provide high scalability to Che by supporting the connector.
AFAIK, such connectors is added as tainted node to the cluster.
So Che needs to send Deployment
request with toleration:
for deploying pods to managed container instances.
At the same, some Che admins may avoid to use managed container services. Because, comparing to VM instances, such services will have some restrictions.
So this support should be configurable.
Issue Analytics
- State:
- Created 4 years ago
- Comments:9 (9 by maintainers)
Top Results From Across the Web
Taints and Tolerations | Kubernetes
You can ignore node conditions for newly created pods by adding the corresponding Pod tolerations. The control plane also adds the node.
Read more >Advanced Scheduling and Taints and Tolerations
If a node enters a not ready state, the node.kubernetes.io/not-ready:NoExecute taint is added and pods cannot be scheduled on the node. Existing pods...
Read more >Control scheduling with node taints | Google Kubernetes ...
Taints and tolerations work together to ensure that Pods are not scheduled onto inappropriate nodes. Pods that do not tolerate this taint are...
Read more >Kubernetes Taints and Tolerations - Guide and Examples
Then add tolerations of the taint in that user group's pods so they can run on those nodes. To further ensure that pods...
Read more >How to Debug Kubernetes Pending Pods and Scheduling ...
Kubernetes lets you add taints to nodes and tolerations to pods to influence scheduling decisions. Once you've added a taint to a node,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@davidwindell https://github.com/eclipse/che/pull/18691 has been merged into master.
Thanks for the update!