Skip to content

Commit 511131e

Browse files
committed
fix: spark connect image pull secrets not passed to executors
1 parent 7a8c2ee commit 511131e

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
### Fixed
8+
9+
- SparkConnectServer: imagePullSecret is not passed to Spark executor pods ([#603]).
10+
11+
[#603]: https://github.com/stackabletech/spark-k8s-operator/pull/603
12+
713
## [25.7.0] - 2025-07-23
814

915
## [25.7.0-rc1] - 2025-07-18

rust/operator-binary/src/connect/executor.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ pub fn executor_pod_template(
132132
let mut template = PodBuilder::new();
133133
template
134134
.metadata(metadata)
135+
.image_pull_secrets_from_product_image(resolved_product_image)
135136
.affinity(&config.affinity)
136137
.add_volume(
137138
VolumeBuilder::new(VOLUME_MOUNT_NAME_LOG)

0 commit comments

Comments
 (0)