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 {
197
197
/// This contains required options to customize a [`CustomResourceDefinitionMaintainer`].
198
198
pub struct CustomResourceDefinitionMaintainerOptions {
199
199
/// The service name used by the operator/conversion webhook.
200
- operator_service_name : String ,
200
+ pub operator_service_name : String ,
201
201
202
202
/// The namespace the operator/conversion webhook runs in.
203
- operator_namespace : String ,
203
+ pub operator_namespace : String ,
204
204
205
205
/// The name of the field manager used for the server-side apply.
206
- field_manager : String ,
206
+ pub field_manager : String ,
207
207
208
208
/// The HTTPS port the conversion webhook listens on.
209
- webhook_https_port : u16 ,
209
+ pub webhook_https_port : u16 ,
210
210
211
211
/// Indicates if the maintainer should be disabled.
212
- disabled : bool ,
212
+ pub disabled : bool ,
213
213
}
You can’t perform that action at this time.
0 commit comments