简体   繁体   中英

Can we create a node group in docker swarm?

Our current docker cluster has mix size of nodes. i:e some nodes have more memory and storage than other nodes.

Is there any way I can create two separate nodes groups for low end and high end nodes so that I can provision heavy containers on high end nodes only.

I understand using constraint filter( https://docs.docker.com/swarm/scheduler/filter/ ) I can provision a container on a particular node by ID or name. But again I can;t scale it dynamically if that node goes down or new nodes are added to the cluster.

No, you can't subdivide nodes within a swarm, you need to do it through labels. You apply labels either on the Docker engine - for the old Docker Swarm, or on the node for the new Swarm Mode.

Adding a label would be part of your onboarding for a new node - so all nodes have the appropriate labels and the scheduler can manage your services as you want.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM