Skip to content

Commit 6e4c309

Browse files
committed
Expose ZOOKEEPER_CLIENT_PORT in discovery CM (#676)
# Description Fixup #675
1 parent 1ff4ac2 commit 6e4c309

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ All notable changes to this project will be documented in this file.
77
### Added
88

99
- Generate OLM bundle for Release 23.4.0 ([#672]).
10-
- Expose `ZOOKEEPER_PORT` in discovery CM ([#675]).
10+
- Expose `ZOOKEEPER_CLIENT_PORT` in discovery CM ([#675], [#676]).
1111

1212
### Changed
1313

@@ -19,6 +19,7 @@ All notable changes to this project will be documented in this file.
1919
[#673]: https://github.com/stackabletech/zookeeper-operator/pull/673
2020
[#674]: https://github.com/stackabletech/zookeeper-operator/pull/674
2121
[#675]: https://github.com/stackabletech/zookeeper-operator/pull/675
22+
[#676]: https://github.com/stackabletech/zookeeper-operator/pull/676
2223

2324
## [23.4.0] - 2023-04-17
2425

rust/operator-binary/src/discovery.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ fn build_discovery_configmap(
142142
// Some clients don't support ZooKeeper's merged `hosts/chroot` format, so export them separately for these clients
143143
.add_data("ZOOKEEPER_HOSTS", hosts)
144144
.add_data(
145-
"ZOOKEEPER_PORT",
145+
"ZOOKEEPER_CLIENT_PORT",
146146
zookeeper_security.client_port().to_string(),
147147
)
148148
.add_data("ZOOKEEPER_CHROOT", chroot.unwrap_or("/"))

0 commit comments

Comments
 (0)