Skip to content

Commit b32fd60

Browse files
committed
fixes
1 parent 82a0fe1 commit b32fd60

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/cluster/install.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ func (m *manager) initializeKubernetesClients(ctx context.Context) error {
546546
// initializeKubernetesClients initializes clients which are used
547547
// once the cluster is up later on in the install process.
548548
func (m *manager) initializeOperatorDeployer(ctx context.Context) (err error) {
549-
m.aroOperatorDeployer, err = deploy.New(m.log, m.env, m.doc.OpenShiftCluster, m.arocli, m.ch, m.extensionscli, m.kubernetescli, m.operatorcli)
549+
m.aroOperatorDeployer, err = deploy.New(m.log, m.env, m.doc.OpenShiftCluster, m.subscriptionDoc, m.arocli, m.ch, m.extensionscli, m.kubernetescli, m.operatorcli)
550550
return
551551
}
552552

pkg/operator/deploy/deploy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ type operator struct {
7676
dh dynamichelper.Interface
7777
}
7878

79-
func New(log *logrus.Entry, env env.Interface, oc *api.OpenShiftCluster, arocli aroclient.Interface, client clienthelper.Interface, extensionscli extensionsclient.Interface, kubernetescli kubernetes.Interface, operatorcli operatorclient.Interface, subscriptionDoc *api.SubscriptionDocument) (Operator, error) {
79+
func New(log *logrus.Entry, env env.Interface, oc *api.OpenShiftCluster, subscriptionDoc *api.SubscriptionDocument, arocli aroclient.Interface, client clienthelper.Interface, extensionscli extensionsclient.Interface, kubernetescli kubernetes.Interface, operatorcli operatorclient.Interface) (Operator, error) {
8080
restConfig, err := restconfig.RestConfig(env, oc)
8181
if err != nil {
8282
return nil, err

0 commit comments

Comments
 (0)