Skip to content

Commit cc669fc

Browse files
Merge pull request #34 from FootprintAI/bump---kind-k8s-version
chore: bump k8s version to v1.25.11, kind 0.20.0
2 parents ff55353 + 80c3244 commit cc669fc

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

pkg/machine/kubectl/cli_darwin.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ package kubectl
55

66
var urlBinaryRes = binaryResource{
77
Os: "darwin",
8-
Kind: "https://github.com/FootprintAI/kind/releases/download/v0.15.0-gpu/kind-darwin",
9-
Kubectl: "https://storage.googleapis.com/kubernetes-release/release/v1.21.2/bin/darwin/amd64/kubectl",
8+
Kind: "https://github.com/FootprintAI/kind/releases/download/v0.20.0-gpu/kind-darwin",
9+
Kubectl: "https://storage.googleapis.com/kubernetes-release/release/v1.25.11/bin/darwin/amd64/kubectl",
1010
}
1111

1212
var localBinaryRes = binaryResource{

pkg/machine/kubectl/cli_linux.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ package kubectl
55

66
var urlBinaryRes = binaryResource{
77
Os: "linux",
8-
Kind: "https://github.com/FootprintAI/kind/releases/download/v0.15.0-gpu/kind-linux",
9-
Kubectl: "https://storage.googleapis.com/kubernetes-release/release/v1.21.2/bin/linux/amd64/kubectl",
8+
Kind: "https://github.com/FootprintAI/kind/releases/download/v0.20.0-gpu/kind-linux",
9+
Kubectl: "https://storage.googleapis.com/kubernetes-release/release/v1.25.11/bin/linux/amd64/kubectl",
1010
}
1111

1212
var localBinaryRes = binaryResource{

pkg/machine/kubectl/cli_windows.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ package kubectl
55

66
var urlBinaryRes = binaryResource{
77
Os: "windows",
8-
Kind: "https://github.com/FootprintAI/kind/releases/download/v0.15.0-gpu/kind-windows",
9-
Kubectl: "https://storage.googleapis.com/kubernetes-release/release/v1.21.2/bin/windows/amd64/kubectl.exe",
8+
Kind: "https://github.com/FootprintAI/kind/releases/download/v0.20.0-gpu/kind-windows",
9+
Kubectl: "https://storage.googleapis.com/kubernetes-release/release/v1.25.11/bin/windows/amd64/kubectl.exe",
1010
}
1111

1212
var localBinaryRes = binaryResource{

pkg/template/kind_template.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ nodes:
118118
{{- range $i, $p := .NodeLabels}}
119119
node-labels: "{{$p}}"
120120
{{- end}}
121-
image: kindest/node:v1.23.17@sha256:e5fd1d9cd7a9a50939f9c005684df5a6d145e8d695e78463637b79464292e66c
121+
image: kindest/node:v1.25.11@sha256:227fa11ce74ea76a0474eeefb84cb75d8dad1b08638371ecf0e86259b35be0c8
122122
gpus: {{.UseGPU}}
123123
{{if .ExportPorts}}extraPortMappings:{{end}}
124124
{{- range $i, $p := .ExportPorts}}
@@ -140,7 +140,7 @@ nodes:
140140
{{- end}}
141141
{{- range .Workers }}
142142
- role: worker
143-
image: kindest/node:v1.23.17@sha256:e5fd1d9cd7a9a50939f9c005684df5a6d145e8d695e78463637b79464292e66c
143+
image: kindest/node:v1.25.11@sha256:227fa11ce74ea76a0474eeefb84cb75d8dad1b08638371ecf0e86259b35be0c8
144144
gpus: {{ .UseGPU}}
145145
{{- if ne .LocalPath ""}}
146146
extraMounts:

pkg/template/kind_template_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ nodes:
110110
node-labels: "ingress-ready=true"
111111
node-labels: "a=b"
112112
node-labels: "c=d"
113-
image: kindest/node:v1.23.17@sha256:e5fd1d9cd7a9a50939f9c005684df5a6d145e8d695e78463637b79464292e66c
113+
image: kindest/node:v1.25.11@sha256:227fa11ce74ea76a0474eeefb84cb75d8dad1b08638371ecf0e86259b35be0c8
114114
gpus: true
115115
extraPortMappings:
116116
- containerPort: 8081
@@ -123,19 +123,19 @@ nodes:
123123
- hostPath: /mnt/test
124124
containerPath: /var/local-path-provisioner
125125
- role: worker
126-
image: kindest/node:v1.23.17@sha256:e5fd1d9cd7a9a50939f9c005684df5a6d145e8d695e78463637b79464292e66c
126+
image: kindest/node:v1.25.11@sha256:227fa11ce74ea76a0474eeefb84cb75d8dad1b08638371ecf0e86259b35be0c8
127127
gpus: true
128128
extraMounts:
129129
- hostPath: /mnt/test
130130
containerPath: /var/local-path-provisioner
131131
- role: worker
132-
image: kindest/node:v1.23.17@sha256:e5fd1d9cd7a9a50939f9c005684df5a6d145e8d695e78463637b79464292e66c
132+
image: kindest/node:v1.25.11@sha256:227fa11ce74ea76a0474eeefb84cb75d8dad1b08638371ecf0e86259b35be0c8
133133
gpus: true
134134
extraMounts:
135135
- hostPath: /mnt/test
136136
containerPath: /var/local-path-provisioner
137137
- role: worker
138-
image: kindest/node:v1.23.17@sha256:e5fd1d9cd7a9a50939f9c005684df5a6d145e8d695e78463637b79464292e66c
138+
image: kindest/node:v1.25.11@sha256:227fa11ce74ea76a0474eeefb84cb75d8dad1b08638371ecf0e86259b35be0c8
139139
gpus: true
140140
extraMounts:
141141
- hostPath: /mnt/test

0 commit comments

Comments
 (0)