This is an automated email from the ASF dual-hosted git repository.
fchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/master by this push:
new bfaa7c1d7 [KYUUBI #6466] Bump minikube and kubernetes version of
integration test
bfaa7c1d7 is described below
commit bfaa7c1d7725fe5ad305cc00956f9c377f7839f8
Author: Fu Chen <[email protected]>
AuthorDate: Sat Jun 15 13:30:55 2024 +0800
[KYUUBI #6466] Bump minikube and kubernetes version of integration test
# :mag: Description
## Issue References ๐
This pull request fixes #
## Describe Your Solution ๐ง
Bump minikube and kubernetes version of integration test to fix failure of
integration test in CI.
- minikube: v1.29.0->v1.33.1
- kubernetes: v1.26.1->v1.30.0
Docker version 25 loads images into various distributions of Kubernetes has
been impossible due to what appears to be mismatching hashes of
manifests/images as follows:
```
X Exiting due to GUEST_IMAGE_LOAD: save to dir: caching images: caching
image "/home/runner/.minikube/cache/images/amd64/apache/kyuubi_latest": write:
unable to calculate manifest: blob
sha256:5bbc241b2d6dcc55b5a63c080556ad458ba1395e93af3204d12e72c9a192eb06 not
found
```
Minikube and kubernetes version should be bumped to fix failure of
integration test which refers to https://github.com/moby/moby/issues/47207.
## Types of changes :bookmark:
- [ ] Bugfix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing
functionality to change)
## Test Plan ๐งช
#### Behavior Without This Pull Request :coffin:
#### Behavior With This Pull Request :tada:
#### Related Unit Tests
---
# Checklist ๐
- [ ] This patch was not authored or co-authored using [Generative
Tooling](https://www.apache.org/legal/generative-tooling.html)
**Be nice. Be informative.**
Closes #6466 from cfmcgrady/bump-minikube.
Closes #6466
c4bf4b56e [Fu Chen] Bump minikube and kubernetes version of integration test
Authored-by: Fu Chen <[email protected]>
Signed-off-by: Fu Chen <[email protected]>
---
.github/workflows/master.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml
index 23edb0afd..3eb07bd2c 100644
--- a/.github/workflows/master.yml
+++ b/.github/workflows/master.yml
@@ -33,8 +33,8 @@ concurrency:
env:
MVN_OPT: -Dmaven.javadoc.skip=true -Drat.skip=true -Dscalastyle.skip=true
-Dspotless.check.skip -Dorg.slf4j.simpleLogger.defaultLogLevel=warn
-Pjdbc-shaded,gen-policy -Dmaven.plugin.download.cache.path=/tmp/engine-archives
- KUBERNETES_VERSION: v1.26.1
- MINIKUBE_VERSION: v1.29.0
+ KUBERNETES_VERSION: v1.30.0
+ MINIKUBE_VERSION: v1.33.1
jobs:
default: