|
12 | 12 |
|
13 | 13 | [](https://github.com/kubernetes-sigs/external-dns/actions) |
14 | 14 | [](https://coveralls.io/github/kubernetes-sigs/external-dns) |
| 15 | +[](https://scorecard.dev/viewer/?uri=github.com/kubernetes-sigs/external-dns) |
15 | 16 | [](https://github.com/kubernetes-sigs/external-dns/releases) |
16 | 17 | [](https://godoc.org/github.com/kubernetes-sigs/external-dns) |
17 | 18 | [](https://goreportcard.com/report/github.com/kubernetes-sigs/external-dns) |
@@ -111,10 +112,12 @@ from the usage of any externally developed webhook. |
111 | 112 | | Netic | https://github.com/neticdk/external-dns-tidydns-webhook | |
112 | 113 | | OpenStack Designate | https://github.com/inovex/external-dns-designate-webhook | |
113 | 114 | | OpenWRT | https://github.com/renanqts/external-dns-openwrt-webhook | |
| 115 | +| Porkbun | https://github.com/mattgmoser/external-dns-porkbun-webhook | |
114 | 116 | | PS Cloud Services | https://github.com/supervillain3000/external-dns-pscloud-webhook | |
115 | 117 | | SAKURA Cloud | https://github.com/sacloud/external-dns-sacloud-webhook | |
116 | 118 | | Simply | https://github.com/uozalp/external-dns-simply-webhook | |
117 | 119 | | STACKIT | https://github.com/stackitcloud/external-dns-stackit-webhook | |
| 120 | +| Tencent Cloud | https://github.com/tkestack/external-dns-tencentcloud-webhook | |
118 | 121 | | Unbound | https://github.com/guillomep/external-dns-unbound-webhook | |
119 | 122 | | Unifi | https://github.com/kashalls/external-dns-unifi-webhook | |
120 | 123 | | UniFi | https://github.com/lexfrei/external-dns-unifios-webhook | |
@@ -248,21 +251,21 @@ kubectl expose pod nginx --port=80 --target-port=80 --type=LoadBalancer |
248 | 251 | Annotate the Service with your desired external DNS name. Make sure to change `example.org` to your domain. |
249 | 252 |
|
250 | 253 | ```console |
251 | | -kubectl annotate service nginx "external-dns.alpha.kubernetes.io/hostname=nginx.example.org." |
| 254 | +kubectl annotate service nginx "external-dns.kubernetes.io/hostname=nginx.example.org." |
252 | 255 | ``` |
253 | 256 |
|
254 | | -Optionally, you can customize the TTL value of the resulting DNS record by using the `external-dns.alpha.kubernetes.io/ttl` annotation: |
| 257 | +Optionally, you can customize the TTL value of the resulting DNS record by using the `external-dns.kubernetes.io/ttl` annotation: |
255 | 258 |
|
256 | 259 | ```console |
257 | | -kubectl annotate service nginx "external-dns.alpha.kubernetes.io/ttl=10" |
| 260 | +kubectl annotate service nginx "external-dns.kubernetes.io/ttl=10" |
258 | 261 | ``` |
259 | 262 |
|
260 | 263 | For more details on configuring TTL, see [advanced ttl](docs/advanced/ttl.md). |
261 | 264 |
|
262 | 265 | Use the internal-hostname annotation to create DNS records with ClusterIP as the target. |
263 | 266 |
|
264 | 267 | ```console |
265 | | -kubectl annotate service nginx "external-dns.alpha.kubernetes.io/internal-hostname=nginx.internal.example.org." |
| 268 | +kubectl annotate service nginx "external-dns.kubernetes.io/internal-hostname=nginx.internal.example.org." |
266 | 269 | ``` |
267 | 270 |
|
268 | 271 | If the service is not of type Loadbalancer you need the --publish-internal-services flag. |
|
0 commit comments