Skip to content

Commit 1b257d3

Browse files
committed
docs docs docs
1 parent 69603ca commit 1b257d3

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

crates/stackable-webhook/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ pub struct WebhookServer {
8282
cert_rx: mpsc::Receiver<Certificate>,
8383
}
8484

85+
/// Configuration of a [`WebhookServer`], which is passed to [`WebhookServer::new`]
8586
#[derive(Clone, Debug)]
8687
pub struct WebhookServerOptions {
8788
/// The HTTPS socket address the [`TcpListener`][tokio::net::TcpListener] binds to.

crates/stackable-webhook/src/webhooks/conversion_webhook.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ pub struct ConversionWebhook<H> {
9898
initial_reconcile_tx: Option<oneshot::Sender<()>>,
9999
}
100100

101+
/// Configuration of a [`ConversionWebhook`], which is passed to [`ConversionWebhook::new`]
101102
pub struct ConversionWebhookOptions {
102103
/// Whether CRDs should be maintained
103104
pub disable_crd_maintenance: bool,

crates/stackable-webhook/src/webhooks/mutating_webhook.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ pub struct MutatingWebhook<H, S, R> {
121121
client: Client,
122122
}
123123

124+
/// Configuration of a [`MutatingWebhook`], which is passed to [`MutatingWebhook::new`]
124125
pub struct MutatingWebhookOptions {
125126
/// Whether MutatingWebhookConfigurations should be maintained
126127
pub disable_mwc_maintenance: bool,

0 commit comments

Comments
 (0)