Skip to content

Commit 7d82c52

Browse files
committed
sticky -> pinning
1 parent 23a9028 commit 7d82c52

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

crates/stackable-operator/CHANGELOG.md

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

77
### Added
88

9-
- BREAKING: Add new `ListenerClass.stickyNodePorts` field ([#1105]).
9+
- BREAKING: Add new `ListenerClass.pinningNodePorts` field ([#1105]).
1010

1111
[#1105]: https://github.com/stackabletech/operator-rs/pull/1105
1212

crates/stackable-operator/crds/ListenerClass.yaml

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/stackable-operator/src/crd/listener/class/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,15 @@ pub mod versioned {
7070
/// Wether or not a Pod exposed using a NodePort should be pinned to a specific Kubernetes node.
7171
///
7272
/// By pinning the Pod to a specific (stable) Kubernetes node, stable addresses can be
73-
/// provided using NodePorts. The stickiness is achieved by listener-operator setting the
73+
/// provided using NodePorts. The pinning is achieved by listener-operator setting the
7474
/// `volume.kubernetes.io/selected-node` annotation on the Listener PVC.
7575
///
7676
/// However, this only works on setups with long-living nodes. If your nodes are rotated on
7777
/// a regular basis, the Pods previously running on a removed node will be stuck in Pending
78-
/// until you delete the PVC with the stickiness.
78+
/// until you delete the PVC with the pinning.
7979
///
80-
/// Because of this we don't enable stickiness by default to support all environments.
80+
/// Because of this we don't enable pinning by default to support all environments.
8181
#[serde(default)]
82-
pub sticky_node_ports: bool,
82+
pub pinning_node_ports: bool,
8383
}
8484
}

0 commit comments

Comments
 (0)