Skip to content

Commit

Permalink
kind: Pick up the latest kindest/node image
Browse files Browse the repository at this point in the history
Also update kubeadm.k8s.io API version from v1beta2 to v1beta3.

Ref: #2720

Suggested-by: Joe Stringer <joe@isovalent.com>
Signed-off-by: Michi Mutsuzaki <michi@isovalent.com>
  • Loading branch information
michi-covalent committed Jul 26, 2024
1 parent 61f2b6d commit 9577d6b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/kind-config-1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
image: kindest/node:v1.23.6
image: kindest/node:v1.30.2
kubeadmConfigPatches:
# To make sure that there is no taint for master node.
# Otherwise, additional worker node might be required for conformance testing.
Expand All @@ -12,9 +12,9 @@ nodes:
nodeRegistration:
taints: []
- role: worker
image: kindest/node:v1.23.6
image: kindest/node:v1.30.2
- role: worker
image: kindest/node:v1.23.6
image: kindest/node:v1.30.2
labels:
cilium.io/no-schedule: "true"
networking:
Expand Down
4 changes: 2 additions & 2 deletions .github/kind-config-2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
image: kindest/node:v1.23.6
image: kindest/node:v1.30.2
kubeadmConfigPatches:
# To make sure that there is no taint for master node.
# Otherwise, additional worker node might be required for conformance testing.
Expand All @@ -12,7 +12,7 @@ nodes:
nodeRegistration:
taints: []
- role: worker
image: kindest/node:v1.23.6
image: kindest/node:v1.30.2
networking:
disableDefaultCNI: true
podSubnet: "10.202.0.0/16"
Expand Down
10 changes: 5 additions & 5 deletions .github/kind-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@ apiVersion: kind.x-k8s.io/v1alpha4
name: chart-testing
nodes:
- role: control-plane
image: kindest/node:v1.21.10
image: kindest/node:v1.30.2
kubeadmConfigPatches:
# To make sure that there is no taint for master node.
# Otherwise additional worker node might be required for conformance testing.
- |
apiVersion: kubeadm.k8s.io/v1beta2
apiVersion: kubeadm.k8s.io/v1beta3
kind: InitConfiguration
nodeRegistration:
taints: []
- role: worker
image: kindest/node:v1.21.10
image: kindest/node:v1.30.2
# Two extra nodes without Cilium to use for --external-ip and --external-other-ip.
- role: worker
image: kindest/node:v1.21.10
image: kindest/node:v1.30.2
labels:
cilium.io/no-schedule: "true"
- role: worker
image: kindest/node:v1.21.10
image: kindest/node:v1.30.2
labels:
cilium.io/no-schedule: "true"
networking:
Expand Down

0 comments on commit 9577d6b

Please sign in to comment.