From e51dadb70de9904e52bd46f9ec4b075359fc8253 Mon Sep 17 00:00:00 2001 From: Vijay Veeranki Date: Mon, 21 Mar 2022 17:18:35 +0000 Subject: [PATCH] Revert the changes related to K8s 1.21 Untill this get resolved: https://github.com/aws/amazon-vpc-cni-k8s/issues/1930 --- README.md | 6 +++--- variables.tf | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c9341d9..65d4a58 100644 --- a/README.md +++ b/README.md @@ -53,13 +53,13 @@ module "aws_eks_addons" { | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| -| addon\_coredns\_version | Version for addon\_coredns\_version | `string` | `"v1.8.3-eksbuild.1"` | no | +| addon\_coredns\_version | Version for addon\_coredns\_version | `string` | `"v1.8.4-eksbuild.1"` | no | | addon\_create\_coredns | Create coredns addon | `bool` | `true` | no | | addon\_create\_kube\_proxy | Create kube\_proxy addon | `bool` | `true` | no | | addon\_create\_vpc\_cni | Create vpc\_cni addon | `bool` | `true` | no | -| addon\_kube\_proxy\_version | Version for addon\_kube\_proxy\_version | `string` | `"v1.20.7-eksbuild.1"` | no | +| addon\_kube\_proxy\_version | Version for addon\_kube\_proxy\_version | `string` | `"v1.21.2-eksbuild.2"` | no | | addon\_tags | Cluster addon tags | `map(string)` | `{}` | no | -| addon\_vpc\_cni\_version | Version for addon\_create\_vpc\_cni | `string` | `"v1.9.3-eksbuild.1"` | no | +| addon\_vpc\_cni\_version | Version for addon\_create\_vpc\_cni | `string` | `"v1.10.2-eksbuild.1"` | no | | cluster\_name | Kubernetes cluster name - used to name (id) the auth0 resources | `any` | n/a | yes | | cluster\_oidc\_issuer\_url | Used to create the IAM OIDC role | `string` | `""` | no | | eks\_cluster\_id | trigger for null resource using eks\_cluster\_id | `any` | n/a | yes | diff --git a/variables.tf b/variables.tf index e2be5e4..b81db41 100644 --- a/variables.tf +++ b/variables.tf @@ -26,19 +26,19 @@ variable "addon_create_coredns" { } variable "addon_vpc_cni_version" { - default = "v1.9.3-eksbuild.1" + default = "v1.10.2-eksbuild.1" description = "Version for addon_create_vpc_cni" type = string } variable "addon_kube_proxy_version" { - default = "v1.20.7-eksbuild.1" + default = "v1.21.2-eksbuild.2" description = "Version for addon_kube_proxy_version" type = string } variable "addon_coredns_version" { - default = "v1.8.3-eksbuild.1" + default = "v1.8.4-eksbuild.1" description = "Version for addon_coredns_version" type = string }