File tree Expand file tree Collapse file tree 3 files changed +21
-12
lines changed
examples/eks-managed-node-group Expand file tree Collapse file tree 3 files changed +21
-12
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,11 @@ module "eks_al2" {
7
7
8
8
# EKS Addons
9
9
cluster_addons = {
10
- coredns = {}
11
- eks-pod-identity-agent = {}
12
- kube-proxy = {}
13
- vpc-cni = {}
10
+ coredns = {}
11
+ eks-pod-identity-agent = {}
12
+ kube-proxy = {}
13
+ vpc-cni = {}
14
+ eks-node-monitoring-agent = {}
14
15
}
15
16
16
17
vpc_id = module. vpc . vpc_id
@@ -27,6 +28,8 @@ module "eks_al2" {
27
28
# This value is ignored after the initial creation
28
29
# https://github.com/bryantbiggs/eks-desired-size-hack
29
30
desired_size = 2
31
+
32
+ node_repair_config_enabled = true
30
33
}
31
34
}
32
35
Original file line number Diff line number Diff line change @@ -7,10 +7,11 @@ module "eks_al2023" {
7
7
8
8
# EKS Addons
9
9
cluster_addons = {
10
- coredns = {}
11
- eks-pod-identity-agent = {}
12
- kube-proxy = {}
13
- vpc-cni = {}
10
+ coredns = {}
11
+ eks-pod-identity-agent = {}
12
+ kube-proxy = {}
13
+ vpc-cni = {}
14
+ eks-node-monitoring-agent = {}
14
15
}
15
16
16
17
vpc_id = module. vpc . vpc_id
@@ -27,6 +28,8 @@ module "eks_al2023" {
27
28
# https://github.com/bryantbiggs/eks-desired-size-hack
28
29
desired_size = 2
29
30
31
+ node_repair_config_enabled = true
32
+
30
33
# This is not required - demonstrates how to pass additional configuration to nodeadm
31
34
# Ref https://awslabs.github.io/amazon-eks-ami/nodeadm/doc/api/
32
35
cloudinit_pre_nodeadm = [
Original file line number Diff line number Diff line change @@ -7,10 +7,11 @@ module "eks_bottlerocket" {
7
7
8
8
# EKS Addons
9
9
cluster_addons = {
10
- coredns = {}
11
- eks-pod-identity-agent = {}
12
- kube-proxy = {}
13
- vpc-cni = {}
10
+ coredns = {}
11
+ eks-pod-identity-agent = {}
12
+ kube-proxy = {}
13
+ vpc-cni = {}
14
+ eks-node-monitoring-agent = {}
14
15
}
15
16
16
17
vpc_id = module. vpc . vpc_id
@@ -27,6 +28,8 @@ module "eks_bottlerocket" {
27
28
# https://github.com/bryantbiggs/eks-desired-size-hack
28
29
desired_size = 2
29
30
31
+ node_repair_config_enabled = true
32
+
30
33
# This is not required - demonstrates how to pass additional configuration
31
34
# Ref https://bottlerocket.dev/en/os/1.19.x/api/settings/
32
35
bootstrap_extra_args = <<- EOT
You can’t perform that action at this time.
0 commit comments