diff --git a/docs/contributing/getting-started.md b/docs/contributing/getting-started.md index 11a240ce3..cccfd7223 100644 --- a/docs/contributing/getting-started.md +++ b/docs/contributing/getting-started.md @@ -52,7 +52,7 @@ Note, how your provider doesn't need to know anything about where the DNS record # Running Github Actions locally You can also extend the CI workflow which is currently implemented as Github Action within the [workflow](https://github.com/kubernetes-sigs/external-dns/tree/HEAD/.github/workflows) folder. -In order to test your changes before commiting you can leverage [act](https://github.com/nektos/act) to run the Github Action locally. +In order to test your changes before committing you can leverage [act](https://github.com/nektos/act) to run the Github Action locally. Follow the installation instructions in the nektos/act [README.md](https://github.com/nektos/act/blob/master/README.md). Afterwards just run `act` within the root folder of the project. diff --git a/docs/tutorials/hostport.md b/docs/tutorials/hostport.md index b3f1c1273..ea9e8af4a 100644 --- a/docs/tutorials/hostport.md +++ b/docs/tutorials/hostport.md @@ -188,7 +188,7 @@ kafka-1.example.org kafka-2.example.org ``` -If you set `--fqdn-template={{name}}.example.org` you can ommit the annotation. +If you set `--fqdn-template={{name}}.example.org` you can omit the annotation. Generally it is a better approach to use `--fqdn-template={{name}}.example.org`, because then you would get the service name inside the generated A records: diff --git a/docs/tutorials/kube-ingress-aws.md b/docs/tutorials/kube-ingress-aws.md index 266cf4159..27ea646f4 100644 --- a/docs/tutorials/kube-ingress-aws.md +++ b/docs/tutorials/kube-ingress-aws.md @@ -269,7 +269,7 @@ status: ``` ExternalDNS will create a A-records `echoserver.example.org`, that -use AWS ALIAS record to automatically maintain IP adresses of the NLB. +use AWS ALIAS record to automatically maintain IP addresses of the NLB. ## RouteGroup (optional) diff --git a/source/httpproxy.go b/source/httpproxy.go index ea705c937..257cc2203 100644 --- a/source/httpproxy.go +++ b/source/httpproxy.go @@ -128,13 +128,13 @@ func (sc *httpProxySource) Endpoints(ctx context.Context) ([]*endpoint.Endpoint, // Convert to []*projectcontour.HTTPProxy var httpProxies []*projectcontour.HTTPProxy for _, hp := range hps { - unstrucuredHP, ok := hp.(*unstructured.Unstructured) + unstructuredHP, ok := hp.(*unstructured.Unstructured) if !ok { return nil, errors.New("could not convert") } hpConverted := &projectcontour.HTTPProxy{} - err := sc.unstructuredConverter.scheme.Convert(unstrucuredHP, hpConverted, nil) + err := sc.unstructuredConverter.scheme.Convert(unstructuredHP, hpConverted, nil) if err != nil { return nil, errors.Wrap(err, "failed to convert to HTTPProxy") }