Skip to content

Commit bb4eb9a

Browse files
fix(deps): update module github.com/openmcp-project/openmcp-operator/api to v0.13.1 (#147)
* fix(deps): update module github.com/openmcp-project/openmcp-operator/api to v0.13.1 * fix method name --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Johannes Aubart <[email protected]>
1 parent 735cda4 commit bb4eb9a

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

cmd/mcp-operator/app/app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ func (o *Options) run(ctx context.Context) error {
348348
if o.ActiveControllers.Has(ControllerIDAPIServer) {
349349
// APIServer controller
350350
// build platform cluster client for v2 path
351-
v2scheme := v2install.InstallOperatorAPIs(runtime.NewScheme())
351+
v2scheme := v2install.InstallOperatorAPIsPlatform(runtime.NewScheme())
352352
platformClient, err := client.New(o.LaaSClusterConfig, client.Options{
353353
Scheme: v2scheme,
354354
})

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ require (
1717
github.com/openmcp-project/control-plane-operator v0.1.14
1818
github.com/openmcp-project/controller-utils v0.19.0
1919
github.com/openmcp-project/mcp-operator/api v0.36.0
20-
github.com/openmcp-project/openmcp-operator/api v0.12.0
20+
github.com/openmcp-project/openmcp-operator/api v0.13.1
2121
github.com/openmcp-project/openmcp-operator/lib v0.12.0
2222
github.com/openmcp-project/service-provider-landscaper v0.5.0
2323
github.com/spf13/cobra v1.10.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ github.com/openmcp-project/controller-utils v0.19.0 h1:D4Ht3LI/Ue5yk2wdAnJEpChUV
116116
github.com/openmcp-project/controller-utils v0.19.0/go.mod h1:zxcbcmedLdlQ//X/nwdPvq/nM3ikyR13DbOivou2I4Y=
117117
github.com/openmcp-project/controller-utils/api v0.19.0 h1:2wOiLtHLVYeCSDxWJrCqCiFAxircAQ2EONIwq3QuZSI=
118118
github.com/openmcp-project/controller-utils/api v0.19.0/go.mod h1:qsvVfsL3xeeJ9keiKVMa50VOWmr+uR0VVejmQ7FCH18=
119-
github.com/openmcp-project/openmcp-operator/api v0.12.0 h1:g3Q0VFNsggDmMD4r+RmtiNwGohzu2JfEqp4RtlT5b1A=
120-
github.com/openmcp-project/openmcp-operator/api v0.12.0/go.mod h1:malWxgwCmDPeNklWe23rw9f9cvmq6LdIxlKmvqcYMqw=
119+
github.com/openmcp-project/openmcp-operator/api v0.13.1 h1:Gmk4Cr9gdnGCfamdGs1WEdklpTCqE0tfwtZ7kL32ks8=
120+
github.com/openmcp-project/openmcp-operator/api v0.13.1/go.mod h1:WkZ3N57ohZ1DA9o8pCjbAJCX6V6itA91e9itwVS3PxQ=
121121
github.com/openmcp-project/openmcp-operator/lib v0.12.0 h1:lPvuPH7dqgcPmw58bL5eUJ4+/kcFYEPFP5OHcmYxljg=
122122
github.com/openmcp-project/openmcp-operator/lib v0.12.0/go.mod h1:fsuMuyBanhyh7zYdgxLxIvbM3iEFnF7MsLRQjSx3SCk=
123123
github.com/openmcp-project/service-provider-landscaper v0.5.0 h1:NE1mScJg1BFJwsgCFJE5DCfZbPIsRhddV+0UiCPu08s=

test/utils/test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ func init() {
3232
utilruntime.Must(gardenv1beta1.AddToScheme(Scheme))
3333
utilruntime.Must(gardenauthenticationv1alpha1.AddToScheme(Scheme))
3434
utilruntime.Must(clientgoscheme.AddToScheme(Scheme))
35-
v2install.InstallOperatorAPIs(Scheme)
35+
v2install.InstallOperatorAPIsPlatform(Scheme)
36+
v2install.InstallOperatorAPIsOnboarding(Scheme)
3637
lsv2install.InstallProviderAPIs(Scheme)
3738
}
3839

0 commit comments

Comments
 (0)