-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
32db48f
commit f25c922
Showing
2 changed files
with
195 additions
and
505 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,75 +1,77 @@ | ||
module github.com/DelineaXPM/dsv-k8s/v2 | ||
|
||
go 1.18 | ||
go 1.21 | ||
|
||
toolchain go1.21.6 | ||
|
||
require ( | ||
github.com/DelineaXPM/dsv-sdk-go/v2 v2.0.0 | ||
github.com/bitfield/script v0.21.4 | ||
github.com/DelineaXPM/dsv-sdk-go/v2 v2.1.0 | ||
github.com/bitfield/script v0.22.0 | ||
github.com/caarlos0/env/v6 v6.10.1 | ||
github.com/magefile/mage v1.14.0 | ||
github.com/mattbaird/jsonpatch v0.0.0-20200820163806-098863c1fc24 | ||
github.com/pterm/pterm v0.12.59 | ||
github.com/rs/zerolog v1.29.1 | ||
github.com/sheldonhull/magetools v1.0.0 | ||
k8s.io/api v0.26.1 | ||
k8s.io/apimachinery v0.26.1 | ||
k8s.io/client-go v0.26.1 | ||
github.com/magefile/mage v1.15.0 | ||
github.com/mattbaird/jsonpatch v0.0.0-20230413205102-771768614e91 | ||
github.com/pterm/pterm v0.12.74 | ||
github.com/rs/zerolog v1.31.0 | ||
github.com/sheldonhull/magetools v1.0.1 | ||
k8s.io/api v0.29.0 | ||
k8s.io/apimachinery v0.29.0 | ||
k8s.io/client-go v0.29.0 | ||
) | ||
|
||
require gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
|
||
require ( | ||
atomicgo.dev/cursor v0.1.1 // indirect | ||
atomicgo.dev/cursor v0.2.0 // indirect | ||
atomicgo.dev/keyboard v0.2.9 // indirect | ||
bitbucket.org/creachadair/shell v0.0.7 // indirect | ||
atomicgo.dev/schedule v0.1.0 // indirect | ||
github.com/aws/aws-sdk-go v1.44.119 // indirect | ||
github.com/containerd/console v1.0.3 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dustin/go-humanize v1.0.0 // indirect | ||
github.com/emicklei/go-restful/v3 v3.9.0 // indirect | ||
github.com/go-logr/logr v1.2.3 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/jsonreference v0.20.0 // indirect | ||
github.com/go-openapi/swag v0.19.14 // indirect | ||
github.com/dustin/go-humanize v1.0.1 // indirect | ||
github.com/emicklei/go-restful/v3 v3.11.0 // indirect | ||
github.com/go-logr/logr v1.3.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.6 // indirect | ||
github.com/go-openapi/jsonreference v0.20.2 // indirect | ||
github.com/go-openapi/swag v0.22.3 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/gnostic v0.6.9 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/gnostic-models v0.6.8 // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/gookit/color v1.5.3 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/gookit/color v1.5.4 // indirect | ||
github.com/imdario/mergo v0.3.12 // indirect | ||
github.com/itchyny/gojq v0.12.7 // indirect | ||
github.com/itchyny/timefmt-go v0.1.3 // indirect | ||
github.com/itchyny/gojq v0.12.12 // indirect | ||
github.com/itchyny/timefmt-go v0.1.5 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/lithammer/fuzzysearch v1.1.5 // indirect | ||
github.com/logrusorgru/aurora v2.0.3+incompatible // indirect | ||
github.com/mailru/easyjson v0.7.6 // indirect | ||
github.com/lithammer/fuzzysearch v1.1.8 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.18 // indirect | ||
github.com/mattn/go-runewidth v0.0.14 // indirect | ||
github.com/mattn/go-isatty v0.0.19 // indirect | ||
github.com/mattn/go-runewidth v0.0.15 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/rivo/uniseg v0.4.4 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect | ||
github.com/ztrue/tracerr v0.3.0 // indirect | ||
golang.org/x/mod v0.8.0 // indirect | ||
github.com/ztrue/tracerr v0.4.0 // indirect | ||
golang.org/x/mod v0.10.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/term v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect | ||
golang.org/x/oauth2 v0.10.0 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
golang.org/x/term v0.15.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/time v0.3.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
k8s.io/klog/v2 v2.80.1 // indirect | ||
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect | ||
k8s.io/utils v0.0.0-20221107191617-1a15be271d1d // indirect | ||
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect | ||
k8s.io/klog/v2 v2.110.1 // indirect | ||
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect | ||
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect | ||
mvdan.cc/sh/v3 v3.6.0 // indirect | ||
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect | ||
sigs.k8s.io/yaml v1.3.0 // indirect | ||
) |
Oops, something went wrong.