From c69c39487bbdff8e289678e8f24da176607ac2af Mon Sep 17 00:00:00 2001 From: Dawid Rogaczewski <20227477+daroga0002@users.noreply.github.com> Date: Wed, 3 Nov 2021 11:37:27 +0100 Subject: [PATCH] chore: Extend example launch_templates_with_managed_node_groups (#1667) --- examples/launch_templates_with_managed_node_groups/main.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/launch_templates_with_managed_node_groups/main.tf b/examples/launch_templates_with_managed_node_groups/main.tf index 5d70e97..4392c60 100644 --- a/examples/launch_templates_with_managed_node_groups/main.tf +++ b/examples/launch_templates_with_managed_node_groups/main.tf @@ -55,6 +55,12 @@ module "eks" { instance_types = ["t3.large"] capacity_type = "SPOT" + + bootstrap_env = { + CONTAINER_RUNTIME = "containerd" + USE_MAX_PODS = false + } + kubelet_extra_args = "--max-pods=110" k8s_labels = { GithubRepo = "terraform-aws-eks" GithubOrg = "terraform-aws-modules"