From 83fbe65bb386b32a287f6518b2cb0275bea96bf0 Mon Sep 17 00:00:00 2001 From: Joe Nathan Abellard Date: Fri, 28 Feb 2025 14:27:01 -0500 Subject: [PATCH] Add design doc Signed-off-by: Joe Nathan Abellard --- .../karmada-operator/custom-leaf-cert-validity/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/proposals/karmada-operator/custom-leaf-cert-validity/README.md b/docs/proposals/karmada-operator/custom-leaf-cert-validity/README.md index c68cd9d10..c5f2c3e2b 100644 --- a/docs/proposals/karmada-operator/custom-leaf-cert-validity/README.md +++ b/docs/proposals/karmada-operator/custom-leaf-cert-validity/README.md @@ -38,11 +38,10 @@ The proposal introduces a new optional field, `LeafCertValidity`, in the `Custom ### API Changes ```go -// CustomCertificate holds the configuration for generating the certificate. type CustomCertificate struct { // Other, existing fields omitted for brevity - // LeafCertValidity specifies the validity period of leaf certificates in days. + // LeafCertValidity specifies the validity period of leaf certificates (e.g., API Server certificate) in days. // If not specified, the default validity period of 1 year will be used. // +optional LeafCertValidity *int `json:"leafCertValidity,omitempty"`