Skip to content

fix: spark connect image pull secrets not passed to executors #603

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 15, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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: imagePullSecret is not 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