mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-23 09:51:04 +01:00
docs: Update doc references to 1.33; remove AL2 examples since 1.33+ does not support AL2 (#3402)
This commit is contained in:
@@ -2,7 +2,6 @@
|
||||
|
||||
Configuration in this directory creates Amazon EKS clusters with EKS Managed Node Groups demonstrating different configurations:
|
||||
|
||||
- `eks-al2.tf` demonstrates an EKS cluster using EKS managed node group that utilizes the EKS Amazon Linux 2 optimized AMI
|
||||
- `eks-al2023.tf` demonstrates an EKS cluster using EKS managed node group that utilizes the EKS Amazon Linux 2023 optimized AMI
|
||||
- `eks-bottlerocket.tf` demonstrates an EKS cluster using EKS managed node group that utilizes the Bottlerocket EKS optimized AMI
|
||||
|
||||
|
||||
@@ -1,34 +0,0 @@
|
||||
module "eks_al2" {
|
||||
source = "terraform-aws-modules/eks/aws"
|
||||
version = "~> 20.0"
|
||||
|
||||
cluster_name = "${local.name}-al2"
|
||||
cluster_version = "1.31"
|
||||
|
||||
# EKS Addons
|
||||
cluster_addons = {
|
||||
coredns = {}
|
||||
eks-pod-identity-agent = {}
|
||||
kube-proxy = {}
|
||||
vpc-cni = {}
|
||||
}
|
||||
|
||||
vpc_id = module.vpc.vpc_id
|
||||
subnet_ids = module.vpc.private_subnets
|
||||
|
||||
eks_managed_node_groups = {
|
||||
example = {
|
||||
# Starting on 1.30, AL2023 is the default AMI type for EKS managed node groups
|
||||
ami_type = "AL2_x86_64"
|
||||
instance_types = ["m6i.large"]
|
||||
|
||||
min_size = 2
|
||||
max_size = 5
|
||||
# This value is ignored after the initial creation
|
||||
# https://github.com/bryantbiggs/eks-desired-size-hack
|
||||
desired_size = 2
|
||||
}
|
||||
}
|
||||
|
||||
tags = local.tags
|
||||
}
|
||||
@@ -3,7 +3,7 @@ module "eks_al2023" {
|
||||
version = "~> 20.0"
|
||||
|
||||
cluster_name = "${local.name}-al2023"
|
||||
cluster_version = "1.31"
|
||||
cluster_version = "1.33"
|
||||
|
||||
# EKS Addons
|
||||
cluster_addons = {
|
||||
|
||||
@@ -3,7 +3,7 @@ module "eks_bottlerocket" {
|
||||
version = "~> 20.0"
|
||||
|
||||
cluster_name = "${local.name}-bottlerocket"
|
||||
cluster_version = "1.31"
|
||||
cluster_version = "1.33"
|
||||
|
||||
# EKS Addons
|
||||
cluster_addons = {
|
||||
|
||||
Reference in New Issue
Block a user