File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
crates/stackable-operator/src/crd Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -197,17 +197,17 @@ impl CustomResourceDefinitionMaintainer {
197197/// This contains required options to customize a [`CustomResourceDefinitionMaintainer`].
198198pub 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}
You can’t perform that action at this time.
0 commit comments