Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions latest/infrastructure/dry-run/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ cluster_availability_zones = [

[[aws.eksctl.cluster_node_groups]]
zone = "us-west-1a"
instance_type = "c7i.12xlarge"
instance_type = "c6i.4xlarge"
volume_size = 30
desired_size = 2
min_size = 2
max_size = 8

[[aws.eksctl.cluster_node_groups]]
zone = "us-west-1c"
instance_type = "c7i.12xlarge"
instance_type = "c6i.4xlarge"
volume_size = 30
desired_size = 2
min_size = 2
Expand Down
2 changes: 1 addition & 1 deletion latest/infrastructure/dry-run/eksctl-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ managedNodeGroups:
withAddonPolicies:
autoScaler: true
# Instance type to allocate
instanceType: c7i.12xlarge
instanceType: c6i.4xlarge
# Size of storage volume for the availability zone, in gigabytes
volumeSize: 30
# Number of nodes to start with in this availability zone
Expand Down
4 changes: 2 additions & 2 deletions latest/infrastructure/production/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ cluster_availability_zones = [

[[aws.eksctl.cluster_node_groups]]
zone = "us-east-1a"
instance_type = "c7i.12xlarge"
instance_type = "c6i.4xlarge"
volume_size = 30
desired_size = 15
min_size = 15
max_size = 100

[[aws.eksctl.cluster_node_groups]]
zone = "us-east-1b"
instance_type = "c7i.12xlarge"
instance_type = "c6i.4xlarge"
volume_size = 30
desired_size = 15
min_size = 15
Expand Down
18 changes: 9 additions & 9 deletions latest/infrastructure/production/eksctl-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ managedNodeGroups:
withAddonPolicies:
autoScaler: true
# Instance type to allocate
instanceType: c7i.12xlarge
instanceType: c6i.4xlarge"
# Size of storage volume for the availability zone, in gigabytes
volumeSize: 30
# Number of nodes to start with in this availability zone
desiredCapacity: 15
# Minimum number of nodes that will always be allocated in this availability zone
minSize: 15
desiredCapacity: 10
# Minimum number o0 nodes that will always be allocated in this availability zone
minSize: 10
# Maximum number of nodes that will every be allocated in this availability zone
maxSize: 100
maxSize: 20
privateNetworking: true
availabilityZones:
- us-east-1a
Expand All @@ -90,15 +90,15 @@ managedNodeGroups:
withAddonPolicies:
autoScaler: true
# Instance type to allocate
instanceType: c7i.12xlarge
instanceType: c6i.4xlarge"
# Size of storage volume for the availability zone, in gigabytes
volumeSize: 30
# Number of nodes to start with in this availability zone
desiredCapacity: 15
desiredCapacity: 10
# Minimum number of nodes that will always be allocated in this availability zone
minSize: 15
minSize: 10
# Maximum number of nodes that will every be allocated in this availability zone
maxSize: 100
maxSize: 20
privateNetworking: true
availabilityZones:
- us-east-1b
Expand Down