File tree Expand file tree Collapse file tree 7 files changed +48
-23
lines changed Expand file tree Collapse file tree 7 files changed +48
-23
lines changed Original file line number Diff line number Diff line change @@ -68,9 +68,13 @@ module "eks" {
68
68
69
69
addons = {
70
70
coredns = {}
71
- eks-pod-identity-agent = {}
71
+ eks-pod-identity-agent = {
72
+ before_compute = true
73
+ }
72
74
kube-proxy = {}
73
- vpc-cni = {}
75
+ vpc-cni = {
76
+ before_compute = true
77
+ }
74
78
}
75
79
76
80
# Optional
Original file line number Diff line number Diff line change 11
11
- [ Upgrade to v18.x] ( https://github.com/terraform-aws-modules/terraform-aws-eks/blob/master/docs/UPGRADE-18.0.md )
12
12
- [ Upgrade to v19.x] ( https://github.com/terraform-aws-modules/terraform-aws-eks/blob/master/docs/UPGRADE-19.0.md )
13
13
- [ 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 )
Original file line number Diff line number Diff line change @@ -8,10 +8,14 @@ module "eks_al2023" {
8
8
9
9
# EKS Addons
10
10
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
+ }
15
19
}
16
20
17
21
vpc_id = module. vpc . vpc_id
Original file line number Diff line number Diff line change @@ -8,10 +8,14 @@ module "eks_bottlerocket" {
8
8
9
9
# EKS Addons
10
10
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
+ }
15
19
}
16
20
17
21
vpc_id = module. vpc . vpc_id
Original file line number Diff line number Diff line change @@ -63,10 +63,14 @@ module "eks" {
63
63
endpoint_public_access = true
64
64
65
65
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
+ }
70
74
}
71
75
72
76
vpc_id = module. vpc . vpc_id
@@ -139,7 +143,7 @@ resource "helm_release" "karpenter" {
139
143
repository_username = data. aws_ecrpublic_authorization_token . token . user_name
140
144
repository_password = data. aws_ecrpublic_authorization_token . token . password
141
145
chart = " karpenter"
142
- version = " 1.5.2 "
146
+ version = " 1.6.0 "
143
147
wait = false
144
148
145
149
values = [
Original file line number Diff line number Diff line change @@ -8,10 +8,14 @@ module "eks_al2023" {
8
8
9
9
# EKS Addons
10
10
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
+ }
15
19
}
16
20
17
21
vpc_id = module. vpc . vpc_id
Original file line number Diff line number Diff line change @@ -8,10 +8,14 @@ module "eks_bottlerocket" {
8
8
9
9
# EKS Addons
10
10
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
+ }
15
19
}
16
20
17
21
vpc_id = module. vpc . vpc_id
You can’t perform that action at this time.
0 commit comments