Skip to content

Commit 1800576

Browse files
committed
Update kind configs and docs to v1.29.0
1 parent 54a9488 commit 1800576

14 files changed

Lines changed: 20 additions & 20 deletions

File tree

.github/workflows/actions/kind/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ runs:
3535
EOF'
3636
3737
- name: Setup KinD cluster
38-
uses: helm/kind-action@v1.8.0
38+
uses: helm/kind-action@v1.12.0
3939
with:
4040
cluster_name: cluster
41-
version: v0.17.0
41+
version: v0.24.0
4242
config: ${{ env.KIND_CONFIG_FILE }}
4343

4444
- name: Print cluster info

.github/workflows/actions/kind/kind.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ kind: Cluster
22
apiVersion: kind.x-k8s.io/v1alpha4
33
nodes:
44
- role: control-plane
5-
image: kindest/node:v1.25.3@sha256:f52781bc0d7a19fb6c405c2af83abfeb311f130707a0e219175677e366cc45d1
5+
image: kindest/node:v1.29.0
66
kubeadmConfigPatches:
77
- |
88
kind: InitConfiguration

apiserver/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Create a local Kubernetes cluster using [Kind](https://kind.sigs.k8s.io/). If yo
2727
have a Kubernetes cluster, you can skip this step.
2828

2929
```sh
30-
kind create cluster --image=kindest/node:v1.26.0
30+
kind create cluster --image=kindest/node:v1.29.0
3131
```
3232

3333
#### Install KubeRay Operator
@@ -106,7 +106,7 @@ The following steps allow you to validate the integration of the KubeRay APIServ
106106
apiVersion: kind.x-k8s.io/v1alpha4
107107
nodes:
108108
- role: control-plane
109-
image: kindest/node:v1.23.17@sha256:59c989ff8a517a93127d4a536e7014d28e235fb3529d9fba91b3951d461edfdb
109+
image: kindest/node:v1.29.0
110110
kubeadmConfigPatches:
111111
- |
112112
kind: InitConfiguration
@@ -132,9 +132,9 @@ The following steps allow you to validate the integration of the KubeRay APIServ
132132
hostPort: 31887
133133
listenAddress: "0.0.0.0"
134134
- role: worker
135-
image: kindest/node:v1.23.17@sha256:59c989ff8a517a93127d4a536e7014d28e235fb3529d9fba91b3951d461edfdb
135+
image: kindest/node:v1.29.0
136136
- role: worker
137-
image: kindest/node:v1.23.17@sha256:59c989ff8a517a93127d4a536e7014d28e235fb3529d9fba91b3951d461edfdb
137+
image: kindest/node:v1.29.0
138138
EOF
139139
```
140140

apiserver/hack/kind-cluster-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ kind: Cluster
22
apiVersion: kind.x-k8s.io/v1alpha4
33
nodes:
44
- role: control-plane
5-
image: kindest/node:v1.25.0@sha256:428aaa17ec82ccde0131cb2d1ca6547d13cf5fdabcc0bbecf749baa935387cbf
5+
image: kindest/node:v1.29.0
66
kubeadmConfigPatches:
77
- |
88
kind: InitConfiguration

apiserversdk/docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This step creates a local Kubernetes cluster using [Kind](https://kind.sigs.k8s.
66
cluster, you can skip this step.
77

88
```sh
9-
kind create cluster --image=kindest/node:v1.26.0
9+
kind create cluster --image=kindest/node:v1.29.0
1010
```
1111

1212
## Step 2: Deploy a KubeRay operator

apiserversdk/docs/raycluster-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This step creates a local Kubernetes cluster using [Kind](https://kind.sigs.k8s.
99
If you already have a Kubernetes cluster, you can skip this step.
1010

1111
```sh
12-
kind create cluster --image=kindest/node:v1.26.0
12+
kind create cluster --image=kindest/node:v1.29.0
1313
```
1414

1515
## Step 2: Install KubeRay operator and APIServer

apiserversdk/docs/rayjob-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This step creates a local Kubernetes cluster using [Kind](https://kind.sigs.k8s.
99
cluster, you can skip this step.
1010

1111
```sh
12-
kind create cluster --image=kindest/node:v1.26.0
12+
kind create cluster --image=kindest/node:v1.29.0
1313
```
1414

1515
## Step 2: Install KubeRay operator and APIServer

apiserversdk/docs/rayservice-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This step creates a local Kubernetes cluster using [Kind](https://kind.sigs.k8s.
99
cluster, you can skip this step.
1010

1111
```sh
12-
kind create cluster --image=kindest/node:v1.26.0
12+
kind create cluster --image=kindest/node:v1.29.0
1313
```
1414

1515
## Step 2: Install KubeRay operator and APIServer

benchmark/perf-tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ You can test clusterloader2 configs using Kind.
4747
First create a kind cluster:
4848

4949
```sh
50-
kind create cluster --image=kindest/node:v1.27.3
50+
kind create cluster --image=kindest/node:v1.29.0
5151
```
5252

5353
Install KubeRay;

ci/kind-config-buildkite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ networking:
99
# https://blog.scottlowe.org/2019/07/30/adding-a-name-to-kubernetes-api-server-certificate/
1010
nodes:
1111
- role: control-plane
12-
image: kindest/node:v1.25.0@sha256:428aaa17ec82ccde0131cb2d1ca6547d13cf5fdabcc0bbecf749baa935387cbf
12+
image: kindest/node:v1.29.0
1313
kubeadmConfigPatches:
1414
- |
1515
kind: ClusterConfiguration

0 commit comments

Comments
 (0)