diff --git a/config/samples/dns_v1alpha1_technitiumauthority.yaml b/config/samples/dns_v1alpha1_technitiumauthority.yaml index fd214c4..9d60c50 100644 --- a/config/samples/dns_v1alpha1_technitiumauthority.yaml +++ b/config/samples/dns_v1alpha1_technitiumauthority.yaml @@ -6,4 +6,25 @@ metadata: app.kubernetes.io/managed-by: kustomize name: technitiumauthority-sample spec: - # TODO(user): Add fields here + zone: example.com + primary: + endpoint: https://tech-primary.example.com + apiKeySecretRef: + name: technitium-auth + key: apiKey-ns1 + secondaries: + - endpoint: https://tech-secondary.example.com + apiKeySecretRef: + name: technitium-auth + key: apiKey-ns2 + dnsApp.config: | + { + "enableAddressTranslation": true, + "networks": { + "vpn": [ + "10.101.0.0/16" + ] + }, + "networkGroupMap": {}, + "groups": [] + } diff --git a/config/samples/dns_v1alpha1_technitiumrecord.yaml b/config/samples/dns_v1alpha1_technitiumrecord.yaml index 600bb6b..1b8958e 100644 --- a/config/samples/dns_v1alpha1_technitiumrecord.yaml +++ b/config/samples/dns_v1alpha1_technitiumrecord.yaml @@ -6,4 +6,15 @@ metadata: app.kubernetes.io/managed-by: kustomize name: technitiumrecord-sample spec: - # TODO(user): Add fields here + authorityRef: + name: technitiumauthority-sample + + name: app + ttl: 3600 + classPath: SimpleAddress + + recordData: + public: + - 93.184.216.34 + vpn: + - 10.0.0.99 \ No newline at end of file