Skip to content

Commit

Permalink
Merge pull request #181 from anastasia-malysheva/add-namespace-support
Browse files Browse the repository at this point in the history
Add support of namespace annotations
  • Loading branch information
denis-tingaikin authored Aug 17, 2022
2 parents 0a9c0b9 + 3883825 commit f61ab27
Show file tree
Hide file tree
Showing 5 changed files with 116 additions and 101 deletions.
28 changes: 18 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,19 @@ go 1.18
require (
github.com/kelseyhightower/envconfig v1.4.0
github.com/labstack/echo/v4 v4.6.1
github.com/networkservicemesh/sdk v0.5.1-0.20220816110630-67e508c2371a
github.com/networkservicemesh/sdk v1.5.0
go.uber.org/zap v1.16.0
gomodules.xyz/jsonpatch/v2 v2.1.0
k8s.io/api v0.20.5
k8s.io/apimachinery v0.20.5
k8s.io/client-go v0.20.5
k8s.io/api v0.22.1
k8s.io/apimachinery v0.22.1
k8s.io/client-go v0.22.1
)

require (
github.com/google/go-cmp v0.5.6 // indirect
github.com/imdario/mergo v0.3.5 // indirect
github.com/spf13/pflag v1.0.5 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)

require (
Expand All @@ -22,15 +29,16 @@ require (
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/gofuzz v1.1.0 // indirect
github.com/googleapis/gnostic v0.4.1 // indirect
github.com/googleapis/gnostic v0.5.5 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
github.com/json-iterator/go v1.1.10 // indirect
github.com/json-iterator/go v1.1.11 // indirect
github.com/labstack/gommon v0.3.0 // indirect
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/networkservicemesh/api v1.4.1-0.20220711153918-a59689088578 // indirect
github.com/networkservicemesh/api v1.5.0 // indirect
github.com/networkservicemesh/sdk-k8s v1.5.0
github.com/pkg/errors v0.9.1 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
Expand All @@ -54,7 +62,7 @@ require (
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect
golang.org/x/sys v0.0.0-20220307203707-22a9840ba4d7 // indirect
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 // indirect
google.golang.org/appengine v1.6.5 // indirect
Expand All @@ -64,7 +72,7 @@ require (
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
k8s.io/klog/v2 v2.40.1 // indirect
k8s.io/utils v0.0.0-20201110183641-67b214c5f920 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.0.2 // indirect
k8s.io/utils v0.0.0-20210707171843-4b05e18ac7d9 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect
sigs.k8s.io/yaml v1.2.0 // indirect
)
Loading

0 comments on commit f61ab27

Please sign in to comment.