From 304956d009b5b12f84c678456b9913913cc4d1ba Mon Sep 17 00:00:00 2001 From: lukasmetzner Date: Mon, 21 Jul 2025 13:28:42 +0200 Subject: [PATCH] docs: fix certificate name plural All domains specified via the annotation `load-balancer.hetzner.cloud/http-managed-certificate-domains`, are used to create a single managed certificate. Therefore, we only the annotation `load-balancer.hetzner.cloud/http-managed-certificate-name` only accepts one name. Additionally, fixed a small typo. --- internal/annotation/load_balancer.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/annotation/load_balancer.go b/internal/annotation/load_balancer.go index 8c48f64ba..d5dcd1845 100644 --- a/internal/annotation/load_balancer.go +++ b/internal/annotation/load_balancer.go @@ -129,7 +129,7 @@ const ( // HTTPS only. LBSvcHTTPCertificates Name = "load-balancer.hetzner.cloud/http-certificates" - // LBSvcHTTPManagedCertificateName contains the names of the managed + // LBSvcHTTPManagedCertificateName contains the name of the managed // certificate to create by the Cloud Controller manager. Ignored if // LBSvcHTTPCertificateType is missing or set to "uploaded". Optional. LBSvcHTTPManagedCertificateName Name = "load-balancer.hetzner.cloud/http-managed-certificate-name" @@ -142,7 +142,7 @@ const ( // remains or continues to function as it currently functions. LBSvcHTTPManagedCertificateUseACMEStaging Name = "load-balancer.hetzner.cloud/http-managed-certificate-acme-staging" - // LBSvcHTTPManagedCertificateDomains contains a coma separated list of the + // LBSvcHTTPManagedCertificateDomains contains a comma separated list of the // domain names of the managed certificate. // // All domains are used to create a single managed certificate.