We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8605f2 commit 12f152eCopy full SHA for 12f152e
1 file changed
rust/operator-binary/src/controller/mod.rs
@@ -1,6 +1,3 @@
1
-//! Controller-level vocabulary: the [`ValidatedCluster`] type produced by the [`validate`] step
2
-//! and consumed by the [`build`] steps, plus the `dereference` / `validate` / `build` sub-modules.
3
-
4
use std::{collections::BTreeMap, str::FromStr};
5
6
use stackable_operator::{
@@ -178,9 +175,6 @@ impl ValidatedCluster {
178
175
}
179
176
180
177
/// The user-provided server TLS SecretClass, if any.
181
- ///
182
- /// Mirrors [`v1alpha1::TrinoCluster::get_server_tls`] but reads from the validated config so
183
- /// build steps don't need the raw cluster.
184
pub fn get_server_tls(&self) -> Option<&str> {
185
self.cluster_config.tls.server.as_deref()
186
0 commit comments