File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
rust/operator-binary/src/connect Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
5
5
## [ Unreleased]
6
6
7
+ ### Fixed
8
+
9
+ - SparkConnectServer: The ` imagePullSecret ` is now correctly passed to Spark executor pods ([ #603 ] ).
10
+
11
+ [ #603 ] : https://github.com/stackabletech/spark-k8s-operator/pull/603
12
+
7
13
## [ 25.7.0] - 2025-07-23
8
14
9
15
## [ 25.7.0-rc1] - 2025-07-18
Original file line number Diff line number Diff line change @@ -132,6 +132,7 @@ pub fn executor_pod_template(
132
132
let mut template = PodBuilder :: new ( ) ;
133
133
template
134
134
. metadata ( metadata)
135
+ . image_pull_secrets_from_product_image ( resolved_product_image)
135
136
. affinity ( & config. affinity )
136
137
. add_volume (
137
138
VolumeBuilder :: new ( VOLUME_MOUNT_NAME_LOG )
You can’t perform that action at this time.
0 commit comments