External-dns: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=External= * https://github.com/helm/charts/tree/master/stable/external-dns =Internal= * Kubernetes DNS Concepts =Overview=")
 
Line 6: Line 6:


=Overview=
=Overview=
One single deployment can serve multiple services in different namespaces.
=Installation=
<syntaxhighlight lang='bash'>
helm repo add bitnami https://charts.bitnami.com/bitnami
helm install -n default external-dns bitnami/external-dns -f ./external-dns-overaly.yaml
</syntaxhighlight>
=Configuration=
<syntaxhighlight lang='yaml'>
aws:
  region: us-west-2
registry: txt
policy: upsert-only
txtOwnerId: "Z0000000000000000000"
sources:
  - service
  - ingress
domainFilters:
  - example.com
</syntaxhighlight>

Revision as of 21:04, 12 November 2020

External

Internal

Overview

One single deployment can serve multiple services in different namespaces.

Installation

helm repo add bitnami https://charts.bitnami.com/bitnami
helm install -n default external-dns bitnami/external-dns -f ./external-dns-overaly.yaml

Configuration

aws:
  region: us-west-2
registry: txt
policy: upsert-only
txtOwnerId: "Z0000000000000000000"
sources:
  - service
  - ingress
domainFilters:
  - example.com