We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdd9b28 commit 95c5d20Copy full SHA for 95c5d20
1 file changed
pkg/connection/reconciler.go
@@ -109,6 +109,10 @@ func (r *PulsarConnectionReconciler) Reconcile(ctx context.Context) error {
109
return nil
110
}
111
112
+ if r.connection.Spec.AdminServiceURL == "" && r.connection.Spec.AdminServiceSecureURL != "" {
113
+ r.connection.Spec.AdminServiceURL = r.connection.Spec.AdminServiceSecureURL
114
+ }
115
+
116
// TODO use otelcontroller until kube-instrumentation upgrade controller-runtime version to newer
117
controllerutil.AddFinalizer(r.connection, resourcev1alpha1.FinalizerName)
118
if err := r.client.Update(ctx, r.connection); err != nil {
0 commit comments