Skip to content

Commit

Permalink
update go.mod + fix imports from manifests pkg (#373)
Browse files Browse the repository at this point in the history
Signed-off-by: adisos <[email protected]>
  • Loading branch information
adisos authored Mar 7, 2024
1 parent d74f267 commit c9e6e1d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/np-guard/cluster-topology-analyzer/v2
go 1.20

require (
github.com/np-guard/netpol-analyzer v1.0.1
github.com/np-guard/netpol-analyzer v1.1.0
github.com/openshift/api v0.0.0-20230502160752-c71432710382
github.com/stretchr/testify v1.9.0
gopkg.in/yaml.v3 v3.0.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 h1:n6/
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00/go.mod h1:Pm3mSP3c5uWn86xMLZ5Sa7JB9GsEZySvHYXCTK4E9q4=
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ=
github.com/np-guard/netpol-analyzer v1.0.1 h1:LIRCNmEZXk2ZtM1mM7E2EHs4izlfdXIs0OvlTK0qEJo=
github.com/np-guard/netpol-analyzer v1.0.1/go.mod h1:t/LmFgOT8bTGaqxm4KR8/nOZe9es7WVVs1iDlzueLhc=
github.com/np-guard/netpol-analyzer v1.1.0 h1:ggDZpcKVdYkNCuK0AfUhq0BBWhC0fIkpnq3/kxzsG50=
github.com/np-guard/netpol-analyzer v1.1.0/go.mod h1:vNb2Al8JAM1EyGEc4qVHsiKjEBn3la9Ij3AUdtcxv7g=
github.com/onsi/ginkgo/v2 v2.13.0 h1:0jY9lJquiL8fcf3M4LAXN5aMlS/b2BV86HFFPCPMgE4=
github.com/onsi/gomega v1.29.0 h1:KIA/t2t5UBzoirT4H9tsML45GEbo3ouUnBHsCfD2tVg=
github.com/openshift/api v0.0.0-20230502160752-c71432710382 h1:oIlUAGCdktBKMjCMtP7AedtAc00T/GFaSosoqBa2gkU=
Expand Down
2 changes: 1 addition & 1 deletion pkg/analyzer/info_to_resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/stretchr/testify/require"
"k8s.io/cli-runtime/pkg/resource"

"github.com/np-guard/netpol-analyzer/pkg/netpol/manifests/fsscanner"
"github.com/np-guard/netpol-analyzer/pkg/manifests/fsscanner"
)

func TestNetworkAddressValue(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/analyzer/policies_synthesizer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/cli-runtime/pkg/resource"

"github.com/np-guard/netpol-analyzer/pkg/netpol/manifests/fsscanner"
"github.com/np-guard/netpol-analyzer/pkg/manifests/fsscanner"
)

func TestPoliciesSynthesizerAPI(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/analyzer/resource_accumulator.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

"k8s.io/cli-runtime/pkg/resource"

"github.com/np-guard/netpol-analyzer/pkg/netpol/manifests/fsscanner"
"github.com/np-guard/netpol-analyzer/pkg/manifests/fsscanner"
)

// K8s resources that are relevant for connectivity analysis
Expand Down

0 comments on commit c9e6e1d

Please sign in to comment.