We are running our EKS node groups on AWS Spot Instances. In order to make sure that the services don't go down at any point of time we would like to run 1 pod of each service on a separate node group which uses reserved instances. Is there any way we can configure the deployments so that 1 pod runs on reserved node group and rest on the spot instances node group? Currently we are using node selector to match the label to decide on which node group the service has to run. Is there any way we can use the labels of two separate node groups(reserved and spot) in node selector and specify the weights to divide the load?