summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/main-doc.yaml8
-rw-r--r--.github/workflows/main.yaml20
-rw-r--r--common/constants/default.go2
-rwxr-xr-xhack/lib/install.sh2
-rwxr-xr-xhack/local-up-kubeedge.sh2
5 files changed, 17 insertions, 17 deletions
diff --git a/.github/workflows/main-doc.yaml b/.github/workflows/main-doc.yaml
index 01e007cf6..59c360327 100644
--- a/.github/workflows/main-doc.yaml
+++ b/.github/workflows/main-doc.yaml
@@ -72,17 +72,17 @@ jobs:
matrix:
cases:
- protocol: WebSocket
+ version: v1.27.0
+ - protocol: WebSocket
version: v1.26.0
- protocol: WebSocket
version: v1.25.0
- - protocol: WebSocket
- version: v1.24.0
+ - protocol: QUIC
+ version: v1.27.0
- protocol: QUIC
version: v1.26.0
- protocol: QUIC
version: v1.25.0
- - protocol: QUIC
- version: v1.24.0
timeout-minutes: 30
name: E2e test
needs: image-prepare
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml
index 28784bc17..072cc8df7 100644
--- a/.github/workflows/main.yaml
+++ b/.github/workflows/main.yaml
@@ -165,17 +165,17 @@ jobs:
matrix:
cases:
- protocol: WebSocket
+ version: v1.27.0
+ - protocol: WebSocket
version: v1.26.0
- protocol: WebSocket
version: v1.25.0
- - protocol: WebSocket
- version: v1.24.0
+ - protocol: QUIC
+ version: v1.27.0
- protocol: QUIC
version: v1.26.0
- protocol: QUIC
version: v1.25.0
- - protocol: QUIC
- version: v1.24.0
timeout-minutes: 60
name: E2e test
needs: image-prepare
@@ -195,8 +195,8 @@ jobs:
- name: Install dependences
run: |
command -v ginkgo || go install github.com/onsi/ginkgo/v2/ginkgo@${{ env.GINKGO_VERSION }}
- go install sigs.k8s.io/kind@v0.18.0
- curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.26.7/bin/linux/amd64/kubectl && sudo install kubectl /usr/local/bin/kubectl
+ go install sigs.k8s.io/kind@v0.19.0
+ curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.27.7/bin/linux/amd64/kubectl && sudo install kubectl /usr/local/bin/kubectl
- name: Checkout code
uses: actions/checkout@v3
@@ -258,8 +258,8 @@ jobs:
- name: Install dependences
run: |
command -v ginkgo || go install github.com/onsi/ginkgo/v2/ginkgo@${{ env.GINKGO_VERSION }}
- go install sigs.k8s.io/kind@v0.18.0
- curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.26.7/bin/linux/amd64/kubectl && sudo install kubectl /usr/local/bin/kubectl
+ go install sigs.k8s.io/kind@v0.19.0
+ curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.27.7/bin/linux/amd64/kubectl && sudo install kubectl /usr/local/bin/kubectl
- name: Checkout code
uses: actions/checkout@v3
@@ -305,8 +305,8 @@ jobs:
- name: Install dependences
run: |
command -v ginkgo || go install github.com/onsi/ginkgo/v2/ginkgo@${{ env.GINKGO_VERSION }}
- go install sigs.k8s.io/kind@v0.18.0
- curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.26.7/bin/linux/amd64/kubectl && sudo install kubectl /usr/local/bin/kubectl
+ go install sigs.k8s.io/kind@v0.19.0
+ curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.27.7/bin/linux/amd64/kubectl && sudo install kubectl /usr/local/bin/kubectl
- name: Checkout code
uses: actions/checkout@v3
diff --git a/common/constants/default.go b/common/constants/default.go
index ba6d2c45d..5296c242e 100644
--- a/common/constants/default.go
+++ b/common/constants/default.go
@@ -55,7 +55,7 @@ const (
DefaultTunnelPort = 10004
DefaultClusterDomain = "cluster.local"
- CurrentSupportK8sVersion = "v1.26.7"
+ CurrentSupportK8sVersion = "v1.27.7"
// MetaManager
DefaultRemoteQueryTimeout = 60
diff --git a/hack/lib/install.sh b/hack/lib/install.sh
index 621c76c99..3850f063e 100755
--- a/hack/lib/install.sh
+++ b/hack/lib/install.sh
@@ -32,7 +32,7 @@ function check_kind {
command -v kind >/dev/null 2>&1
if [[ $? -ne 0 ]]; then
echo "installing kind ."
- GO111MODULE="on" go install sigs.k8s.io/kind@v0.18.0
+ GO111MODULE="on" go install sigs.k8s.io/kind@v0.19.0
if [[ $? -ne 0 ]]; then
echo "kind installed failed, exiting."
exit 1
diff --git a/hack/local-up-kubeedge.sh b/hack/local-up-kubeedge.sh
index bc2ee92b3..750cf13bc 100755
--- a/hack/local-up-kubeedge.sh
+++ b/hack/local-up-kubeedge.sh
@@ -21,7 +21,7 @@ LOG_LEVEL=${LOG_LEVEL:-2}
TIMEOUT=${TIMEOUT:-60}s
PROTOCOL=${PROTOCOL:-"WebSocket"}
CONTAINER_RUNTIME=${CONTAINER_RUNTIME:-"remote"}
-KIND_IMAGE=${1:-"kindest/node:v1.26.0"}
+KIND_IMAGE=${1:-"kindest/node:v1.27.0"}
echo -e "The installation of the cni plugin will overwrite the cni config file. Use export CNI_CONF_OVERWRITE=false to disable it."
if [[ "${CLUSTER_NAME}x" == "x" ]];then