Wait cluster responsive (#639)

* wait for cluster to respond before creating auth config map

* adds changelog entry

* fixup tf format

* fixup kubernetes required version

* fixup missing local for kubeconfig_filename

* combine wait for cluster into provisioner on cluster; change status check to /healthz on endpoint

* fix: make kubernetes provider version more permissive
This commit is contained in:
Shaun Cutts
2020-01-07 06:28:56 -05:00
committed by Max Williams
parent c17d17e2c2
commit d79c8ab6f2
4 changed files with 14 additions and 6 deletions

View File

@@ -53,7 +53,8 @@ data "template_file" "node_group_arns" {
}
resource "kubernetes_config_map" "aws_auth" {
count = var.create_eks && var.manage_aws_auth ? 1 : 0
depends_on = [aws_eks_cluster.this]
count = var.create_eks && var.manage_aws_auth ? 1 : 0
metadata {
name = "aws-auth"