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 3d56b45 [SPARK-53984] Use CRD `v1` instead of `v1beta1` in
`benchmark` script
3d56b45 is described below
commit 3d56b45dda3ba58d5dd70b2a5abe542bdcf541e5
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Wed Oct 22 11:00:07 2025 -0700
[SPARK-53984] Use CRD `v1` instead of `v1beta1` in `benchmark` script
### What changes were proposed in this pull request?
This PR aims to use CRD `v1` instead of `v1beta1` in `benchmark` script.
### Why are the changes needed?
Since `v0.5`, CRD becomes `v1`.
Since we will compare the benchmark with `v0.5` since `v0.6`, we can update
this to `v1` finally.
### Does this PR introduce _any_ user-facing change?
No, this is a test code change.
### How was this patch tested?
Manual review.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #396 from dongjoon-hyun/SPARK-53984.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
tests/benchmark/sparkapps.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/benchmark/sparkapps.sh b/tests/benchmark/sparkapps.sh
index a8fed59..ea45b68 100755
--- a/tests/benchmark/sparkapps.sh
+++ b/tests/benchmark/sparkapps.sh
@@ -29,7 +29,7 @@ filename=$(mktemp)
for i in $(seq -f "%05g" 1 $NUM); do
cat << EOF >> $filename
-apiVersion: spark.apache.org/v1beta1
+apiVersion: spark.apache.org/v1
kind: SparkApplication
metadata:
name: test-${i}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]