Skip to content

Commit

Permalink
fix(example,eks-public): add node pool for testing arm64 node pool
Browse files Browse the repository at this point in the history
  • Loading branch information
g-iannelli committed Nov 11, 2024
1 parent 80808e3 commit 8345b7c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
26 changes: 25 additions & 1 deletion examples/eks-public/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

terraform {
required_version = "~> 1.4.6"
required_version = "~> 1.4"
required_providers {
local = "~> 2.4.0"
null = "~> 3.2.1"
Expand Down Expand Up @@ -156,6 +156,13 @@ module "fury_public_example" {
tags : null
additional_firewall_rules : null
},
{
name : "m5-node-pool-arm64-min-config-self-managed"
min_size : 1
max_size : 2
instance_type : "t4g.large"
volume_size : 20
},
{
type : "eks-managed"
name : "m5-node-pool-eks-managed"
Expand All @@ -171,6 +178,23 @@ module "fury_public_example" {
tags : {
"node-tags" : "exists"
}
},
{
type : "eks-managed"
name : "m5-node-pool-arm64-eks-managed"
min_size : 1
max_size : 2
instance_type : "t4g.large"
spot_instance : true # optionally create spot instances
subnets : null
labels : {
"node.kubernetes.io/role" : "app"
"sighup.io/fury-release" : "v1.25.0"
}
taints : []
tags : {
"node-tags" : "exists"
}
}
]

Expand Down
2 changes: 1 addition & 1 deletion examples/vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

terraform {
required_version = "~> 1.4.6"
required_version = "~> 1.4"
required_providers {
local = "~> 2.4.0"
null = "~> 3.2.1"
Expand Down

0 comments on commit 8345b7c

Please sign in to comment.