This repository has been archived by the owner on Jan 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
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
Showing
2 changed files
with
97 additions
and
43 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,27 +1,63 @@ | ||
module github.com/netdata/sd | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
replace k8s.io/client-go => k8s.io/client-go v0.18.3 | ||
|
||
require ( | ||
github.com/Masterminds/sprig/v3 v3.1.0 | ||
github.com/fsnotify/fsnotify v1.4.9 | ||
github.com/Masterminds/sprig/v3 v3.2.2 | ||
github.com/fsnotify/fsnotify v1.5.1 | ||
github.com/gobwas/glob v0.2.3 | ||
github.com/ilyam8/hashstructure v1.1.0 | ||
github.com/jessevdk/go-flags v1.5.0 | ||
github.com/mattn/go-isatty v0.0.14 | ||
github.com/rs/zerolog v1.26.1 | ||
github.com/stretchr/testify v1.7.0 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
k8s.io/api v0.18.3 | ||
k8s.io/apimachinery v0.18.3 | ||
k8s.io/client-go v11.0.0+incompatible | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.38.0 // indirect | ||
github.com/Masterminds/goutils v1.1.1 // indirect | ||
github.com/Masterminds/semver/v3 v3.1.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/evanphx/json-patch v4.2.0+incompatible // indirect | ||
github.com/go-logr/logr v0.1.0 // indirect | ||
github.com/gogo/protobuf v1.3.1 // indirect | ||
github.com/golang/protobuf v1.3.2 // indirect | ||
github.com/google/go-cmp v0.3.0 // indirect | ||
github.com/google/gofuzz v1.1.0 // indirect | ||
github.com/google/uuid v1.1.2 // indirect | ||
github.com/googleapis/gnostic v0.1.0 // indirect | ||
github.com/hashicorp/golang-lru v0.5.1 // indirect | ||
github.com/huandu/xstrings v1.3.2 // indirect | ||
github.com/ilyam8/hashstructure v1.1.0 | ||
github.com/imdario/mergo v0.3.11 // indirect | ||
github.com/jessevdk/go-flags v1.4.0 | ||
github.com/mattn/go-isatty v0.0.12 | ||
github.com/rs/zerolog v1.18.0 | ||
github.com/stretchr/testify v1.6.0 | ||
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect | ||
github.com/json-iterator/go v1.1.8 // indirect | ||
github.com/mitchellh/copystructure v1.0.0 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.0 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/shopspring/decimal v1.2.0 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
golang.org/x/crypto v0.0.0-20211215165025-cf75a172585e // indirect | ||
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d // indirect | ||
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect | ||
golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e // indirect | ||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1 // indirect | ||
gopkg.in/yaml.v2 v2.3.0 | ||
k8s.io/api v0.18.3 | ||
k8s.io/apimachinery v0.18.3 | ||
k8s.io/client-go v11.0.0+incompatible | ||
google.golang.org/appengine v1.5.0 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect | ||
k8s.io/klog v1.0.0 // indirect | ||
k8s.io/klog/v2 v2.0.0 // indirect | ||
k8s.io/kube-openapi v0.0.0-20200410145947-61e04a5be9a6 // indirect | ||
k8s.io/utils v0.0.0-20200529193333-24a76e807f40 // indirect | ||
sigs.k8s.io/structured-merge-diff/v3 v3.0.0 // indirect | ||
sigs.k8s.io/yaml v1.2.0 // indirect | ||
) |
Oops, something went wrong.