-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support latest version of kubeedge(1.17)
Signed-off-by: Bob <[email protected]>
- Loading branch information
Showing
6 changed files
with
71 additions
and
576 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.17 | ||
1.20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,33 @@ | ||
module github.com/kubeedge/keink | ||
|
||
go 1.17 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/spf13/cobra v1.6.1 | ||
github.com/spf13/pflag v1.0.5 | ||
sigs.k8s.io/kind v0.0.0 | ||
) | ||
|
||
require ( | ||
github.com/google/safetext v0.0.0-20220905092116-b49f7bc46da2 // indirect | ||
golang.org/x/mod v0.17.0 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
) | ||
|
||
require ( | ||
github.com/BurntSushi/toml v1.2.1 // indirect | ||
github.com/alessio/shellescape v1.4.1 // indirect | ||
github.com/evanphx/json-patch/v5 v5.6.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.1 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/mattn/go-isatty v0.0.16 // indirect | ||
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect | ||
github.com/pelletier/go-toml v1.9.5 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
golang.org/x/sys v0.1.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect | ||
golang.org/x/sys v0.19.0 // indirect | ||
golang.org/x/tools v0.20.0 | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
sigs.k8s.io/yaml v1.3.0 // indirect | ||
) | ||
|
||
replace sigs.k8s.io/kind => github.com/kubeedge/kind v0.12.0-kubeedge1 | ||
replace sigs.k8s.io/kind => github.com/kubeedge/kind v0.21.0-kubeedge1 |
Oops, something went wrong.