@@ -36,13 +36,13 @@ type OpenMCPOperatorSetup struct {
3636
3737// Bootstrap sets up a the minimum set of components of an openMCP installation
3838func (s * OpenMCPSetup ) Bootstrap (testenv env.Environment ) error {
39- platformClusterName := envconf .RandomName ("platform- " , 16 )
39+ platformClusterName := envconf .RandomName ("platform" , 16 )
4040 s .Operator .Namespace = s .Namespace
4141 testenv .Setup (createPlatformCluster (platformClusterName )).
4242 Setup (envfuncs .CreateNamespace (s .Namespace )).
4343 Setup (s .installOpenMCPOperator ()).
44- Setup (s .loadServiceProviderImages (platformClusterName )).
4544 Setup (s .installClusterProviders ()).
45+ Setup (s .loadServiceProviderImages (platformClusterName )).
4646 Setup (s .installServiceProviders ()).
4747 Setup (s .verifyEnvironment ()).
4848 Finish (s .cleanup ()).
@@ -86,7 +86,7 @@ func (s *OpenMCPSetup) verifyEnvironment() types.EnvFunc {
8686func (s * OpenMCPSetup ) installOpenMCPOperator () types.EnvFunc {
8787 return func (ctx context.Context , c * envconf.Config ) (context.Context , error ) {
8888 // apply openmcp operator manifests
89- if _ , err := resources .CreateObjectsFromTemplateFile (ctx , c , "../pkg/setup/templates/openmcp-operator.yaml" , s .Operator ); err != nil {
89+ if _ , err := resources .CreateObjectsFromTemplateFile (ctx , c , "../pkg/setup/templates/openmcp-operator.yaml.tmpl " , s .Operator ); err != nil {
9090 return ctx , err
9191 }
9292 // wait for deployment to be ready
0 commit comments