Skip to content

Commit f62280d

Browse files
committed
docs: Ensure addon ussage documented is aligned
1 parent a2b25b2 commit f62280d

File tree

7 files changed

+48
-23
lines changed

7 files changed

+48
-23
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,13 @@ module "eks" {
6868
6969
addons = {
7070
coredns = {}
71-
eks-pod-identity-agent = {}
71+
eks-pod-identity-agent = {
72+
before_compute = true
73+
}
7274
kube-proxy = {}
73-
vpc-cni = {}
75+
vpc-cni = {
76+
before_compute = true
77+
}
7478
}
7579
7680
# Optional

docs/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@
1111
- [Upgrade to v18.x](https://github.com/terraform-aws-modules/terraform-aws-eks/blob/master/docs/UPGRADE-18.0.md)
1212
- [Upgrade to v19.x](https://github.com/terraform-aws-modules/terraform-aws-eks/blob/master/docs/UPGRADE-19.0.md)
1313
- [Upgrade to v20.x](https://github.com/terraform-aws-modules/terraform-aws-eks/blob/master/docs/UPGRADE-20.0.md)
14+
- [Upgrade to v21.x](https://github.com/terraform-aws-modules/terraform-aws-eks/blob/master/docs/UPGRADE-21.0.md)

examples/eks-managed-node-group/eks-al2023.tf

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ module "eks_al2023" {
88

99
# EKS Addons
1010
addons = {
11-
coredns = {}
12-
eks-pod-identity-agent = {}
13-
kube-proxy = {}
14-
vpc-cni = {}
11+
coredns = {}
12+
eks-pod-identity-agent = {
13+
before_compute = true
14+
}
15+
kube-proxy = {}
16+
vpc-cni = {
17+
before_compute = true
18+
}
1519
}
1620

1721
vpc_id = module.vpc.vpc_id

examples/eks-managed-node-group/eks-bottlerocket.tf

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ module "eks_bottlerocket" {
88

99
# EKS Addons
1010
addons = {
11-
coredns = {}
12-
eks-pod-identity-agent = {}
13-
kube-proxy = {}
14-
vpc-cni = {}
11+
coredns = {}
12+
eks-pod-identity-agent = {
13+
before_compute = true
14+
}
15+
kube-proxy = {}
16+
vpc-cni = {
17+
before_compute = true
18+
}
1519
}
1620

1721
vpc_id = module.vpc.vpc_id

examples/karpenter/main.tf

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,14 @@ module "eks" {
6363
endpoint_public_access = true
6464

6565
addons = {
66-
coredns = {}
67-
eks-pod-identity-agent = {}
68-
kube-proxy = {}
69-
vpc-cni = {}
66+
coredns = {}
67+
eks-pod-identity-agent = {
68+
before_compute = true
69+
}
70+
kube-proxy = {}
71+
vpc-cni = {
72+
before_compute = true
73+
}
7074
}
7175

7276
vpc_id = module.vpc.vpc_id
@@ -139,7 +143,7 @@ resource "helm_release" "karpenter" {
139143
repository_username = data.aws_ecrpublic_authorization_token.token.user_name
140144
repository_password = data.aws_ecrpublic_authorization_token.token.password
141145
chart = "karpenter"
142-
version = "1.5.2"
146+
version = "1.6.0"
143147
wait = false
144148

145149
values = [

examples/self-managed-node-group/eks-al2023.tf

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ module "eks_al2023" {
88

99
# EKS Addons
1010
addons = {
11-
coredns = {}
12-
eks-pod-identity-agent = {}
13-
kube-proxy = {}
14-
vpc-cni = {}
11+
coredns = {}
12+
eks-pod-identity-agent = {
13+
before_compute = true
14+
}
15+
kube-proxy = {}
16+
vpc-cni = {
17+
before_compute = true
18+
}
1519
}
1620

1721
vpc_id = module.vpc.vpc_id

examples/self-managed-node-group/eks-bottlerocket.tf

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ module "eks_bottlerocket" {
88

99
# EKS Addons
1010
addons = {
11-
coredns = {}
12-
eks-pod-identity-agent = {}
13-
kube-proxy = {}
14-
vpc-cni = {}
11+
coredns = {}
12+
eks-pod-identity-agent = {
13+
before_compute = true
14+
}
15+
kube-proxy = {}
16+
vpc-cni = {
17+
before_compute = true
18+
}
1519
}
1620

1721
vpc_id = module.vpc.vpc_id

0 commit comments

Comments
 (0)