From 8fd846593fe19372f13f55d3c54e141d0c9bb7ec Mon Sep 17 00:00:00 2001 From: Hyeonmin Park Date: Thu, 24 Nov 2022 17:59:54 +0900 Subject: [PATCH] Fix typo: service type ClusterIP capitalization --- docs/contributing/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/getting-started.md b/docs/contributing/getting-started.md index 77c64b8e1..43c5db69e 100644 --- a/docs/contributing/getting-started.md +++ b/docs/contributing/getting-started.md @@ -31,7 +31,7 @@ make build.docker ExternalDNS's sources of DNS records live in package [source](../../source). They implement the `Source` interface that has a single method `Endpoints` which returns the represented source's objects converted to `Endpoints`. Endpoints are just a tuple of DNS name and target where target can be an IP or another hostname. -For example, the `ServiceSource` returns all Services converted to `Endpoints` where the hostname is the value of the `external-dns.alpha.kubernetes.io/hostname` annotation and the target is the IP of the load balancer or where the hostname is the value of the `external-dns.alpha.kubernetes.io/internal-hostname` annotation and the target is the IP of the service CLusterIP. +For example, the `ServiceSource` returns all Services converted to `Endpoints` where the hostname is the value of the `external-dns.alpha.kubernetes.io/hostname` annotation and the target is the IP of the load balancer or where the hostname is the value of the `external-dns.alpha.kubernetes.io/internal-hostname` annotation and the target is the IP of the service ClusterIP. This list of endpoints is passed to the [Plan](../../plan) which determines the difference between the current DNS records and the desired list of `Endpoints`.