Skip to content

Commit a9db852

Browse files
Release 8.0.0 (#662)
* Release 8.0.0 * Update changelog * remove 'defauls' node group * Make curl silent
1 parent 11147e9 commit a9db852

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,20 @@ project adheres to [Semantic Versioning](http://semver.org/).
77

88
## Next release
99

10-
## [[v8.?.?](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v7.0.0...HEAD)] - 2019-??-??]
10+
## [[v8.?.?](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v8.0.0...HEAD)] - 2019-12-11]
1111

12+
- Write your awesome change here (by @you)
13+
14+
# History
15+
16+
## [[v8.0.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v8.0.0...v7.0.1)] - 2019-12-11]
17+
18+
- **Breaking:** Change logic of security group whitelisting. Will always whitelist worker security group on control plane security group either provide one or create new one. See Important notes below for upgrade notes (by @ryanooi)
19+
- **Breaking:** Configure the aws-auth configmap using the terraform kubernetes providers. See Important notes below for upgrade notes (by @sdehaes)
1220
- Wait for cluster to respond to kubectl before applying auth map_config (@shaunc)
1321
- Added flag `create_eks` to conditionally create resources (by @syst0m / @tbeijen)
1422
- Support for AWS EKS Managed Node Groups. (by @wmorgan6796)
1523
- Added a if check on `aws-auth` configmap when `map_roles` is empty (by @shanmugakarna)
16-
- **Breaking:** Configure the aws-auth configmap using the terraform kubernetes providers. See Important notes below for upgrade notes (by @sdehaes)
1724
- Removed no longer used variable `write_aws_auth_config` (by @tbeijen)
1825
- Exit with error code when `aws-auth` configmap is unable to be updated (by @knittingdev)
1926
- Fix deprecated interpolation-only expression (by @angelabad)
@@ -25,7 +32,6 @@ project adheres to [Semantic Versioning](http://semver.org/).
2532
- Added support to create IAM OpenID Connect Identity Provider to enable EKS Identity Roles for Service Accounts (IRSA). (by @alaa)
2633
- Adding node group iam role arns to outputs. (by @mukgupta)
2734
- Added the OIDC Provider ARN to outputs. (by @eytanhanig)
28-
- **Breaking:** Change logic of security group whitelisting. Will always whitelist worker security group on control plane security group either provide one or create new one. See Important notes below for upgrade notes (by @ryanooi)
2935
- Move `eks_node_group` resources to a submodule (by @dpiddockcmp)
3036
- Add complex output `node_groups` (by @TBeijen)
3137

cluster.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ resource "aws_eks_cluster" "this" {
3333
]
3434
provisioner "local-exec" {
3535
command = <<EOT
36-
until curl -k ${aws_eks_cluster.this[0].endpoint}/healthz >/dev/null; do sleep 4; done
36+
until curl -k -s ${aws_eks_cluster.this[0].endpoint}/healthz >/dev/null; do sleep 4; done
3737
EOT
3838
}
3939
}

examples/managed_node_groups/main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ module "eks" {
113113
ExtraTag = "example"
114114
}
115115
}
116-
defaults = {}
117116
}
118117

119118
map_roles = var.map_roles

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v7.0.1
1+
v8.0.0

0 commit comments

Comments
 (0)