sigs.k8s.io/external-dns@v0.14.1/docs/tutorials/ns-record.md (about)

     1  # Creating NS record with CRD source
     2  
     3  You can create NS records with the help of [CRD source](/docs/contributing/crd-source.md)
     4  and `DNSEndpoint` CRD.
     5  
     6  Consider the following example
     7  
     8  ```yaml
     9  apiVersion: externaldns.k8s.io/v1alpha1
    10  kind: DNSEndpoint
    11  metadata:
    12    name: ns-record
    13  spec:
    14    endpoints:
    15    - dnsName: zone.example.com
    16      recordTTL: 300
    17      recordType: NS
    18      targets:
    19      - ns1.example.com
    20      - ns2.example.com
    21  ```
    22  
    23  After instantiation of this Custom Resource external-dns will create NS record with the help of configured provider, e.g. `aws`