From d54b37e6300cf771b5f76efe25a1db718000c936 Mon Sep 17 00:00:00 2001 From: Ken Cochrane Date: Fri, 13 Jan 2017 13:35:12 -0800 Subject: [PATCH] Changed the ELB health check from TCP to HTTP (#631) Signed-off-by: Ken Cochrane --- aws/cloudformation/docker_for_aws.json | 2 +- aws/cloudformation/docker_for_aws_cloud.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aws/cloudformation/docker_for_aws.json b/aws/cloudformation/docker_for_aws.json index 564bf95a8..a4feb974c 100644 --- a/aws/cloudformation/docker_for_aws.json +++ b/aws/cloudformation/docker_for_aws.json @@ -1056,7 +1056,7 @@ "HealthCheck" : { "HealthyThreshold" : "2", "Interval" : "10", - "Target" : "TCP:44554", + "Target" : "HTTP:44554/", "Timeout" : "2", "UnhealthyThreshold" : "4" }, diff --git a/aws/cloudformation/docker_for_aws_cloud.json b/aws/cloudformation/docker_for_aws_cloud.json index 4b4e5fd98..a0b2c9a90 100644 --- a/aws/cloudformation/docker_for_aws_cloud.json +++ b/aws/cloudformation/docker_for_aws_cloud.json @@ -808,7 +808,7 @@ "HealthCheck" : { "HealthyThreshold" : "2", "Interval" : "10", - "Target" : "TCP:2375", + "Target" : "HTTP:44554/", "Timeout" : "2", "UnhealthyThreshold" : "4" },