From 23a8156bdf28ce845637df176fb94ccff3a86353 Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Sun, 15 Apr 2018 17:21:49 -0700 Subject: [PATCH] Fix a few typos in comments --- aws/container-linux/kubernetes/apiserver.tf | 6 +++--- aws/container-linux/kubernetes/workers/ingress.tf | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/aws/container-linux/kubernetes/apiserver.tf b/aws/container-linux/kubernetes/apiserver.tf index f29d1f8d..8cc5eed6 100644 --- a/aws/container-linux/kubernetes/apiserver.tf +++ b/aws/container-linux/kubernetes/apiserver.tf @@ -1,4 +1,4 @@ -# kube-apiserver Network Load Balancer DNS Record +# Network Load Balancer DNS Record resource "aws_route53_record" "apiserver" { zone_id = "${var.dns_zone_id}" @@ -24,7 +24,7 @@ resource "aws_lb" "apiserver" { enable_cross_zone_load_balancing = true } -# Forward HTTP traffic to controllers +# Forward TCP traffic to controllers resource "aws_lb_listener" "apiserver-https" { load_balancer_arn = "${aws_lb.apiserver.arn}" protocol = "TCP" @@ -45,7 +45,7 @@ resource "aws_lb_target_group" "controllers" { protocol = "TCP" port = 443 - # Kubelet HTTP health check + # TCP health check for apiserver health_check { protocol = "TCP" port = 443 diff --git a/aws/container-linux/kubernetes/workers/ingress.tf b/aws/container-linux/kubernetes/workers/ingress.tf index 6e1599c3..64810efa 100644 --- a/aws/container-linux/kubernetes/workers/ingress.tf +++ b/aws/container-linux/kubernetes/workers/ingress.tf @@ -43,7 +43,7 @@ resource "aws_lb_target_group" "workers-http" { protocol = "TCP" port = 80 - # Ingress Controller HTTP health check + # HTTP health check for ingress health_check { protocol = "HTTP" port = 10254 @@ -66,7 +66,7 @@ resource "aws_lb_target_group" "workers-https" { protocol = "TCP" port = 443 - # Ingress Controller HTTP health check + # HTTP health check for ingress health_check { protocol = "HTTP" port = 10254