Skip to content

Commit ab27ace

Browse files
Merge pull request #752 from lpiwowar/add-test-operator
Add test operator into the openstack-operator-index
2 parents 3b4c045 + a61502c commit ab27ace

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ require (
3737
github.com/openstack-k8s-operators/placement-operator/api v0.3.1-0.20240529171513-a5b0bf43b21f
3838
github.com/openstack-k8s-operators/swift-operator/api v0.3.1-0.20240523121736-379011b2cfac
3939
github.com/openstack-k8s-operators/telemetry-operator/api v0.3.1-0.20240529090522-c780bd90b147
40+
github.com/openstack-k8s-operators/test-operator/api v0.0.0-20240425083108-038639a6a905
4041
github.com/operator-framework/api v0.20.0
4142
github.com/rabbitmq/cluster-operator/v2 v2.6.0
4243
go.uber.org/zap v1.27.0

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,8 @@ github.com/openstack-k8s-operators/swift-operator/api v0.3.1-0.20240523121736-37
150150
github.com/openstack-k8s-operators/swift-operator/api v0.3.1-0.20240523121736-379011b2cfac/go.mod h1:qCO/0ZLhijlvPbeMKThUqIZWely/0zoaWXFFqTuovhY=
151151
github.com/openstack-k8s-operators/telemetry-operator/api v0.3.1-0.20240529090522-c780bd90b147 h1:+X4c8beJnrdFwLX67Y7vK+7hWp1svRp4hT2hTdNP/b8=
152152
github.com/openstack-k8s-operators/telemetry-operator/api v0.3.1-0.20240529090522-c780bd90b147/go.mod h1:ADN4s09xZpxhnmjD5s0gcRIOm73IUwA6kpimioiGIAI=
153+
github.com/openstack-k8s-operators/test-operator/api v0.0.0-20240425083108-038639a6a905 h1:4c1fJGWFKwloFniPUj/o9yO/eFk5OZt+hYe5VaBKF5g=
154+
github.com/openstack-k8s-operators/test-operator/api v0.0.0-20240425083108-038639a6a905/go.mod h1:UgqzIVmPod3EOAwoaiB4nXSpyOO5NI2GJKAwjLi+VzU=
153155
github.com/operator-framework/api v0.20.0 h1:A2YCRhr+6s0k3pRJacnwjh1Ue8BqjIGuQ2jvPg9XCB4=
154156
github.com/operator-framework/api v0.20.0/go.mod h1:rXPOhrQ6mMeXqCmpDgt1ALoar9ZlHL+Iy5qut9R99a4=
155157
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=

main.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ import (
5353
placementv1 "github.com/openstack-k8s-operators/placement-operator/api/v1beta1"
5454
swiftv1 "github.com/openstack-k8s-operators/swift-operator/api/v1beta1"
5555
telemetryv1 "github.com/openstack-k8s-operators/telemetry-operator/api/v1beta1"
56+
// Note(lpiwowar): Please, do not remove! This import is necessary in order
57+
// to make the test-operator part of the openstack-operator-index.
58+
_ "github.com/openstack-k8s-operators/test-operator/api/v1beta1"
5659
rabbitmqclusterv2 "github.com/rabbitmq/cluster-operator/v2/api/v1beta1"
5760
"sigs.k8s.io/controller-runtime/pkg/client/config"
5861

0 commit comments

Comments
 (0)