Skip to content

Commit 5f6c983

Browse files
authored
chore: Add spark 4.1.2 (#708)
* Adding 4.1.2 to supported versions * Update Changelog and LTS version for 26.7 * Typo and remove test leftover
1 parent 85e3b24 commit 5f6c983

14 files changed

Lines changed: 25 additions & 17 deletions

CHANGELOG.md

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

99
- BREAKING: Add required CLI argument and env var to set the image repository used to construct final product image names: `IMAGE_REPOSITORY` (`--image-repository`), eg. `oci.example.org/my/namespace` ([#684]).
10+
- Support for Spark `4.1.2` ([#708])
1011

1112
### Fixed
1213

@@ -36,6 +37,7 @@ All notable changes to this project will be documented in this file.
3637
[#694]: https://github.com/stackabletech/spark-k8s-operator/pull/694
3738
[#696]: https://github.com/stackabletech/spark-k8s-operator/pull/696
3839
[#705]: https://github.com/stackabletech/spark-k8s-operator/pull/705
40+
[#708]: https://github.com/stackabletech/spark-k8s-operator/pull/708
3941

4042
## [26.3.0] - 2026-03-16
4143

docs/modules/spark-k8s/examples/example-history-app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: spark-pi-s3-1
66
spec:
77
sparkImage:
8-
productVersion: 4.1.1
8+
productVersion: 4.1.2
99
pullPolicy: IfNotPresent
1010
mode: cluster
1111
mainClass: org.apache.spark.examples.SparkPi

docs/modules/spark-k8s/examples/example-history-server.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: spark-history
66
spec:
77
image:
8-
productVersion: 4.1.1
8+
productVersion: 4.1.2
99
logFileDirectory: # <1>
1010
s3:
1111
prefix: eventlogs/ # <2>

docs/modules/spark-k8s/examples/example-sparkapp-configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
namespace: default
77
spec:
88
sparkImage:
9-
productVersion: 4.1.1
9+
productVersion: 4.1.2
1010
mode: cluster
1111
mainApplicationFile: s3a://stackable-spark-k8s-jars/jobs/ny-tlc-report-1.1.0.jar # <3>
1212
mainClass: tech.stackable.demo.spark.NYTLCReport

docs/modules/spark-k8s/examples/example-sparkapp-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
spec:
88
image: oci.stackable.tech/stackable/ny-tlc-report:0.2.0 # <1>
99
sparkImage:
10-
productVersion: 4.1.1
10+
productVersion: 4.1.2
1111
mode: cluster
1212
mainApplicationFile: local:///stackable/spark/jobs/ny_tlc_report.py # <2>
1313
args:

docs/modules/spark-k8s/examples/example-sparkapp-pvc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
namespace: default
77
spec:
88
sparkImage:
9-
productVersion: 4.1.1
9+
productVersion: 4.1.2
1010
mode: cluster
1111
mainApplicationFile: s3a://my-bucket/app.jar # <1>
1212
mainClass: org.example.App # <2>

docs/modules/spark-k8s/examples/example-sparkapp-s3-private.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: example-sparkapp-s3-private
66
spec:
77
sparkImage:
8-
productVersion: 4.1.1
8+
productVersion: 4.1.2
99
mode: cluster
1010
mainApplicationFile: s3a://my-bucket/spark-examples.jar # <1>
1111
mainClass: org.apache.spark.examples.SparkPi # <2>

docs/modules/spark-k8s/examples/example-sparkapp-streaming.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
namespace: default
77
spec:
88
sparkImage:
9-
productVersion: 4.1.1
9+
productVersion: 4.1.2
1010
mode: cluster
1111
mainApplicationFile: local:///stackable/spark/examples/src/main/python/streaming/hdfs_wordcount.py
1212
args:

docs/modules/spark-k8s/examples/getting_started/application.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
namespace: default
77
spec:
88
sparkImage: # <2>
9-
productVersion: 4.1.1
9+
productVersion: 4.1.2
1010
mode: cluster # <3>
1111
mainApplicationFile: local:///stackable/spark/examples/src/main/python/pi.py # <4>
1212
job: # <5>

docs/modules/spark-k8s/pages/usage-guide/operations/pod-placement.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec:
2222
mode: cluster
2323
mainApplicationFile: app.jar
2424
sparkImage:
25-
productVersion: 4.1.1
25+
productVersion: 4.1.2
2626
job:
2727
config:
2828
affinity: # <2>

0 commit comments

Comments
 (0)