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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ CIDR1="10.1.0.0/16"
CLUSTER2=agones-gameservers-2
REGION2=us-east-2
CIDR2="10.2.0.0/16"
VERSION="1.28"
VERSION="1.32"
```

For simplicity, we will be using local Terraform state files. In production workloads, we recommend storing the state files remotely, for example using the [S3 Terraform backend](https://developer.hashicorp.com/terraform/language/settings/backends/s3).
Expand Down
2 changes: 1 addition & 1 deletion terraform/cloudformation/buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ phases:
- go version

- echo "Installing kubectl..."
- curl -o kubectl https://s3.us-west-2.amazonaws.com/amazon-eks/1.28.0/2023-04-19/bin/linux/amd64/kubectl
- curl -O https://s3.us-west-2.amazonaws.com/amazon-eks/1.32.0/2024-12-20/bin/linux/amd64/kubectl
- chmod +x ./kubectl
- mkdir -p $HOME/bin && cp ./kubectl $HOME/bin/kubectl && export PATH=$PATH:$HOME/bin
- echo 'export PATH=$PATH:$HOME/bin' >> ~/.bashrc
Expand Down
2 changes: 1 addition & 1 deletion terraform/cloudformation/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Parameters:
Description: "CIDR block for the second EKS cluster VPC"
KubernetesVersion:
Type: String
Default: "1.28"
Default: "1.32"
Description: "Kubernetes version for the EKS clusters"
RepositoryOwner:
Type: String
Expand Down
2 changes: 2 additions & 0 deletions terraform/cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ module "cluster1" {
source = "./modules/cluster"
cluster_name = var.cluster_1_name
cluster_region = var.cluster_1_region
cluster_version = var.cluster_version
cluster_cidr = var.cluster_1_cidr
open_match = true
all_mngs_use_arm_based_instance_types = var.all_arm_based_instances_cluster_1
Expand All @@ -17,6 +18,7 @@ module "cluster2" {
source = "./modules/cluster"
cluster_name = var.cluster_2_name
cluster_region = var.cluster_2_region
cluster_version = var.cluster_version
cluster_cidr = var.cluster_2_cidr
open_match = false
all_mngs_use_arm_based_instance_types = var.all_arm_based_instances_cluster_2
Expand Down
2 changes: 1 addition & 1 deletion terraform/cluster/modules/cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ variable "cluster_cidr" {

variable "cluster_version" {
type = string
default = "1.28"
default = "1.32"
}

# Variable for ensuring that all available Managed Node Groups (MNGs) use arm-based instances
Expand Down
Loading