From f0c5fad47f173c3306fd7c2c517d63d5fb003eb1 Mon Sep 17 00:00:00 2001 From: Andrew Kenworthy <1712947+adwk67@users.noreply.github.com> Date: Fri, 27 Sep 2024 11:36:07 +0200 Subject: [PATCH] Update crates/stackable-operator/src/commons/authentication/kerberos.rs Co-authored-by: Sebastian Bernauer --- .../stackable-operator/src/commons/authentication/kerberos.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/stackable-operator/src/commons/authentication/kerberos.rs b/crates/stackable-operator/src/commons/authentication/kerberos.rs index 412a9e8b..fd78eef7 100644 --- a/crates/stackable-operator/src/commons/authentication/kerberos.rs +++ b/crates/stackable-operator/src/commons/authentication/kerberos.rs @@ -6,7 +6,7 @@ use serde::{Deserialize, Serialize}; )] #[serde(rename_all = "camelCase")] pub struct AuthenticationProvider { - /// Mandatory secret class used for producing keytabs. + /// Mandatory SecretClass used to obtain keytabs. #[serde(default)] pub kerberos_secret_class: String, }