Skip to content

Commit

Permalink
feat: Set default cluster version to 1.23 & examples to 1.23 (#899)
Browse files Browse the repository at this point in the history
* feat: use eks version 1.23

* chore: pre-commit

* fix: remove unrelated changes
  • Loading branch information
Zvikan authored Aug 26, 2022
1 parent 3a0f5c8 commit 710762b
Show file tree
Hide file tree
Showing 38 changed files with 41 additions and 41 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ If you are interested in contributing to EKS Blueprints, see the [Contribution g
| <a name="input_cluster_service_ipv4_cidr"></a> [cluster\_service\_ipv4\_cidr](#input\_cluster\_service\_ipv4\_cidr) | The CIDR block to assign Kubernetes service IP addresses from. If you don't specify a block, Kubernetes assigns addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks | `string` | `null` | no |
| <a name="input_cluster_service_ipv6_cidr"></a> [cluster\_service\_ipv6\_cidr](#input\_cluster\_service\_ipv6\_cidr) | The IPV6 Service CIDR block to assign Kubernetes service IP addresses | `string` | `null` | no |
| <a name="input_cluster_timeouts"></a> [cluster\_timeouts](#input\_cluster\_timeouts) | Create, update, and delete timeout configurations for the cluster | `map(string)` | `{}` | no |
| <a name="input_cluster_version"></a> [cluster\_version](#input\_cluster\_version) | Kubernetes `<major>.<minor>` version to use for the EKS cluster (i.e.: `1.22`) | `string` | `"1.22"` | no |
| <a name="input_cluster_version"></a> [cluster\_version](#input\_cluster\_version) | Kubernetes `<major>.<minor>` version to use for the EKS cluster (i.e.: `1.23`) | `string` | `"1.23"` | no |
| <a name="input_control_plane_subnet_ids"></a> [control\_plane\_subnet\_ids](#input\_control\_plane\_subnet\_ids) | A list of subnet IDs where the EKS cluster control plane (ENIs) will be provisioned. Used for expanding the pool of subnets used by nodes/node groups without replacing the EKS control plane | `list(string)` | `[]` | no |
| <a name="input_create_cloudwatch_log_group"></a> [create\_cloudwatch\_log\_group](#input\_create\_cloudwatch\_log\_group) | Determines whether a log group is created by this module for the cluster logs. If not, AWS will automatically create one if logging is enabled | `bool` | `false` | no |
| <a name="input_create_cluster_security_group"></a> [create\_cluster\_security\_group](#input\_create\_cluster\_security\_group) | Toggle to create or assign cluster security group | `bool` | `true` | no |
Expand Down
2 changes: 1 addition & 1 deletion examples/ai-ml/ray/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ module "eks_blueprints" {
source = "../../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/analytics/airflow-on-eks/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ variable "region" {
variable "eks_cluster_version" {
description = "EKS Cluster version"
type = string
default = "1.22"
default = "1.23"
}

variable "vpc_cidr" {
Expand Down
2 changes: 1 addition & 1 deletion examples/analytics/emr-eks-fsx-lustre/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ variable "region" {

variable "eks_cluster_version" {
description = "EKS Cluster version"
default = "1.22"
default = "1.23"
type = string
}

Expand Down
2 changes: 1 addition & 1 deletion examples/analytics/emr-on-eks/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ variable "region" {

variable "eks_cluster_version" {
description = "EKS Cluster version"
default = "1.22"
default = "1.23"
type = string
}

Expand Down
2 changes: 1 addition & 1 deletion examples/analytics/spark-k8s-operator/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ variable "region" {

variable "eks_cluster_version" {
description = "EKS Cluster version"
default = "1.22"
default = "1.23"
type = string
}

Expand Down
2 changes: 1 addition & 1 deletion examples/ci-cd/gitlab-ci-cd/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ module "eks_blueprints" {
source = "../../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/complete-kubernetes-addons/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module "eks_blueprints" {
source = "../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/crossplane/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module "eks_blueprints" {
source = "../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/eks-cluster-with-external-dns/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ module "eks_blueprints" {
source = "../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/eks-cluster-with-new-vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ module "eks_blueprints" {
source = "../.."

cluster_name = local.cluster_name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/external-secrets/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ module "eks_blueprints" {
source = "../.."

cluster_name = local.name
cluster_version = "1.21"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/fargate-serverless/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ module "eks_blueprints" {
source = "../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
4 changes: 2 additions & 2 deletions examples/fully-private-eks-cluster/add-ons/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ variable "eks_cluster_id" {
type = string
}
variable "cluster_version" {
description = "Kubernetes `<major>.<minor>` version to use for the EKS cluster (i.e.: `1.22`)"
description = "Kubernetes `<major>.<minor>` version to use for the EKS cluster (i.e.: `1.23`)"
type = string
default = "1.22"
default = "1.23"
}
4 changes: 2 additions & 2 deletions examples/fully-private-eks-cluster/eks/variables.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
variable "cluster_version" {
description = "Kubernetes `<major>.<minor>` version to use for the EKS cluster (i.e.: `1.22`)"
description = "Kubernetes `<major>.<minor>` version to use for the EKS cluster (i.e.: `1.23`)"
type = string
default = "1.22"
default = "1.23"
}

variable "region" {
Expand Down
2 changes: 1 addition & 1 deletion examples/game-tech/agones-game-controller/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module "eks_blueprints" {
source = "../../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/gitops/argocd/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module "eks_blueprints" {
source = "../../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/ingress-controllers/nginx/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module "eks_blueprints" {
source = "../../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/ipv4-prefix-delegation/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ locals {
name = basename(path.cwd)
region = "us-west-2"

cluster_version = "1.22"
cluster_version = "1.23"

vpc_cidr = "10.0.0.0/16"
azs = slice(data.aws_availability_zones.available.names, 0, 3)
Expand Down
2 changes: 1 addition & 1 deletion examples/ipv6-eks-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module "eks_blueprints" {
source = "../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"
cluster_ip_family = "ipv6"

vpc_id = module.vpc.vpc_id
Expand Down
2 changes: 1 addition & 1 deletion examples/karpenter/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ module "eks_blueprints" {
source = "../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/managed-workflow-apache-airflow/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ module "eks_blueprints" {
source = "../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/multi-tenancy-with-teams/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ module "eks_blueprints" {
source = "../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/node-groups/fargate-profiles/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module "eks_blueprints" {
source = "../../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/node-groups/managed-node-groups/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ locals {
name = basename(path.cwd)
region = "us-west-2"

cluster_version = "1.22"
cluster_version = "1.23"

vpc_cidr = "10.0.0.0/16"
azs = slice(data.aws_availability_zones.available.names, 0, 3)
Expand Down
2 changes: 1 addition & 1 deletion examples/node-groups/self-managed-node-groups/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module "eks_blueprints" {
source = "../../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/node-groups/windows-node-groups/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module "eks_blueprints" {
source = "../../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ module "eks_blueprints" {
source = "../../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/observability/adot-amp-grafana-for-java/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ module "eks_blueprints" {
source = "../../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ module "eks_blueprints" {
source = "../../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/observability/adot-amp-grafana-for-nginx/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ module "eks_blueprints" {
source = "../../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/observability/amp-amg-opensearch/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ module "eks_blueprints" {
source = "../../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/secrets-management/csi-secrets-driver/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ module "eks_blueprints" {
source = "../../../"

cluster_name = local.cluster_name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/stateful/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module "eks_blueprints" {
source = "../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/tls-with-aws-pca-issuer/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ module "eks_blueprints" {
source = "../.."

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"

vpc_id = module.vpc.vpc_id
private_subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion examples/upstream-with-k8s-addons/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ module "eks" {
version = "~> 18.0"

cluster_name = local.name
cluster_version = "1.22"
cluster_version = "1.23"
cluster_endpoint_private_access = true

vpc_id = module.vpc.vpc_id
Expand Down
2 changes: 1 addition & 1 deletion examples/vpc-cni-custom-networking/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ locals {
name = basename(path.cwd)
region = "us-west-2"

cluster_version = "1.22"
cluster_version = "1.23"

azs = slice(data.aws_availability_zones.available.names, 0, 3)
vpc_cidr = "10.0.0.0/16"
Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ variable "cluster_name" {
}

variable "cluster_version" {
description = "Kubernetes `<major>.<minor>` version to use for the EKS cluster (i.e.: `1.22`)"
description = "Kubernetes `<major>.<minor>` version to use for the EKS cluster (i.e.: `1.23`)"
type = string
default = "1.22"
default = "1.23"
}

#-------------------------------
Expand Down

0 comments on commit 710762b

Please sign in to comment.