Skip to content

Commit c8d0621

Browse files
committed
fix(stackable-operator): Make options fields public
1 parent 362eb48 commit c8d0621

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

crates/stackable-operator/src/crd/maintainer.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -197,17 +197,17 @@ impl CustomResourceDefinitionMaintainer {
197197
/// This contains required options to customize a [`CustomResourceDefinitionMaintainer`].
198198
pub struct CustomResourceDefinitionMaintainerOptions {
199199
/// The service name used by the operator/conversion webhook.
200-
operator_service_name: String,
200+
pub operator_service_name: String,
201201

202202
/// The namespace the operator/conversion webhook runs in.
203-
operator_namespace: String,
203+
pub operator_namespace: String,
204204

205205
/// The name of the field manager used for the server-side apply.
206-
field_manager: String,
206+
pub field_manager: String,
207207

208208
/// The HTTPS port the conversion webhook listens on.
209-
webhook_https_port: u16,
209+
pub webhook_https_port: u16,
210210

211211
/// Indicates if the maintainer should be disabled.
212-
disabled: bool,
212+
pub disabled: bool,
213213
}

0 commit comments

Comments
 (0)