diff --git a/examples/aws/eks-private/main.tf b/examples/aws/eks-private/main.tf index 126837f..4186cd2 100644 --- a/examples/aws/eks-private/main.tf +++ b/examples/aws/eks-private/main.tf @@ -230,7 +230,7 @@ module "anyscale_eks_nodegroups" { taints = [ { key = "node.anyscale.com/capacity-type", - value = "ANY", + value = "ON_DEMAND", effect = "NO_SCHEDULE", } ] @@ -255,7 +255,7 @@ module "anyscale_eks_nodegroups" { taints = [ { key = "node.anyscale.com/capacity-type", - value = "ANY", + value = "ON_DEMAND", effect = "NO_SCHEDULE", } ] @@ -309,7 +309,7 @@ module "anyscale_eks_nodegroups" { }, { key = "node.anyscale.com/capacity-type", - value = "ANY", + value = "ON_DEMAND", effect = "NO_SCHEDULE", }, { @@ -345,7 +345,7 @@ module "anyscale_eks_nodegroups" { }, { key = "node.anyscale.com/capacity-type", - value = "ANY", + value = "ON_DEMAND", effect = "NO_SCHEDULE", }, { @@ -382,7 +382,7 @@ module "anyscale_eks_nodegroups" { }, { key = "node.anyscale.com/capacity-type", - value = "ANY", + value = "SPOT", effect = "NO_SCHEDULE", }, { diff --git a/examples/aws/eks-public/main.tf b/examples/aws/eks-public/main.tf index 5e0142f..25fe36b 100644 --- a/examples/aws/eks-public/main.tf +++ b/examples/aws/eks-public/main.tf @@ -230,7 +230,7 @@ module "anyscale_eks_nodegroups" { taints = [ { key = "node.anyscale.com/capacity-type", - value = "ANY", + value = "ON_DEMAND", effect = "NO_SCHEDULE", } ] @@ -255,7 +255,7 @@ module "anyscale_eks_nodegroups" { taints = [ { key = "node.anyscale.com/capacity-type", - value = "ANY", + value = "ON_DEMAND", effect = "NO_SCHEDULE", } ] @@ -309,7 +309,7 @@ module "anyscale_eks_nodegroups" { }, { key = "node.anyscale.com/capacity-type", - value = "ANY", + value = "ON_DEMAND", effect = "NO_SCHEDULE", }, { @@ -345,7 +345,7 @@ module "anyscale_eks_nodegroups" { }, { key = "node.anyscale.com/capacity-type", - value = "ANY", + value = "ON_DEMAND", effect = "NO_SCHEDULE", }, { @@ -382,7 +382,7 @@ module "anyscale_eks_nodegroups" { }, { key = "node.anyscale.com/capacity-type", - value = "ANY", + value = "SPOT", effect = "NO_SCHEDULE", }, {