Skip to content
Closed
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#

ARG SPARK_IMAGE=spark:3.5.0
ARG SPARK_IMAGE=spark:3.5.1

FROM golang:1.22-alpine as builder

Expand Down
4 changes: 2 additions & 2 deletions charts/spark-operator-chart/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
name: spark-operator
description: A Helm chart for Spark on Kubernetes operator
version: 1.2.15
appVersion: v1beta2-1.4.6-3.5.0
version: 1.2.16
appVersion: v1beta2-1.4.6-3.5.1
keywords:
- spark
home: https://github.com/kubeflow/spark-operator
Expand Down
2 changes: 1 addition & 1 deletion charts/spark-operator-chart/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# spark-operator

![Version: 1.2.15](https://img.shields.io/badge/Version-1.2.15-informational?style=flat-square) ![AppVersion: v1beta2-1.4.6-3.5.0](https://img.shields.io/badge/AppVersion-v1beta2--1.4.6--3.5.0-informational?style=flat-square)
![Version: 1.2.16](https://img.shields.io/badge/Version-1.2.16-informational?style=flat-square) ![AppVersion: v1beta2-1.4.6-3.5.1](https://img.shields.io/badge/AppVersion-v1beta2--1.4.6--3.5.1-informational?style=flat-square)

A Helm chart for Spark on Kubernetes operator

Expand Down
2 changes: 1 addition & 1 deletion docs/developer-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The easiest way to build the operator without worrying about its dependencies is
docker build -t <image-tag> .
```

The operator image is built upon a base Spark image that defaults to `spark:3.5.0`. If you want to use your own Spark image (e.g., an image with a different version of Spark or some custom dependencies), specify the argument `SPARK_IMAGE` as the following example shows:
The operator image is built upon a base Spark image that defaults to `spark:3.5.1`. If you want to use your own Spark image (e.g., an image with a different version of Spark or some custom dependencies), specify the argument `SPARK_IMAGE` as the following example shows:

```bash
docker build --build-arg SPARK_IMAGE=<your Spark image> -t <image-tag> .
Expand Down
10 changes: 5 additions & 5 deletions examples/spark-pi-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ metadata:
spec:
type: Scala
mode: cluster
image: "spark:3.5.0"
image: "spark:3.5.1"
imagePullPolicy: Always
mainClass: org.apache.spark.examples.SparkPi
mainApplicationFile: "local:///opt/spark/examples/jars/spark-examples_2.12-3.5.0.jar"
sparkVersion: "3.5.0"
mainApplicationFile: "local:///opt/spark/examples/jars/spark-examples_2.12-3.5.1.jar"
sparkVersion: "3.5.1"
restartPolicy:
type: Never
volumes:
Expand All @@ -37,7 +37,7 @@ spec:
coreLimit: "1200m"
memory: "512m"
labels:
version: 3.5.0
version: 3.5.1
serviceAccount: spark-operator-spark
volumeMounts:
- name: config-vol
Expand All @@ -47,7 +47,7 @@ spec:
instances: 1
memory: "512m"
labels:
version: 3.5.0
version: 3.5.1
volumeMounts:
- name: config-vol
mountPath: /opt/spark/mycm
10 changes: 5 additions & 5 deletions examples/spark-pi-custom-resource.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ metadata:
spec:
type: Scala
mode: cluster
image: "spark:3.5.0"
image: "spark:3.5.1"
imagePullPolicy: Always
mainClass: org.apache.spark.examples.SparkPi
mainApplicationFile: "local:///opt/spark/examples/jars/spark-examples_2.12-3.5.0.jar"
sparkVersion: "3.5.0"
mainApplicationFile: "local:///opt/spark/examples/jars/spark-examples_2.12-3.5.1.jar"
sparkVersion: "3.5.1"
restartPolicy:
type: Never
volumes:
Expand All @@ -38,7 +38,7 @@ spec:
coreLimit: "1200m"
memory: "512m"
labels:
version: 3.5.0
version: 3.5.1
serviceAccount: spark-operator-spark
volumeMounts:
- name: "test-volume"
Expand All @@ -48,7 +48,7 @@ spec:
instances: 1
memory: "512m"
labels:
version: 3.5.0
version: 3.5.1
volumeMounts:
- name: "test-volume"
mountPath: "/tmp"
Expand Down
10 changes: 5 additions & 5 deletions examples/spark-pi-schedule.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,23 @@ spec:
template:
type: Scala
mode: cluster
image: "spark:3.5.0"
image: "spark:3.5.1"
imagePullPolicy: Always
mainClass: org.apache.spark.examples.SparkPi
mainApplicationFile: "local:///opt/spark/examples/jars/spark-examples_2.12-3.5.0.jar"
sparkVersion: "3.5.0"
mainApplicationFile: "local:///opt/spark/examples/jars/spark-examples_2.12-3.5.1.jar"
sparkVersion: "3.5.1"
restartPolicy:
type: Never
driver:
cores: 1
coreLimit: "1200m"
memory: "512m"
labels:
version: 3.5.0
version: 3.5.1
serviceAccount: spark-operator-spark
executor:
cores: 1
instances: 1
memory: "512m"
labels:
version: 3.5.0
version: 3.5.1
10 changes: 5 additions & 5 deletions examples/spark-pi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ metadata:
spec:
type: Scala
mode: cluster
image: "spark:3.5.0"
image: "spark:3.5.1"
imagePullPolicy: Always
mainClass: org.apache.spark.examples.SparkPi
mainApplicationFile: "local:///opt/spark/examples/jars/spark-examples_2.12-3.5.0.jar"
sparkVersion: "3.5.0"
mainApplicationFile: "local:///opt/spark/examples/jars/spark-examples_2.12-3.5.1.jar"
sparkVersion: "3.5.1"
sparkUIOptions:
serviceLabels:
test-label/v1: 'true'
Expand All @@ -41,7 +41,7 @@ spec:
coreLimit: "1200m"
memory: "512m"
labels:
version: 3.5.0
version: 3.5.1
serviceAccount: spark-operator-spark
volumeMounts:
- name: "test-volume"
Expand All @@ -51,7 +51,7 @@ spec:
instances: 1
memory: "512m"
labels:
version: 3.5.0
version: 3.5.1
volumeMounts:
- name: "test-volume"
mountPath: "/tmp"
8 changes: 4 additions & 4 deletions examples/spark-py-pi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ spec:
type: Python
pythonVersion: "3"
mode: cluster
image: "spark:3.5.0"
image: "spark:3.5.1"
imagePullPolicy: Always
mainApplicationFile: local:///opt/spark/examples/src/main/python/pi.py
sparkVersion: "3.5.0"
sparkVersion: "3.5.1"
restartPolicy:
type: OnFailure
onFailureRetries: 3
Expand All @@ -37,11 +37,11 @@ spec:
coreLimit: "1200m"
memory: "512m"
labels:
version: 3.5.0
version: 3.5.1
serviceAccount: spark-operator-spark
executor:
cores: 1
instances: 1
memory: "512m"
labels:
version: 3.5.0
version: 3.5.1