Skip to content

Commit 16cfe63

Browse files
committed
precommit format update
1 parent 8116aee commit 16cfe63

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,4 +198,4 @@
198198
distributed under the License is distributed on an "AS IS" BASIS,
199199
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200200
See the License for the specific language governing permissions and
201-
limitations under the License.
201+
limitations under the License.

NOTICE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ Licensed under the Apache License, Version 2.0 (the "License"). You may not use
44

55
http://aws.amazon.com/apache2.0/
66

7-
or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
7+
or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

docs/add-ons/external-dns.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ExternalDNS
22

3-
[External DNS](https://github.com/kubernetes-sigs/external-dns) is a Kubernetes add-on that can automate the management of DNS records based on Ingress and Service resources.
3+
[External DNS](https://github.com/kubernetes-sigs/external-dns) is a Kubernetes add-on that can automate the management of DNS records based on Ingress and Service resources.
44

55
For complete project documentation, please visit the [External DNS Github repository](https://github.com/kubernetes-sigs/external-dns).
66

examples/eks-cluster-with-external-dns/README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
# EKS Cluster with External DNS
22

3-
This example demonstrates how to leverage External DNS, in concert with Ingress Nginx and AWS Load Balancer Controller. It demonstrates how you can easily provision multiple services with secure, custom domains which sit behind a single load balancer.
3+
This example demonstrates how to leverage External DNS, in concert with Ingress Nginx and AWS Load Balancer Controller. It demonstrates how you can easily provision multiple services with secure, custom domains which sit behind a single load balancer.
44

55
The pattern deploys the sample workloads that reside in the [EKS Blueprints Workloads repo](https://github.com/aws-samples/eks-blueprints-workloads) via ArgoCD. The [configuration for `team-riker`](https://github.com/aws-samples/eks-blueprints-workloads/tree/main/teams/team-riker/dev/templates) will deploy an Ingress resource which contains configuration for both path-based routing and the custom hostname for the `team-riker` service. Once the pattern is deployed, you will be able to reach the `team-riker` sample workload via a custom domain you supply.
66

77
## How to Deploy
88

99
### Prerequisites:
1010

11-
#### Tools
11+
#### Tools
1212

1313
Ensure that you have installed the following tools in your Mac or Windows Laptop before start working with this module and run Terraform Plan and Apply
1414
1. [AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2.html)
1515
3. [Kubectl](https://Kubernetes.io/docs/tasks/tools/)
1616
4. [Terraform](https://learn.hashicorp.com/tutorials/terraform/install-cli)
1717

18-
#### AWS Resources
18+
#### AWS Resources
1919

2020
This example requires the following AWS resources:
2121

22-
* A Route53 Hosted Zone for a domain that you own.
23-
* A SSL/TLS certificate for your domain stored in AWS Certificate Manager (ACM).
24-
25-
For information on Route53 Hosted Zones, [see Route53 documentation](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/hosted-zones-working-with.html). For instructions on requesting a SSL/TLS certificate for your domain, see [ACM docs](https://docs.aws.amazon.com/acm/latest/userguide/gs.html).
22+
* A Route53 Hosted Zone for a domain that you own.
23+
* A SSL/TLS certificate for your domain stored in AWS Certificate Manager (ACM).
24+
25+
For information on Route53 Hosted Zones, [see Route53 documentation](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/hosted-zones-working-with.html). For instructions on requesting a SSL/TLS certificate for your domain, see [ACM docs](https://docs.aws.amazon.com/acm/latest/userguide/gs.html).
2626

2727
### Deployment Steps
2828

@@ -43,7 +43,7 @@ terraform init
4343

4444
#### Step3: Replace placeholder values in terraform.tfvars
4545

46-
Both values in `terraform.tfvars` must be updated.
46+
Both values in `terraform.tfvars` must be updated.
4747

4848
* `eks_cluster_domain` - the domain for your cluster. Value is used to look up a Route53 Hosted Zone that you own. DNS records created by `ExternalDNS` will be created in this Hosted Zone.
4949
* `acm_certificate_domain` - the domain for a certificate in ACM that will be leveraged by `Ingress Nginx`. Value is used to look up an ACM certificate that will be used to terminate HTTPS connections. This value should likely be a wildcard cert for your `eks_cluster_domain`.
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
clusterName: ${eks_cluster_id}
2-
region: ${aws_region}
2+
region: ${aws_region}

modules/kubernetes-addons/external-dns/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Introduction
44

5-
[External DNS](https://github.com/kubernetes-sigs/external-dns) is a Kubernetes add-on that can automate the management of DNS records based on Ingress and Service resources.
5+
[External DNS](https://github.com/kubernetes-sigs/external-dns) is a Kubernetes add-on that can automate the management of DNS records based on Ingress and Service resources.
66

77
For complete project documentation, please visit the [ExternalDNS Github repository](https://github.com/kubernetes-sigs/external-dns).
88

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
provider: aws
22
zoneIdFilters: ${zone_filter_ids}
33
aws:
4-
region: ${aws_region}
4+
region: ${aws_region}

modules/kubernetes-addons/traefik/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ resource "kubernetes_namespace_v1" "this" {
1616
"app.kubernetes.io/managed-by" = "terraform-eks-blueprints"
1717
}
1818
}
19-
}
19+
}

0 commit comments

Comments
 (0)