Skip to content

Commit

Permalink
Fix konnector namespace
Browse files Browse the repository at this point in the history
Signed-off-by: Tamal Saha <[email protected]>
  • Loading branch information
tamalsaha committed Mar 29, 2024
1 parent 379ddcf commit 19c14ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/kubectl/bind-apiservice/plugin/konnector.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func (b *BindAPIServiceOptions) deployKonnector(ctx context.Context, config *res
fmt.Fprintf(b.Options.ErrOut, "⚠️ Newer konnector %s installed. To downgrade to %s use --downgrade-konnector.\n", konnectorVersion, bindVersion) // nolint: errcheck
}
} else {
fmt.Fprintf(b.Options.ErrOut, "🚀 Deploying konnector %s to namespace kube-bind.\n", bindVersion) // nolint: errcheck
fmt.Fprintf(b.Options.ErrOut, "🚀 Deploying konnector %s to namespace %s.\n", bindVersion, models.KonnectorNamespace) // nolint: errcheck
if err := konnector.Bootstrap(ctx, discoveryClient, dynamicClient, konnectorImage); err != nil {
return err
}
Expand Down

0 comments on commit 19c14ee

Please sign in to comment.