Skip to content

Commit

Permalink
github.com/togethercomputer/sriov-network-operator replace
Browse files Browse the repository at this point in the history
  • Loading branch information
punkerpunker committed Jan 29, 2025
1 parent 1347246 commit 7574a26
Show file tree
Hide file tree
Showing 169 changed files with 572 additions and 572 deletions.
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ linters-settings:
gocyclo:
min-complexity: 15
goimports:
local-prefixes: github.com/k8snetworkplumbingwg/sriov-network-operator
local-prefixes: github.com/togethercomputer/sriov-network-operator
gomnd:
settings:
mnd:
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Fixes #1

We always encourage the contribution for the community project. We like to collaborate with various stake holder on this project. We ask developer to keep following guidelines in mind before the contribution.

* Make sure to create an [Issue](https://github.com/k8snetworkplumbingwg/sriov-network-operator/issues) for bug fix or the feature request.
* Make sure to create an [Issue](https://github.com/togethercomputer/sriov-network-operator/issues) for bug fix or the feature request.
Issues are discussed on a regular basis at _K8s Network & Resource management_ meetings.
* **For bugs**: For the bug fixes, please follow the issue template format while creating a issue. If you have already found a fix, feel free to submit a Pull Request referencing the Issue you created. Include the `Fixes #` syntax to link it to the issue you're addressing.
* **For feature requests**, For the feature requests, please follow the issue template format while creating a feature requests. We want to improve upon SRIOV Network Operator incrementally which means small changes or features at a time.
Expand All @@ -71,7 +71,7 @@ Once you're ready to contribute code back to this repo, start with these steps:
* Clone the fork to your machine:

```
$ git clone https://github.com/k8snetworkplumbingwg/sriov-network-operator.git
$ git clone https://github.com/togethercomputer/sriov-network-operator.git
```

* Create a topic branch with prefix `dev/` for your change and checkout that branch:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM golang:1.22 AS builder
WORKDIR /go/src/github.com/k8snetworkplumbingwg/sriov-network-operator
WORKDIR /go/src/github.com/togethercomputer/sriov-network-operator
COPY . .
RUN make _build-manager BIN_PATH=build/_output/cmd

FROM quay.io/centos/centos:stream9
COPY --from=builder /go/src/github.com/k8snetworkplumbingwg/sriov-network-operator/build/_output/cmd/manager /usr/bin/sriov-network-operator
COPY --from=builder /go/src/github.com/togethercomputer/sriov-network-operator/build/_output/cmd/manager /usr/bin/sriov-network-operator
COPY bindata /bindata
ENV OPERATOR_NAME=sriov-network-operator
CMD ["/usr/bin/sriov-network-operator"]
4 changes: 2 additions & 2 deletions Dockerfile.sriov-network-config-daemon
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM golang:1.22 AS builder
WORKDIR /go/src/github.com/k8snetworkplumbingwg/sriov-network-operator
WORKDIR /go/src/github.com/togethercomputer/sriov-network-operator
COPY . .
RUN make _build-sriov-network-config-daemon BIN_PATH=build/_output/cmd

Expand All @@ -10,6 +10,6 @@ ARG MSTFLINT=mstflint
RUN ARCH_DEP_PKGS=$(if [ "$(uname -m)" != "s390x" ]; then echo -n ${MSTFLINT} ; fi) && yum -y install hwdata pciutils $ARCH_DEP_PKGS && yum clean all
LABEL io.k8s.display-name="sriov-network-config-daemon" \
io.k8s.description="This is a daemon that manage and config sriov network devices in Kubernetes cluster"
COPY --from=builder /go/src/github.com/k8snetworkplumbingwg/sriov-network-operator/build/_output/cmd/sriov-network-config-daemon /usr/bin/
COPY --from=builder /go/src/github.com/togethercomputer/sriov-network-operator/build/_output/cmd/sriov-network-config-daemon /usr/bin/
COPY bindata /bindata
CMD ["/usr/bin/sriov-network-config-daemon"]
4 changes: 2 additions & 2 deletions Dockerfile.webhook
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM golang:1.22 AS builder
WORKDIR /go/src/github.com/k8snetworkplumbingwg/sriov-network-operator
WORKDIR /go/src/github.com/togethercomputer/sriov-network-operator
COPY . .
RUN make _build-webhook BIN_PATH=build/_output/cmd

FROM quay.io/centos/centos:stream9
LABEL io.k8s.display-name="sriov-network-webhook" \
io.k8s.description="This is an admission controller webhook that mutates and validates customer resources of sriov network operator."
USER 1001
COPY --from=builder /go/src/github.com/k8snetworkplumbingwg/sriov-network-operator/build/_output/cmd/webhook /usr/bin/webhook
COPY --from=builder /go/src/github.com/togethercomputer/sriov-network-operator/build/_output/cmd/webhook /usr/bin/webhook
CMD ["/usr/bin/webhook"]
14 changes: 7 additions & 7 deletions PROJECT
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ domain: openshift.io
layout:
- go.kubebuilder.io/v3
projectName: sriov-network-operator
repo: github.com/k8snetworkplumbingwg/sriov-network-operator
repo: github.com/togethercomputer/sriov-network-operator
resources:
- api:
crdVersion: v1
Expand All @@ -11,7 +11,7 @@ resources:
domain: openshift.io
group: sriovnetwork
kind: SriovNetwork
path: github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1
path: github.com/togethercomputer/sriov-network-operator/api/v1
version: v1
- api:
crdVersion: v1
Expand All @@ -20,7 +20,7 @@ resources:
domain: openshift.io
group: sriovnetwork
kind: SriovNetworkNodeState
path: github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1
path: github.com/togethercomputer/sriov-network-operator/api/v1
version: v1
- api:
crdVersion: v1
Expand All @@ -29,7 +29,7 @@ resources:
domain: openshift.io
group: sriovnetwork
kind: SriovIBNetwork
path: github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1
path: github.com/togethercomputer/sriov-network-operator/api/v1
version: v1
- api:
crdVersion: v1
Expand All @@ -38,7 +38,7 @@ resources:
domain: openshift.io
group: sriovnetwork
kind: SriovNetworkNodePolicy
path: github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1
path: github.com/togethercomputer/sriov-network-operator/api/v1
version: v1
- api:
crdVersion: v1
Expand All @@ -47,7 +47,7 @@ resources:
domain: openshift.io
group: sriovnetwork
kind: SriovOperatorConfig
path: github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1
path: github.com/togethercomputer/sriov-network-operator/api/v1
version: v1
- api:
crdVersion: v1
Expand All @@ -56,7 +56,7 @@ resources:
domain: openshift.io
group: sriovnetwork
kind: OVSNetwork
path: github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1
path: github.com/togethercomputer/sriov-network-operator/api/v1
version: v1
version: "3"
plugins:
Expand Down
8 changes: 4 additions & 4 deletions api/v1/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import (
"k8s.io/client-go/kubernetes"
logf "sigs.k8s.io/controller-runtime/pkg/log"

"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/consts"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/render"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/vars"
"github.com/togethercomputer/sriov-network-operator/pkg/consts"
"github.com/togethercomputer/sriov-network-operator/pkg/render"
"github.com/togethercomputer/sriov-network-operator/pkg/vars"
)

const (
Expand Down Expand Up @@ -715,7 +715,7 @@ func (cr *SriovIBNetwork) RenderNetAttDefWithGUID(status SriovNetworkNodeStateSt
// render RawCNIConfig manifests
data := render.MakeRenderData()
data.Data["CniType"] = "ib-sriov"

Check failure on line 717 in api/v1/helper.go

View workflow job for this annotation

GitHub Actions / build

string `ib-sriov` has 2 occurrences, make it a constant (goconst)

Check failure on line 717 in api/v1/helper.go

View workflow job for this annotation

GitHub Actions / Golangci-lint

string `ib-sriov` has 2 occurrences, make it a constant (goconst)
data.Data["pKey"] = cr.Spec.Pkey
data.Data["pKey"] = cr.Spec.PKey
data.Data["interfaceName"] = cr.Spec.InterfaceName
data.Data["SriovNetworkName"] = cr.Name
if cr.Spec.NetworkNamespace == "" {
Expand Down
4 changes: 2 additions & 2 deletions api/v1/helper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
intstrutil "k8s.io/apimachinery/pkg/util/intstr"

v1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/consts"
v1 "github.com/togethercomputer/sriov-network-operator/api/v1"
"github.com/togethercomputer/sriov-network-operator/pkg/consts"
)

var update = flag.Bool("updategolden", false, "update .golden files")
Expand Down
2 changes: 1 addition & 1 deletion cmd/sriov-network-config-daemon/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"github.com/spf13/cobra"
"sigs.k8s.io/controller-runtime/pkg/log"

snolog "github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/log"
snolog "github.com/togethercomputer/sriov-network-operator/pkg/log"
)

const (
Expand Down
22 changes: 11 additions & 11 deletions cmd/sriov-network-config-daemon/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ import (
"github.com/spf13/cobra"
"sigs.k8s.io/controller-runtime/pkg/log"

sriovv1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/consts"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/helper"
snolog "github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/log"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/platforms"
plugin "github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/plugins"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/plugins/generic"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/plugins/virtual"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/systemd"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/vars"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/version"
sriovv1 "github.com/togethercomputer/sriov-network-operator/api/v1"
"github.com/togethercomputer/sriov-network-operator/pkg/consts"
"github.com/togethercomputer/sriov-network-operator/pkg/helper"
snolog "github.com/togethercomputer/sriov-network-operator/pkg/log"
"github.com/togethercomputer/sriov-network-operator/pkg/platforms"
plugin "github.com/togethercomputer/sriov-network-operator/pkg/plugins"
"github.com/togethercomputer/sriov-network-operator/pkg/plugins/generic"
"github.com/togethercomputer/sriov-network-operator/pkg/plugins/virtual"
"github.com/togethercomputer/sriov-network-operator/pkg/systemd"
"github.com/togethercomputer/sriov-network-operator/pkg/vars"
"github.com/togethercomputer/sriov-network-operator/pkg/version"
)

const (
Expand Down
22 changes: 11 additions & 11 deletions cmd/sriov-network-config-daemon/service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ import (
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"

sriovnetworkv1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/helper"
helperMock "github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/helper/mock"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/platforms"
platformsMock "github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/platforms/mock"
plugin "github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/plugins"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/plugins/generic"
pluginsMock "github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/plugins/mock"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/systemd"
"github.com/k8snetworkplumbingwg/sriov-network-operator/test/util/fakefilesystem"
testHelpers "github.com/k8snetworkplumbingwg/sriov-network-operator/test/util/helpers"
sriovnetworkv1 "github.com/togethercomputer/sriov-network-operator/api/v1"
"github.com/togethercomputer/sriov-network-operator/pkg/helper"
helperMock "github.com/togethercomputer/sriov-network-operator/pkg/helper/mock"
"github.com/togethercomputer/sriov-network-operator/pkg/platforms"
platformsMock "github.com/togethercomputer/sriov-network-operator/pkg/platforms/mock"
plugin "github.com/togethercomputer/sriov-network-operator/pkg/plugins"
"github.com/togethercomputer/sriov-network-operator/pkg/plugins/generic"
pluginsMock "github.com/togethercomputer/sriov-network-operator/pkg/plugins/mock"
"github.com/togethercomputer/sriov-network-operator/pkg/systemd"
"github.com/togethercomputer/sriov-network-operator/test/util/fakefilesystem"
testHelpers "github.com/togethercomputer/sriov-network-operator/test/util/helpers"
)

func restoreOrigFuncs() {
Expand Down
18 changes: 9 additions & 9 deletions cmd/sriov-network-config-daemon/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ import (
configv1 "github.com/openshift/api/config/v1"
mcfgv1 "github.com/openshift/machine-config-operator/pkg/apis/machineconfiguration.openshift.io/v1"

sriovnetworkv1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
snclientset "github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/client/clientset/versioned"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/consts"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/daemon"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/featuregate"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/helper"
snolog "github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/log"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/platforms"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/vars"
sriovnetworkv1 "github.com/togethercomputer/sriov-network-operator/api/v1"
snclientset "github.com/togethercomputer/sriov-network-operator/pkg/client/clientset/versioned"
"github.com/togethercomputer/sriov-network-operator/pkg/consts"
"github.com/togethercomputer/sriov-network-operator/pkg/daemon"
"github.com/togethercomputer/sriov-network-operator/pkg/featuregate"
"github.com/togethercomputer/sriov-network-operator/pkg/helper"
snolog "github.com/togethercomputer/sriov-network-operator/pkg/log"
"github.com/togethercomputer/sriov-network-operator/pkg/platforms"
"github.com/togethercomputer/sriov-network-operator/pkg/vars"
)

// stringList is a list of strings, implements pflag.Value interface
Expand Down
2 changes: 1 addition & 1 deletion cmd/sriov-network-config-daemon/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/spf13/cobra"

"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/version"
"github.com/togethercomputer/sriov-network-operator/pkg/version"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion cmd/webhook/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"k8s.io/klog/v2"
"sigs.k8s.io/controller-runtime/pkg/log"

snolog "github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/log"
snolog "github.com/togethercomputer/sriov-network-operator/pkg/log"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions cmd/webhook/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
"k8s.io/apimachinery/pkg/runtime"
"sigs.k8s.io/controller-runtime/pkg/log"

snolog "github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/log"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/webhook"
snolog "github.com/togethercomputer/sriov-network-operator/pkg/log"
"github.com/togethercomputer/sriov-network-operator/pkg/webhook"
)

var (
Expand Down
12 changes: 6 additions & 6 deletions controllers/drain_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ import (
"sigs.k8s.io/controller-runtime/pkg/log"
"sigs.k8s.io/controller-runtime/pkg/reconcile"

sriovnetworkv1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
constants "github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/consts"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/drain"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/platforms"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/utils"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/vars"
sriovnetworkv1 "github.com/togethercomputer/sriov-network-operator/api/v1"
constants "github.com/togethercomputer/sriov-network-operator/pkg/consts"
"github.com/togethercomputer/sriov-network-operator/pkg/drain"
"github.com/togethercomputer/sriov-network-operator/pkg/platforms"
"github.com/togethercomputer/sriov-network-operator/pkg/utils"
"github.com/togethercomputer/sriov-network-operator/pkg/vars"
)

var (
Expand Down
12 changes: 6 additions & 6 deletions controllers/drain_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ import (

mcfgv1 "github.com/openshift/machine-config-operator/pkg/apis/machineconfiguration.openshift.io/v1"

sriovnetworkv1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
constants "github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/consts"
mock_platforms "github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/platforms/mock"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/platforms/openshift"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/utils"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/vars"
sriovnetworkv1 "github.com/togethercomputer/sriov-network-operator/api/v1"
constants "github.com/togethercomputer/sriov-network-operator/pkg/consts"
mock_platforms "github.com/togethercomputer/sriov-network-operator/pkg/platforms/mock"
"github.com/togethercomputer/sriov-network-operator/pkg/platforms/openshift"
"github.com/togethercomputer/sriov-network-operator/pkg/utils"
"github.com/togethercomputer/sriov-network-operator/pkg/vars"
)

var _ = Describe("Drain Controller", Ordered, func() {
Expand Down
6 changes: 3 additions & 3 deletions controllers/generic_network_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ import (
"sigs.k8s.io/controller-runtime/pkg/log"
"sigs.k8s.io/controller-runtime/pkg/reconcile"

sriovnetworkv1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/utils"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/vars"
sriovnetworkv1 "github.com/togethercomputer/sriov-network-operator/api/v1"
"github.com/togethercomputer/sriov-network-operator/pkg/utils"
"github.com/togethercomputer/sriov-network-operator/pkg/vars"
)

type networkCRInstance interface {
Expand Down
10 changes: 5 additions & 5 deletions controllers/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ import (
"sigs.k8s.io/controller-runtime/pkg/log"
"sigs.k8s.io/controller-runtime/pkg/predicate"

sriovnetworkv1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/apply"
constants "github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/consts"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/render"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/vars"
sriovnetworkv1 "github.com/togethercomputer/sriov-network-operator/api/v1"
"github.com/togethercomputer/sriov-network-operator/pkg/apply"
constants "github.com/togethercomputer/sriov-network-operator/pkg/consts"
"github.com/togethercomputer/sriov-network-operator/pkg/render"
"github.com/togethercomputer/sriov-network-operator/pkg/vars"
)

var webhooks = map[string](string){
Expand Down
4 changes: 2 additions & 2 deletions controllers/helper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
controllerruntime "sigs.k8s.io/controller-runtime"

sriovnetworkv1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
"github.com/k8snetworkplumbingwg/sriov-network-operator/pkg/vars"
sriovnetworkv1 "github.com/togethercomputer/sriov-network-operator/api/v1"
"github.com/togethercomputer/sriov-network-operator/pkg/vars"
)

func TestNodeSelectorMerge(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion controllers/ovsnetwork_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"

sriovnetworkv1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
sriovnetworkv1 "github.com/togethercomputer/sriov-network-operator/api/v1"
)

// OVSNetworkReconciler reconciles a OVSNetwork object
Expand Down
4 changes: 2 additions & 2 deletions controllers/ovsnetwork_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"

v1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
"github.com/k8snetworkplumbingwg/sriov-network-operator/test/util"
v1 "github.com/togethercomputer/sriov-network-operator/api/v1"
"github.com/togethercomputer/sriov-network-operator/test/util"
)

func getOvsNetworkCR() *v1.OVSNetwork {
Expand Down
2 changes: 1 addition & 1 deletion controllers/sriovibnetwork_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"

sriovnetworkv1 "github.com/k8snetworkplumbingwg/sriov-network-operator/api/v1"
sriovnetworkv1 "github.com/togethercomputer/sriov-network-operator/api/v1"
)

// SriovIBNetworkReconciler reconciles a SriovIBNetwork object
Expand Down
Loading

0 comments on commit 7574a26

Please sign in to comment.