Skip to content

Commit fe5e410

Browse files
committed
[SPARK-52001] Bump version to 0.2.0-SNAPSHOT in main branch
### What changes were proposed in this pull request? This PR aims to bump version to `0.2.0-SNAPSHOT` in `main` branch. ### Why are the changes needed? `branch-0.1` is created to release `Spark Kubernetes Operator v0.1.0`. We need to bump the version in `main` branch to distinguish. - https://github.com/apache/spark-kubernetes-operator/tree/branch-0.1 ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes apache#181 from dongjoon-hyun/SPARK-52001. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent b58ee1d commit fe5e410

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ As of now, you can try `spark-kubernetes-operator` nightly version in the follow
125125

126126
```
127127
$ helm install spark-kubernetes-operator \
128-
https://nightlies.apache.org/spark/charts/spark-kubernetes-operator-0.1.0-SNAPSHOT.tgz
128+
https://nightlies.apache.org/spark/charts/spark-kubernetes-operator-0.2.0-SNAPSHOT.tgz
129129
```
130130

131131
## Clean Up

build-tools/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN --mount=type=cache,target=/home/gradle/.gradle/caches gradle --no-daemon cle
2424

2525
FROM azul/zulu-openjdk:24-jre
2626

27-
ARG APP_VERSION=0.1.0-SNAPSHOT
27+
ARG APP_VERSION=0.2.0-SNAPSHOT
2828
ARG SPARK_UID=185
2929

3030
LABEL org.opencontainers.image.authors="Apache Spark project <[email protected]>"

build-tools/helm/spark-kubernetes-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ apiVersion: v2
1616
name: spark-kubernetes-operator
1717
description: A Helm chart for the Apache Spark Kubernetes Operator
1818
type: application
19-
version: 0.1.0-SNAPSHOT
20-
appVersion: 0.1.0-SNAPSHOT
19+
version: 0.2.0-SNAPSHOT
20+
appVersion: 0.2.0-SNAPSHOT
2121
icon: https://spark.apache.org/favicon.ico

build-tools/helm/spark-kubernetes-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
image:
1717
repository: spark-kubernetes-operator
1818
pullPolicy: IfNotPresent
19-
tag: 0.1.0-SNAPSHOT
19+
tag: 0.2.0-SNAPSHOT
2020
# If image digest is set then it takes precedence and the image tag will be ignored
2121
# digest: ""
2222

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ assert JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_17): "Java 17
3434

3535
allprojects {
3636
group = "org.apache.spark.k8s.operator"
37-
version = "0.1.0"
37+
version = "0.2.0"
3838
if (!project.hasProperty('release')) {
3939
version += "-SNAPSHOT"
4040
}

docs/operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ following table:
6161
|---------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------|
6262
| image.repository | The image repository of spark-kubernetes-operator. | spark-kubernetes-operator |
6363
| image.pullPolicy | The image pull policy of spark-kubernetes-operator. | IfNotPresent |
64-
| image.tag | The image tag of spark-kubernetes-operator. | 0.1.0-SNAPSHOT |
64+
| image.tag | The image tag of spark-kubernetes-operator. | 0.2.0-SNAPSHOT |
6565
| image.digest | The image digest of spark-kubernetes-operator. If set then it takes precedence and the image tag will be ignored. | |
6666
| imagePullSecrets | The image pull secrets of spark-kubernetes-operator. | |
6767
| operatorDeployment.replica | Operator replica count. Must be 1 unless leader election is configured. | 1 |

tests/e2e/watched-namespaces/spark-operator-dynamic-config-1.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ metadata:
2828
app.kubernetes.io/component: operator-dynamic-config-overrides
2929
app.kubernetes.io/managed-by: Helm
3030
app.kubernetes.io/name: spark-kubernetes-operator
31-
app.kubernetes.io/version: 0.1.0-SNAPSHOT
32-
helm.sh/chart: spark-kubernetes-operator-0.1.0-SNAPSHOT
31+
app.kubernetes.io/version: 0.2.0-SNAPSHOT
32+
helm.sh/chart: spark-kubernetes-operator-0.2.0-SNAPSHOT
3333
name: spark-kubernetes-operator-dynamic-configuration
34-
namespace: default
34+
namespace: default

tests/e2e/watched-namespaces/spark-operator-dynamic-config-2.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ metadata:
2828
app.kubernetes.io/component: operator-dynamic-config-overrides
2929
app.kubernetes.io/managed-by: Helm
3030
app.kubernetes.io/name: spark-kubernetes-operator
31-
app.kubernetes.io/version: 0.1.0-SNAPSHOT
32-
helm.sh/chart: spark-kubernetes-operator-0.1.0-SNAPSHOT
31+
app.kubernetes.io/version: 0.2.0-SNAPSHOT
32+
helm.sh/chart: spark-kubernetes-operator-0.2.0-SNAPSHOT
3333
name: spark-kubernetes-operator-dynamic-configuration
34-
namespace: default
34+
namespace: default

0 commit comments

Comments
 (0)