forked from openshift/windows-machine-config-bootstrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
26 lines (23 loc) · 936 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module github.com/openshift/windows-machine-config-bootstrapper
go 1.16
// Replace is used to pin a specific version of a package or to point to sub-go.mod directories.
// Use 'replace' to point to the sub-go.mod directory for building a binary in the root directory and always build by
// package instead of file.
replace (
k8s.io/api => k8s.io/api v0.20.0
k8s.io/apimachinery => k8s.io/apimachinery v0.20.0
)
require (
github.com/coreos/ign-converter v0.0.0-20200825151652-ea20012f9844
github.com/coreos/ignition v0.35.0
github.com/coreos/ignition/v2 v2.6.0
github.com/go-bindata/go-bindata/v3 v3.1.3
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.0.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.6.1
github.com/vincent-petithory/dataurl v0.0.0-20160330182126-9a301d65acbb
golang.org/x/sys v0.0.0-20201112073958-5cba982894dd
k8s.io/apimachinery v0.20.0
sigs.k8s.io/controller-runtime v0.7.0
)