Skip to content

Commit f0721bc

Browse files
committed
interfaces -> addresses
1 parent 6af1dfd commit f0721bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/stackable-webhook/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ All notable changes to this project will be documented in this file.
1111
### Changed
1212

1313
- BREAKING: The constant `DEFAULT_IP_ADDRESS` has been renamed to `DEFAULT_LISTEN_ADDRESS` and binds to all
14-
interfaces (instead of only loopback) by default. This was changed because all the webhooks
14+
addresses (instead of only loopback) by default. This was changed because all the webhooks
1515
deployed to Kubernetes (e.g. conversion or mutating - which this crate targets) need to be
1616
accessible by it, which is not the case when only using loopback ([#1045]).
1717

crates/stackable-webhook/src/constants.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use std::net::{IpAddr, Ipv4Addr, SocketAddr};
66
pub const DEFAULT_HTTPS_PORT: u16 = 8443;
77

88
/// The default IP address [`Ipv4Addr::UNSPECIFIED`] (`0.0.0.0`) the webhook server binds to,
9-
/// which represents binding on all network interfaces.
9+
/// which represents binding on all network addresses.
1010
pub const DEFAULT_LISTEN_ADDRESS: IpAddr = IpAddr::V4(Ipv4Addr::UNSPECIFIED);
1111

1212
/// The default socket address `0.0.0.0:8443` the webhook server binds to.

0 commit comments

Comments
 (0)