mirror of
https://github.com/k3s-io/k3s.git
synced 2026-04-15 14:29:44 -04:00
Also update all use of 'go get' => 'go install', update CI tooling for 1.18 compatibility, and gofmt everything so lint passes. Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
9 lines
162 B
Go
9 lines
162 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package cmds
|
|
|
|
const (
|
|
DefaultPauseImage = "mcr.microsoft.com/oss/kubernetes/pause:1.4.0"
|
|
DefaultSnapshotter = "native"
|
|
)
|