Skip to content

Commit

Permalink
Revert the changes related to K8s 1.21
Browse files Browse the repository at this point in the history
Untill this get resolved:
aws/amazon-vpc-cni-k8s#1930
  • Loading branch information
vijay-veeranki committed Mar 21, 2022
1 parent 5a94713 commit e51dadb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
6 changes: 3 additions & 3 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit e51dadb

Please sign in to comment.