Release 8.0.0 (#662)

* Release 8.0.0

* Update changelog

* remove 'defauls' node group

* Make curl silent
This commit is contained in:
Max Williams
2020-01-09 14:10:47 +01:00
committed by GitHub
parent 11147e9af3
commit a9db852d44
4 changed files with 11 additions and 6 deletions

View File

@@ -33,7 +33,7 @@ resource "aws_eks_cluster" "this" {
]
provisioner "local-exec" {
command = <<EOT
until curl -k ${aws_eks_cluster.this[0].endpoint}/healthz >/dev/null; do sleep 4; done
until curl -k -s ${aws_eks_cluster.this[0].endpoint}/healthz >/dev/null; do sleep 4; done
EOT
}
}