Skip to content

Commit 6842dd7

Browse files
authored
infra: update go modules post-migration (rh-ecosystem-edge#1116)
1 parent 8a24529 commit 6842dd7

File tree

484 files changed

+978
-975
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

484 files changed

+978
-975
lines changed

.golangci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,13 @@ linters:
9595
- golang.org/x/exp/slices
9696
- gopkg.in/k8snetworkplumbingwg/multus-cni.v4/pkg/types
9797
- golang.org/x/net/context
98+
- github.com/rh-ecosystem-edge/eco-goinfra
9899
oranapi:
99100
files:
100101
- pkg/oran/api
101102
allow:
102103
- $gostd
103-
- github.com/openshift-kni/eco-goinfra/pkg/oran/api
104+
- github.com/rh-ecosystem-edge/eco-goinfra/pkg/oran/api
104105
- github.com/oapi-codegen/runtime
105106
funlen:
106107
lines: 90

go.mod

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/openshift-kni/eco-goinfra
1+
module github.com/rh-ecosystem-edge/eco-goinfra
22

33
go 1.24.5
44

@@ -113,7 +113,6 @@ require (
113113
github.com/go-openapi/loads v0.22.0 // indirect
114114
github.com/go-openapi/spec v0.21.0 // indirect
115115
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
116-
github.com/go-test/deep v1.1.0 // indirect
117116
github.com/gogo/protobuf v1.3.2 // indirect
118117
github.com/golang/protobuf v1.5.4 // indirect
119118
github.com/google/btree v1.1.3 // indirect
@@ -226,6 +225,8 @@ require (
226225
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect
227226
)
228227

228+
require github.com/go-test/deep v1.1.0 // indirect
229+
229230
replace (
230231
github.com/imdario/mergo => github.com/imdario/mergo v0.3.16
231232
github.com/k8snetworkplumbingwg/sriov-network-operator => github.com/openshift/sriov-network-operator v0.0.0-20250625093820-3b2381406672 // release-4.18

integration/common.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"math/rand"
88
"time"
99

10-
"github.com/openshift-kni/eco-goinfra/pkg/namespace"
11-
"github.com/openshift-kni/eco-goinfra/pkg/pod"
10+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/namespace"
11+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/pod"
1212
corev1 "k8s.io/api/core/v1"
1313
)
1414

integration/configmap_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ package integration
66
import (
77
"testing"
88

9-
"github.com/openshift-kni/eco-goinfra/pkg/clients"
10-
"github.com/openshift-kni/eco-goinfra/pkg/configmap"
11-
"github.com/openshift-kni/eco-goinfra/pkg/namespace"
9+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/clients"
10+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/configmap"
11+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/namespace"
1212
"github.com/stretchr/testify/assert"
1313
)
1414

integration/daemonset_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ package integration
66
import (
77
"testing"
88

9-
"github.com/openshift-kni/eco-goinfra/pkg/clients"
10-
"github.com/openshift-kni/eco-goinfra/pkg/daemonset"
11-
"github.com/openshift-kni/eco-goinfra/pkg/namespace"
9+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/clients"
10+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/daemonset"
11+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/namespace"
1212
"github.com/stretchr/testify/assert"
1313
)
1414

integration/deployment_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"testing"
88
"time"
99

10-
"github.com/openshift-kni/eco-goinfra/pkg/clients"
11-
"github.com/openshift-kni/eco-goinfra/pkg/deployment"
12-
"github.com/openshift-kni/eco-goinfra/pkg/namespace"
10+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/clients"
11+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/deployment"
12+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/namespace"
1313
"github.com/stretchr/testify/assert"
1414
)
1515

integration/namespace_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"testing"
88
"time"
99

10-
"github.com/openshift-kni/eco-goinfra/pkg/clients"
11-
"github.com/openshift-kni/eco-goinfra/pkg/namespace"
12-
"github.com/openshift-kni/eco-goinfra/pkg/pod"
10+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/clients"
11+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/namespace"
12+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/pod"
1313
"github.com/stretchr/testify/assert"
1414
"k8s.io/apimachinery/pkg/runtime/schema"
1515
)

integration/networkpolicy_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ package integration
66
import (
77
"testing"
88

9-
"github.com/openshift-kni/eco-goinfra/pkg/clients"
10-
"github.com/openshift-kni/eco-goinfra/pkg/namespace"
11-
"github.com/openshift-kni/eco-goinfra/pkg/networkpolicy"
9+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/clients"
10+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/namespace"
11+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/networkpolicy"
1212
"github.com/stretchr/testify/assert"
1313
)
1414

integration/pod_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"fmt"
88
"testing"
99

10-
"github.com/openshift-kni/eco-goinfra/pkg/clients"
11-
"github.com/openshift-kni/eco-goinfra/pkg/namespace"
12-
"github.com/openshift-kni/eco-goinfra/pkg/pod"
10+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/clients"
11+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/namespace"
12+
"github.com/rh-ecosystem-edge/eco-goinfra/pkg/pod"
1313
"github.com/stretchr/testify/assert"
1414
)
1515

internal/sync/configs/amdgpu-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
local_api_directory: schemes/amd/gpu-operator/api/v1alpha1
88
replace_imports:
99
- old: '"https://github.com/ROCm/gpu-operator/api/v1alpha1"'
10-
new: '"github.com/openshift-kni/eco-goinfra/pkg/schemes/amd/gpu-operator/api/v1alpha1"'
10+
new: '"github.com/rh-ecosystem-edge/eco-goinfra/pkg/schemes/amd/gpu-operator/api/v1alpha1"'
1111
excludes:
1212
- "*_test.go"
1313
- "testdata"

0 commit comments

Comments
 (0)