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 62fe33d [SPARK-49331][FOLLOWUP] Fix `cpu` to `cpus` in
`setup-minikube` setting
62fe33d is described below
commit 62fe33d775a0e0f8d224882b01bc090b235647a4
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Thu Aug 22 09:21:50 2024 -0700
[SPARK-49331][FOLLOWUP] Fix `cpu` to `cpus` in `setup-minikube` setting
### What changes were proposed in this pull request?
This PR is a follow-up of the following PR to fix `cpu` to `cpus` in
`setup-minikube` setting.
- #82
### Why are the changes needed?
This was a typo and CI complains like the following.
-
https://github.com/apache/spark-kubernetes-operator/actions/runs/10503328332/job/29096477836
```
Warning: Unexpected input(s) 'cpu', valid inputs are ['start', 'cache',
'minikube-version', 'driver', 'container-runtime', 'kubernetes-version',
'cpus', 'memory', 'network-plugin', 'cni', 'addons', 'extra-config',
'feature-gates', 'listen-address', 'mount-path', 'install-path', 'wait',
'insecure-registry', 'start-args']
```
### Does this PR introduce _any_ user-facing change?
No, this is an infra bug fix.
### How was this patch tested?
Manually check the CI logs.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #91 from dongjoon-hyun/SPARK-49331.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.github/workflows/build_and_test.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/build_and_test.yml
b/.github/workflows/build_and_test.yml
index edfca8a..436541a 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -86,7 +86,7 @@ jobs:
with:
cache: true
kubernetes-version: ${{ matrix.kube-version }}
- cpu: 2
+ cpus: 2
memory: 6144m
- name: Set Up Go
uses: actions/setup-go@v5
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]