Skip to content

Commit

Permalink
kogito-serverless-operator-331: Operator service discovery is not act…
Browse files Browse the repository at this point in the history
…ivated for the dev profile (apache#332)
  • Loading branch information
wmedvede authored and rgdoliveira committed Jan 29, 2024
1 parent 4d125c4 commit c8bd143
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion controllers/profiles/dev/profile_dev.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
package dev

import (
"github.com/apache/incubator-kie-kogito-serverless-operator/controllers/discovery"
"k8s.io/klog/v2"
"sigs.k8s.io/controller-runtime/pkg/client"

Expand All @@ -42,7 +43,8 @@ func (d developmentProfile) GetProfile() metadata.ProfileType {

func NewProfileReconciler(client client.Client) profiles.ProfileReconciler {
support := &common.StateSupport{
C: client,
C: client,
Catalog: discovery.NewServiceCatalog(client),
}

var ensurers *objectEnsurers
Expand Down

0 comments on commit c8bd143

Please sign in to comment.