From 4595e0d5ef9c681ec8e9184d2f67dcdd5fc369b5 Mon Sep 17 00:00:00 2001 From: Michael Shen Date: Thu, 15 Aug 2024 22:37:10 -0400 Subject: [PATCH] Annotation key/value pairs must be strings As-is, following the docs results in the following error: ``` json: cannot unmarshal number into Go struct field ObjectMeta.metadata.annotations of type string ``` Signed-off-by: Michael Shen --- docs/tutorials/aws-sd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/aws-sd.md b/docs/tutorials/aws-sd.md index 5f0eb76c19..9741b5f9d4 100644 --- a/docs/tutorials/aws-sd.md +++ b/docs/tutorials/aws-sd.md @@ -221,7 +221,7 @@ metadata: name: nginx annotations: external-dns.alpha.kubernetes.io/hostname: nginx.external-dns-test.my-org.com - external-dns.alpha.kubernetes.io/ttl: 60 + external-dns.alpha.kubernetes.io/ttl: "60" spec: ... ```