Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump k8s version to v1.25.11, kind 0.20.0 #34

Merged
merged 1 commit into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkg/machine/kubectl/cli_darwin.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ package kubectl

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

var localBinaryRes = binaryResource{
Expand Down
4 changes: 2 additions & 2 deletions pkg/machine/kubectl/cli_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ package kubectl

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

var localBinaryRes = binaryResource{
Expand Down
4 changes: 2 additions & 2 deletions pkg/machine/kubectl/cli_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ package kubectl

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

var localBinaryRes = binaryResource{
Expand Down
4 changes: 2 additions & 2 deletions pkg/template/kind_template.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ nodes:
{{- range $i, $p := .NodeLabels}}
node-labels: "{{$p}}"
{{- end}}
image: kindest/node:v1.23.17@sha256:e5fd1d9cd7a9a50939f9c005684df5a6d145e8d695e78463637b79464292e66c
image: kindest/node:v1.25.11@sha256:227fa11ce74ea76a0474eeefb84cb75d8dad1b08638371ecf0e86259b35be0c8
gpus: {{.UseGPU}}
{{if .ExportPorts}}extraPortMappings:{{end}}
{{- range $i, $p := .ExportPorts}}
Expand All @@ -140,7 +140,7 @@ nodes:
{{- end}}
{{- range .Workers }}
- role: worker
image: kindest/node:v1.23.17@sha256:e5fd1d9cd7a9a50939f9c005684df5a6d145e8d695e78463637b79464292e66c
image: kindest/node:v1.25.11@sha256:227fa11ce74ea76a0474eeefb84cb75d8dad1b08638371ecf0e86259b35be0c8
gpus: {{ .UseGPU}}
{{- if ne .LocalPath ""}}
extraMounts:
Expand Down
8 changes: 4 additions & 4 deletions pkg/template/kind_template_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ nodes:
node-labels: "ingress-ready=true"
node-labels: "a=b"
node-labels: "c=d"
image: kindest/node:v1.23.17@sha256:e5fd1d9cd7a9a50939f9c005684df5a6d145e8d695e78463637b79464292e66c
image: kindest/node:v1.25.11@sha256:227fa11ce74ea76a0474eeefb84cb75d8dad1b08638371ecf0e86259b35be0c8
gpus: true
extraPortMappings:
- containerPort: 8081
Expand All @@ -123,19 +123,19 @@ nodes:
- hostPath: /mnt/test
containerPath: /var/local-path-provisioner
- role: worker
image: kindest/node:v1.23.17@sha256:e5fd1d9cd7a9a50939f9c005684df5a6d145e8d695e78463637b79464292e66c
image: kindest/node:v1.25.11@sha256:227fa11ce74ea76a0474eeefb84cb75d8dad1b08638371ecf0e86259b35be0c8
gpus: true
extraMounts:
- hostPath: /mnt/test
containerPath: /var/local-path-provisioner
- role: worker
image: kindest/node:v1.23.17@sha256:e5fd1d9cd7a9a50939f9c005684df5a6d145e8d695e78463637b79464292e66c
image: kindest/node:v1.25.11@sha256:227fa11ce74ea76a0474eeefb84cb75d8dad1b08638371ecf0e86259b35be0c8
gpus: true
extraMounts:
- hostPath: /mnt/test
containerPath: /var/local-path-provisioner
- role: worker
image: kindest/node:v1.23.17@sha256:e5fd1d9cd7a9a50939f9c005684df5a6d145e8d695e78463637b79464292e66c
image: kindest/node:v1.25.11@sha256:227fa11ce74ea76a0474eeefb84cb75d8dad1b08638371ecf0e86259b35be0c8
gpus: true
extraMounts:
- hostPath: /mnt/test
Expand Down