Skip to content

Commit 8e2e4ab

Browse files
committed
Update kind version in test environment
1 parent 9f29f6e commit 8e2e4ab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/actions/setup/action.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 'Setup env'
22
description: 'Greet someone'
33
inputs:
4-
install-chaos:
4+
install-chaos:
55
description: 'Setup ChaosMesh'
66
required: true
77
default: false
@@ -18,18 +18,18 @@ runs:
1818
- name: setup cluster
1919
shell: bash
2020
run: |
21-
curl -Lo /tmp/kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-linux-amd64
21+
curl -Lo /tmp/kind https://kind.sigs.k8s.io/dl/v0.24.0/kind-linux-amd64
2222
chmod +x /tmp/kind
2323
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
2424
sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
2525
rm -f kubectl
2626
sudo apt update
2727
sudo apt-get install -y ldap-utils
28-
/tmp/kind create cluster --config=$GITHUB_WORKSPACE/.bin/kind-conf.yml --image=kindest/node:v1.29.4@sha256:3abb816a5b1061fb15c6e9e60856ec40d56b7b52bcea5f5f1350bc6e2320b6f8
28+
/tmp/kind create cluster --config=$GITHUB_WORKSPACE/.bin/kind-conf.yml --image=kindest/node:v1.31.0@sha256:53df588e04085fd41ae12de0c3fe4c72f7013bba32a20e7325357a1ac94ba865
2929
kubectl apply -f https://projectcontour.io/quickstart/contour.yaml
3030
kubectl patch daemonsets -n projectcontour envoy -p '{"spec":{"template":{"spec":{"nodeSelector":{"ingress-ready":"true"}}}}}'
3131
- name: setup chaos mesh
3232
if: ${{ inputs.install-chaos == 'true' }}
3333
shell: bash
3434
run: |
35-
curl -sSL https://mirrors.chaos-mesh.org/v2.6.2/install.sh | bash -s -- --local kind
35+
curl -sSL https://mirrors.chaos-mesh.org/v2.6.2/install.sh | bash -s -- --local kind

0 commit comments

Comments
 (0)