forked from intel/afxdp-plugins-for-kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Maryam Tahhan <[email protected]>
- Loading branch information
1 parent
adf5e9c
commit 7655885
Showing
34 changed files
with
132 additions
and
2,208 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
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
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
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
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,6 +1,6 @@ | ||
module github.com/intel/afxdp-plugins-for-kubernetes | ||
module github.com/redhat-et/afxdp-plugins-for-kubernetes | ||
Check warning Code scanning / Trivy golang: net/http, x/net/http2: unlimited number of CONTINUATION frames causes DoS Medium
Package: golang.org/x/net
Installed Version: 0.17.0 Vulnerability CVE-2023-45288 Severity: MEDIUM Fixed Version: 0.23.0 Link: CVE-2023-45288 Check warning Code scanning / Trivy golang-protobuf: encoding/protojson, internal/encoding/json: infinite loop in protojson.Unmarshal when unmarshaling certain forms of invalid JSON Medium
Package: google.golang.org/protobuf
Installed Version: 1.30.0 Vulnerability CVE-2024-24786 Severity: MEDIUM Fixed Version: 1.33.0 Link: CVE-2024-24786 |
||
|
||
go 1.13 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/containernetworking/cni v1.1.2 | ||
|
@@ -9,10 +9,10 @@ require ( | |
github.com/golang/protobuf v1.5.3 | ||
github.com/google/gofuzz v1.1.0 | ||
github.com/google/uuid v1.3.0 | ||
github.com/intel/afxdp-plugins-for-kubernetes/pkg/goclient v0.0.0 | ||
github.com/intel/afxdp-plugins-for-kubernetes/pkg/subfunctions v0.0.0 | ||
github.com/moby/sys/mount v0.3.3 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/redhat-et/afxdp-plugins-for-kubernetes/pkg/goclient v0.0.0 | ||
github.com/redhat-et/afxdp-plugins-for-kubernetes/pkg/subfunctions v0.0.0 | ||
github.com/safchain/ethtool v0.0.0-20210803160452-9aa261dae9b1 | ||
github.com/sirupsen/logrus v1.9.0 | ||
github.com/stretchr/testify v1.8.3 | ||
|
@@ -24,6 +24,22 @@ require ( | |
k8s.io/kubelet v0.25.2 | ||
) | ||
|
||
replace github.com/intel/afxdp-plugins-for-kubernetes/pkg/subfunctions => ./pkg/subfunctions | ||
require ( | ||
github.com/asaskevich/govalidator v0.0.0-20200108200545-475eaeb16496 // indirect | ||
github.com/coreos/go-iptables v0.6.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/moby/sys/mountinfo v0.6.2 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect | ||
google.golang.org/protobuf v1.30.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
replace github.com/redhat-et/afxdp-plugins-for-kubernetes/pkg/subfunctions => ./pkg/subfunctions | ||
|
||
replace github.com/intel/afxdp-plugins-for-kubernetes/pkg/goclient => ./pkg/goclient | ||
replace github.com/redhat-et/afxdp-plugins-for-kubernetes/pkg/goclient => ./pkg/goclient |
Oops, something went wrong.