Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

### Fixed

- SparkConnectServer: The `imagePullSecret` is now correctly passed to Spark executor pods ([#603]).

[#603]: https://github.com/stackabletech/spark-k8s-operator/pull/603

## [25.7.0] - 2025-07-23

## [25.7.0-rc1] - 2025-07-18
Expand Down
1 change: 1 addition & 0 deletions rust/operator-binary/src/connect/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ pub fn executor_pod_template(
let mut template = PodBuilder::new();
template
.metadata(metadata)
.image_pull_secrets_from_product_image(resolved_product_image)
.affinity(&config.affinity)
.add_volume(
VolumeBuilder::new(VOLUME_MOUNT_NAME_LOG)
Expand Down