Skip to content

Commit 5384a3d

Browse files
Merge pull request #1061 from fao89/dropaee
Drop aee-operator dependency
2 parents fb1dd00 + f8e246e commit 5384a3d

File tree

4 files changed

+0
-14
lines changed

4 files changed

+0
-14
lines changed

dependencies.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,6 @@ dependencies:
5151
value:
5252
packageName: nova-operator
5353
version: ">=0.0.0"
54-
- type: olm.package
55-
value:
56-
packageName: openstack-ansibleee-operator
57-
version: ">=0.0.0"
5854
- type: olm.package
5955
value:
6056
packageName: openstack-baremetal-operator

go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ require (
3131
github.com/openstack-k8s-operators/neutron-operator/api v0.4.1-0.20240906131104-1216e2478b19
3232
github.com/openstack-k8s-operators/nova-operator/api v0.4.1-0.20240907101151-b05427a4ffbf
3333
github.com/openstack-k8s-operators/octavia-operator/api v0.4.1-0.20240906123247-d049901982ac
34-
github.com/openstack-k8s-operators/openstack-ansibleee-operator/api v0.4.1-0.20240819105135-20bba339978c
3534
github.com/openstack-k8s-operators/openstack-baremetal-operator/api v0.4.1-0.20240906043908-171788786286
3635
github.com/openstack-k8s-operators/openstack-operator/apis v0.0.0-20240531084739-3b4c0451297c
3736
github.com/openstack-k8s-operators/ovn-operator/api v0.4.1-0.20240909074420-f268cc641a1d

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,6 @@ github.com/openstack-k8s-operators/nova-operator/api v0.4.1-0.20240907101151-b05
136136
github.com/openstack-k8s-operators/nova-operator/api v0.4.1-0.20240907101151-b05427a4ffbf/go.mod h1:TPjN09Doefidj9cJM5wfRu2FUA2xqcGPxVL39Nmddfo=
137137
github.com/openstack-k8s-operators/octavia-operator/api v0.4.1-0.20240906123247-d049901982ac h1:q9wC1Dykx2Eg1Jc+v2uYR7mkbNB0RvTdZqjdrg1EfcM=
138138
github.com/openstack-k8s-operators/octavia-operator/api v0.4.1-0.20240906123247-d049901982ac/go.mod h1:tGgavimnAXiBEw1TKHbW3jOVnGD84AI4aVQi7+NQ3sw=
139-
github.com/openstack-k8s-operators/openstack-ansibleee-operator/api v0.4.1-0.20240819105135-20bba339978c h1:uwLzBhrXB4PmC+ZrI/3r8lROXHEEhb8YL77VowX3UaU=
140-
github.com/openstack-k8s-operators/openstack-ansibleee-operator/api v0.4.1-0.20240819105135-20bba339978c/go.mod h1:eBaU1YIVyMY9vdhWMl6nWf2prCgme+S5Bp0U6r0UWtY=
141139
github.com/openstack-k8s-operators/openstack-baremetal-operator/api v0.4.1-0.20240906043908-171788786286 h1:Z8fIh06z1oWnJAuPkzPHjDZQGVOJHeuaXAyrlM7RHUc=
142140
github.com/openstack-k8s-operators/openstack-baremetal-operator/api v0.4.1-0.20240906043908-171788786286/go.mod h1:BOjHTeLCZK7A0iAME27ZDML6qkkOuK2iG3Gtib78Z6Q=
143141
github.com/openstack-k8s-operators/ovn-operator/api v0.4.1-0.20240909074420-f268cc641a1d h1:mRht4Npry4p1Qfm01ygVjenfVuDFMZ02YV/i2uKJXFM=

tests/functional/dataplane/suite_test.go

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ import (
4242
corev1 "k8s.io/api/core/v1"
4343

4444
infrav1 "github.com/openstack-k8s-operators/infra-operator/apis/network/v1beta1"
45-
aee "github.com/openstack-k8s-operators/openstack-ansibleee-operator/api/v1beta1"
4645
baremetalv1 "github.com/openstack-k8s-operators/openstack-baremetal-operator/api/v1beta1"
4746
openstackv1 "github.com/openstack-k8s-operators/openstack-operator/apis/core/v1beta1"
4847
dataplanev1 "github.com/openstack-k8s-operators/openstack-operator/apis/dataplane/v1beta1"
@@ -91,9 +90,6 @@ var _ = BeforeSuite(func() {
9190

9291
const gomod = "../../../go.mod"
9392

94-
aeeCRDs, err := test.GetCRDDirFromModule(
95-
"github.com/openstack-k8s-operators/openstack-ansibleee-operator/api", gomod, "bases")
96-
Expect(err).ShouldNot(HaveOccurred())
9793
baremetalCRDs, err := test.GetCRDDirFromModule(
9894
"github.com/openstack-k8s-operators/openstack-baremetal-operator/api", gomod, "bases")
9995
Expect(err).ShouldNot(HaveOccurred())
@@ -110,7 +106,6 @@ var _ = BeforeSuite(func() {
110106
testEnv = &envtest.Environment{
111107
CRDDirectoryPaths: []string{
112108
filepath.Join("..", "..", "..", "config", "crd", "bases"),
113-
aeeCRDs,
114109
baremetalCRDs,
115110
infraCRDs,
116111
certmgrv1CRDs,
@@ -136,8 +131,6 @@ var _ = BeforeSuite(func() {
136131
// will silently not start in the test env.
137132
err = dataplanev1.AddToScheme(scheme.Scheme)
138133
Expect(err).NotTo(HaveOccurred())
139-
err = aee.AddToScheme(scheme.Scheme)
140-
Expect(err).NotTo(HaveOccurred())
141134
err = batchv1.AddToScheme(scheme.Scheme)
142135
Expect(err).NotTo(HaveOccurred())
143136
err = corev1.AddToScheme(scheme.Scheme)

0 commit comments

Comments
 (0)