From 5873540f65c279bdd1131f864f0aa8edfe10b3d8 Mon Sep 17 00:00:00 2001 From: Malte Sander Date: Wed, 2 Oct 2024 09:53:24 +0200 Subject: [PATCH] Update rust/operator-binary/src/crd.rs Co-authored-by: Sebastian Bernauer --- rust/operator-binary/src/crd.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rust/operator-binary/src/crd.rs b/rust/operator-binary/src/crd.rs index 872dce40..a371592e 100644 --- a/rust/operator-binary/src/crd.rs +++ b/rust/operator-binary/src/crd.rs @@ -140,6 +140,8 @@ impl AutoTlsCa { #[serde(rename_all = "camelCase")] pub enum TlsKeyGeneration { Rsa { + /// The amount of bits used for key or certs. Currently, `2048`, `3072` and `4096` are + /// supported. Defaults to `2048` bits. #[schemars(schema_with = "TlsKeyGeneration::tls_key_length_schema")] length: u32, },