Skip to content

Commit 25bd6ea

Browse files
committed
operator: Remove k3d package
1 parent 1449104 commit 25bd6ea

File tree

12 files changed

+17
-470
lines changed

12 files changed

+17
-470
lines changed

charts/redpanda/go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ require (
100100
github.com/google/gnostic-models v0.6.9 // indirect
101101
github.com/google/go-cmp v0.6.0 // indirect
102102
github.com/google/gofuzz v1.2.0 // indirect
103+
github.com/google/pprof v0.0.0-20240525223248-4bfdf5a9a2af // indirect
103104
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
104105
github.com/google/uuid v1.6.0 // indirect
105106
github.com/gorilla/mux v1.8.1 // indirect
@@ -142,6 +143,8 @@ require (
142143
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
143144
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
144145
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
146+
github.com/onsi/ginkgo/v2 v2.19.0 // indirect
147+
github.com/onsi/gomega v1.34.1 // indirect
145148
github.com/opencontainers/go-digest v1.0.1-0.20231025023718-d50d2fec9c98 // indirect
146149
github.com/opencontainers/image-spec v1.1.0 // indirect
147150
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
@@ -153,7 +156,6 @@ require (
153156
github.com/prometheus/common v0.55.0 // indirect
154157
github.com/prometheus/procfs v0.15.1 // indirect
155158
github.com/redpanda-data/common-go/net v0.1.0 // indirect
156-
github.com/redpanda-data/redpanda-operator/operator v0.0.0-20250419175459-064513f9bee4 // indirect
157159
github.com/rivo/uniseg v0.4.7 // indirect
158160
github.com/rogpeppe/go-internal v1.12.0 // indirect
159161
github.com/rubenv/sql-migrate v1.5.2 // indirect

charts/redpanda/go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,8 +440,6 @@ github.com/redpanda-data/redpanda-operator/charts/console v0.0.0-20250407202713-
440440
github.com/redpanda-data/redpanda-operator/charts/console v0.0.0-20250407202713-3127fa24d322/go.mod h1:Sof2HY8U+RLesHJInGLoqhUMzN8iN8gUHXALbROsew8=
441441
github.com/redpanda-data/redpanda-operator/gotohelm v1.1.0 h1:IV2Ic66JDKPtCnNU4Kn1naJlzZmhl0izRj17qgTCo20=
442442
github.com/redpanda-data/redpanda-operator/gotohelm v1.1.0/go.mod h1:usCpPzzzhgtPrRTiUQOzFqGmukce8U0SrzEeX2ONDFE=
443-
github.com/redpanda-data/redpanda-operator/operator v0.0.0-20250419175459-064513f9bee4 h1:1uRFnRn+s/jZFzHn/xQCAhou489t4U4j74iTNAiirSw=
444-
github.com/redpanda-data/redpanda-operator/operator v0.0.0-20250419175459-064513f9bee4/go.mod h1:IGmuwDlTdncuGz/fJEFnbxrAeuBqduDcSHqGF1Khby8=
445443
github.com/redpanda-data/redpanda/src/go/rpk v0.0.0-20240827155712-244863ea0ae8 h1:uTQKqF8UPNxYxKBJ11VlG6Vt2l9ctkkeXsmmjHUSUG4=
446444
github.com/redpanda-data/redpanda/src/go/rpk v0.0.0-20240827155712-244863ea0ae8/go.mod h1:97qkjcMI3gDL+y+aY/w5o0xF2qGHFof6rCXIYjnTalM=
447445
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=

operator/internal/controller/pvcunbinder/pvcunbinder_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
3131

3232
"github.com/redpanda-data/redpanda-operator/operator/internal/controller/pvcunbinder"
33-
"github.com/redpanda-data/redpanda-operator/operator/pkg/k3d"
33+
"github.com/redpanda-data/redpanda-operator/pkg/k3d"
3434
"github.com/redpanda-data/redpanda-operator/pkg/testutil"
3535
)
3636

operator/internal/testenv/testenv.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import (
3535
"sigs.k8s.io/controller-runtime/pkg/envtest"
3636
"sigs.k8s.io/controller-runtime/pkg/metrics/server"
3737

38-
"github.com/redpanda-data/redpanda-operator/operator/pkg/k3d"
38+
"github.com/redpanda-data/redpanda-operator/pkg/k3d"
3939
"github.com/redpanda-data/redpanda-operator/pkg/testutil"
4040
)
4141

operator/pkg/client/factory_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ import (
4141
"github.com/redpanda-data/redpanda-operator/operator/internal/controller/vectorized"
4242
"github.com/redpanda-data/redpanda-operator/operator/internal/testenv"
4343
"github.com/redpanda-data/redpanda-operator/operator/pkg/admin"
44-
"github.com/redpanda-data/redpanda-operator/operator/pkg/k3d"
4544
"github.com/redpanda-data/redpanda-operator/operator/pkg/resources"
4645
"github.com/redpanda-data/redpanda-operator/pkg/helm"
46+
"github.com/redpanda-data/redpanda-operator/pkg/k3d"
4747
"github.com/redpanda-data/redpanda-operator/pkg/kube"
4848
"github.com/redpanda-data/redpanda-operator/pkg/testutil"
4949
)

operator/pkg/k3d/cert-manager.yaml

Lines changed: 0 additions & 15 deletions
This file was deleted.

operator/pkg/k3d/integration_on.go

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)