This is an automated email from the ASF dual-hosted git repository. dongjoon pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/spark-kubernetes-operator.git
The following commit(s) were added to refs/heads/main by this push: new fe5e410 [SPARK-52001] Bump version to 0.2.0-SNAPSHOT in `main` branch fe5e410 is described below commit fe5e4108262890e58e21e3967e5b95ffe49d6299 Author: Dongjoon Hyun <dongj...@apache.org> AuthorDate: Sun May 4 10:34:02 2025 -0700 [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 #181 from dongjoon-hyun/SPARK-52001. Authored-by: Dongjoon Hyun <dongj...@apache.org> Signed-off-by: Dongjoon Hyun <dongj...@apache.org> --- README.md | 2 +- build-tools/docker/Dockerfile | 2 +- build-tools/helm/spark-kubernetes-operator/Chart.yaml | 4 ++-- build-tools/helm/spark-kubernetes-operator/values.yaml | 2 +- build.gradle | 2 +- docs/operations.md | 2 +- tests/e2e/watched-namespaces/spark-operator-dynamic-config-1.yaml | 6 +++--- tests/e2e/watched-namespaces/spark-operator-dynamic-config-2.yaml | 6 +++--- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 924e098..305a9b0 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ As of now, you can try `spark-kubernetes-operator` nightly version in the follow ``` $ helm install spark-kubernetes-operator \ -https://nightlies.apache.org/spark/charts/spark-kubernetes-operator-0.1.0-SNAPSHOT.tgz +https://nightlies.apache.org/spark/charts/spark-kubernetes-operator-0.2.0-SNAPSHOT.tgz ``` ## Clean Up diff --git a/build-tools/docker/Dockerfile b/build-tools/docker/Dockerfile index 725f559..b6c8bb0 100644 --- a/build-tools/docker/Dockerfile +++ b/build-tools/docker/Dockerfile @@ -24,7 +24,7 @@ RUN --mount=type=cache,target=/home/gradle/.gradle/caches gradle --no-daemon cle FROM azul/zulu-openjdk:24-jre -ARG APP_VERSION=0.1.0-SNAPSHOT +ARG APP_VERSION=0.2.0-SNAPSHOT ARG SPARK_UID=185 LABEL org.opencontainers.image.authors="Apache Spark project <d...@spark.apache.org>" diff --git a/build-tools/helm/spark-kubernetes-operator/Chart.yaml b/build-tools/helm/spark-kubernetes-operator/Chart.yaml index 9b87149..2f0cebc 100644 --- a/build-tools/helm/spark-kubernetes-operator/Chart.yaml +++ b/build-tools/helm/spark-kubernetes-operator/Chart.yaml @@ -16,6 +16,6 @@ apiVersion: v2 name: spark-kubernetes-operator description: A Helm chart for the Apache Spark Kubernetes Operator type: application -version: 0.1.0-SNAPSHOT -appVersion: 0.1.0-SNAPSHOT +version: 0.2.0-SNAPSHOT +appVersion: 0.2.0-SNAPSHOT icon: https://spark.apache.org/favicon.ico diff --git a/build-tools/helm/spark-kubernetes-operator/values.yaml b/build-tools/helm/spark-kubernetes-operator/values.yaml index 53c387e..a8b4ad3 100644 --- a/build-tools/helm/spark-kubernetes-operator/values.yaml +++ b/build-tools/helm/spark-kubernetes-operator/values.yaml @@ -16,7 +16,7 @@ image: repository: spark-kubernetes-operator pullPolicy: IfNotPresent - tag: 0.1.0-SNAPSHOT + tag: 0.2.0-SNAPSHOT # If image digest is set then it takes precedence and the image tag will be ignored # digest: "" diff --git a/build.gradle b/build.gradle index 223c7e9..1f1ef74 100644 --- a/build.gradle +++ b/build.gradle @@ -34,7 +34,7 @@ assert JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_17): "Java 17 allprojects { group = "org.apache.spark.k8s.operator" - version = "0.1.0" + version = "0.2.0" if (!project.hasProperty('release')) { version += "-SNAPSHOT" } diff --git a/docs/operations.md b/docs/operations.md index 4cef2b4..86ebf11 100644 --- a/docs/operations.md +++ b/docs/operations.md @@ -61,7 +61,7 @@ following table: |---------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------| | image.repository | The image repository of spark-kubernetes-operator. | spark-kubernetes-operator | | image.pullPolicy | The image pull policy of spark-kubernetes-operator. | IfNotPresent | -| image.tag | The image tag of spark-kubernetes-operator. | 0.1.0-SNAPSHOT | +| image.tag | The image tag of spark-kubernetes-operator. | 0.2.0-SNAPSHOT | | image.digest | The image digest of spark-kubernetes-operator. If set then it takes precedence and the image tag will be ignored. | | | imagePullSecrets | The image pull secrets of spark-kubernetes-operator. | | | operatorDeployment.replica | Operator replica count. Must be 1 unless leader election is configured. | 1 | diff --git a/tests/e2e/watched-namespaces/spark-operator-dynamic-config-1.yaml b/tests/e2e/watched-namespaces/spark-operator-dynamic-config-1.yaml index 5ac86fb..a88a979 100644 --- a/tests/e2e/watched-namespaces/spark-operator-dynamic-config-1.yaml +++ b/tests/e2e/watched-namespaces/spark-operator-dynamic-config-1.yaml @@ -28,7 +28,7 @@ metadata: app.kubernetes.io/component: operator-dynamic-config-overrides app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: spark-kubernetes-operator - app.kubernetes.io/version: 0.1.0-SNAPSHOT - helm.sh/chart: spark-kubernetes-operator-0.1.0-SNAPSHOT + app.kubernetes.io/version: 0.2.0-SNAPSHOT + helm.sh/chart: spark-kubernetes-operator-0.2.0-SNAPSHOT name: spark-kubernetes-operator-dynamic-configuration - namespace: default \ No newline at end of file + namespace: default diff --git a/tests/e2e/watched-namespaces/spark-operator-dynamic-config-2.yaml b/tests/e2e/watched-namespaces/spark-operator-dynamic-config-2.yaml index a2b89a6..f169f81 100644 --- a/tests/e2e/watched-namespaces/spark-operator-dynamic-config-2.yaml +++ b/tests/e2e/watched-namespaces/spark-operator-dynamic-config-2.yaml @@ -28,7 +28,7 @@ metadata: app.kubernetes.io/component: operator-dynamic-config-overrides app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: spark-kubernetes-operator - app.kubernetes.io/version: 0.1.0-SNAPSHOT - helm.sh/chart: spark-kubernetes-operator-0.1.0-SNAPSHOT + app.kubernetes.io/version: 0.2.0-SNAPSHOT + helm.sh/chart: spark-kubernetes-operator-0.2.0-SNAPSHOT name: spark-kubernetes-operator-dynamic-configuration - namespace: default \ No newline at end of file + namespace: default --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org