Skip to content

Commit

Permalink
repo: update af-xdp dp repo links
Browse files Browse the repository at this point in the history
Signed-off-by: Maryam Tahhan <[email protected]>
  • Loading branch information
maryamtahhan committed May 13, 2024
1 parent adf5e9c commit 7655885
Show file tree
Hide file tree
Showing 34 changed files with 132 additions and 2,208 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ clangformat:
format: clangformat
@echo "****** Go Format ******"
@echo
-go fmt github.com/intel/afxdp-plugins-for-kubernetes/...
-go fmt github.com/redhat-et/afxdp-plugins-for-kubernetes/...
@echo
@echo

Expand Down Expand Up @@ -159,7 +159,7 @@ static-ci:
@echo
@echo "****** Go Vet ******"
@echo
for pkg in $$(go list github.com/intel/afxdp-plugins-for-kubernetes/...); do echo $$pkg && go vet $$pkg; done
for pkg in $$(go list github.com/redhat-et/afxdp-plugins-for-kubernetes/...); do echo $$pkg && go vet $$pkg; done
@echo
@echo

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![GitHub Super-Linter](https://github.com/intel/afxdp-plugins-for-kubernetes/actions/workflows/public-ci.yml/badge.svg?branch=main)](https://github.com/marketplace/actions/super-linter) ![CodeQL](https://github.com/intel/afxdp-plugins-for-kubernetes/actions/workflows/codeql.yml/badge.svg?branch=main) [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/intel/afxdp-plugins-for-kubernetes/badge)](https://api.securityscorecards.dev/projects/github.com/intel/afxdp-plugins-for-kubernetes) [![Go Report Card](https://goreportcard.com/badge/github.com/intel/afxdp-plugins-for-kubernetes)](https://goreportcard.com/report/github.com/intel/afxdp-plugins-for-kubernetes) [![Go Reference](https://pkg.go.dev/badge/github.com/intel/afxdp-plugins-for-kubernetes.svg)](https://pkg.go.dev/github.com/intel/afxdp-plugins-for-kubernetes)
[![GitHub Super-Linter](https://github.com/redhat-et/afxdp-plugins-for-kubernetes/actions/workflows/public-ci.yml/badge.svg?branch=main)](https://github.com/marketplace/actions/super-linter) ![CodeQL](https://github.com/redhat-et/afxdp-plugins-for-kubernetes/actions/workflows/codeql.yml/badge.svg?branch=main) [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/redhat-et/afxdp-plugins-for-kubernetes/badge)](https://api.securityscorecards.dev/projects/github.com/redhat-et/afxdp-plugins-for-kubernetes) [![Go Report Card](https://goreportcard.com/badge/github.com/redhat-et/afxdp-plugins-for-kubernetes)](https://goreportcard.com/report/github.com/redhat-et/afxdp-plugins-for-kubernetes) [![Go Reference](https://pkg.go.dev/badge/github.com/redhat-et/afxdp-plugins-for-kubernetes.svg)](https://pkg.go.dev/github.com/redhat-et/afxdp-plugins-for-kubernetes)

# AF_XDP Plugins for Kubernetes

Expand Down
2 changes: 1 addition & 1 deletion cmd/cni/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package main
import (
"github.com/containernetworking/cni/pkg/skel"
cniversion "github.com/containernetworking/cni/pkg/version"
"github.com/intel/afxdp-plugins-for-kubernetes/internal/cni"
"github.com/redhat-et/afxdp-plugins-for-kubernetes/internal/cni"
)

func main() {
Expand Down
14 changes: 7 additions & 7 deletions cmd/deviceplugin/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ import (
"os/signal"
"syscall"

"github.com/intel/afxdp-plugins-for-kubernetes/constants"
"github.com/intel/afxdp-plugins-for-kubernetes/internal/deviceplugin"
"github.com/intel/afxdp-plugins-for-kubernetes/internal/dpcnisyncerserver"
"github.com/intel/afxdp-plugins-for-kubernetes/internal/host"
"github.com/intel/afxdp-plugins-for-kubernetes/internal/logformats"
"github.com/intel/afxdp-plugins-for-kubernetes/internal/networking"
"github.com/intel/afxdp-plugins-for-kubernetes/internal/tools"
"github.com/redhat-et/afxdp-plugins-for-kubernetes/constants"
"github.com/redhat-et/afxdp-plugins-for-kubernetes/internal/deviceplugin"
"github.com/redhat-et/afxdp-plugins-for-kubernetes/internal/dpcnisyncerserver"
"github.com/redhat-et/afxdp-plugins-for-kubernetes/internal/host"
"github.com/redhat-et/afxdp-plugins-for-kubernetes/internal/logformats"
"github.com/redhat-et/afxdp-plugins-for-kubernetes/internal/networking"
"github.com/redhat-et/afxdp-plugins-for-kubernetes/internal/tools"
logging "github.com/sirupsen/logrus"
)

Expand Down
28 changes: 22 additions & 6 deletions go.mod
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
Expand All @@ -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
Expand All @@ -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
Loading

0 comments on commit 7655885

Please sign in to comment.