Skip to content

Commit 0d47cfe

Browse files
committed
Preparing 0.5.0-rc.1
1 parent c5317c5 commit 0d47cfe

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

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:25-jre
2626

27-
ARG APP_VERSION=0.5.0-SNAPSHOT
27+
ARG APP_VERSION=0.5.0
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
@@ -14,8 +14,8 @@
1414
# limitations under the License.
1515
apiVersion: v2
1616
name: spark-kubernetes-operator
17-
version: 1.3.0-dev
18-
appVersion: 0.5.0-SNAPSHOT
17+
version: 1.3.0
18+
appVersion: 0.5.0
1919
description: The official Helm chart to deploy Apache Spark, an unified engine for large-scale data analytics
2020
type: application
2121
home: https://apache.github.io/spark-kubernetes-operator/

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: apache/spark-kubernetes-operator
1818
pullPolicy: IfNotPresent
19-
tag: 0.5.0-SNAPSHOT
19+
tag: 0.5.0
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
@@ -35,7 +35,7 @@ assert JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_17): "Java 17
3535

3636
allprojects {
3737
group = "org.apache.spark.k8s.operator"
38-
version = "0.5.0-SNAPSHOT"
38+
version = "0.5.0"
3939
}
4040

4141
tasks.register('buildDockerImage', Exec) {

docs/operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ following table:
6363
|------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------|
6464
| image.repository | The image repository of spark-kubernetes-operator. | apache/spark-kubernetes-operator |
6565
| image.pullPolicy | The image pull policy of spark-kubernetes-operator. | IfNotPresent |
66-
| image.tag | The image tag of spark-kubernetes-operator. | 0.5.0-SNAPSHOT |
66+
| image.tag | The image tag of spark-kubernetes-operator. | 0.5.0 |
6767
| image.digest | The image digest of spark-kubernetes-operator. If set then it takes precedence and the image tag will be ignored. | |
6868
| imagePullSecrets | The image pull secrets of spark-kubernetes-operator. | |
6969
| 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: 2 additions & 2 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.5.0-SNAPSHOT
32-
helm.sh/chart: spark-kubernetes-operator-1.3.0-dev
31+
app.kubernetes.io/version: 0.5.0
32+
helm.sh/chart: spark-kubernetes-operator-1.3.0
3333
name: spark-kubernetes-operator-dynamic-configuration
3434
namespace: default

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

Lines changed: 2 additions & 2 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.5.0-SNAPSHOT
32-
helm.sh/chart: spark-kubernetes-operator-1.3.0-dev
31+
app.kubernetes.io/version: 0.5.0
32+
helm.sh/chart: spark-kubernetes-operator-1.3.0
3333
name: spark-kubernetes-operator-dynamic-configuration
3434
namespace: default

0 commit comments

Comments
 (0)