Skip to content

Commit c516853

Browse files
committed
Updating log.
1 parent dc04863 commit c516853

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

internal/controller/ols_app_postgres_reconciliator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ func (r *OLSConfigReconciler) reconcilePostgresCA(ctx context.Context, cr *olsv1
345345
return nil
346346
}
347347

348-
r.logger.Info("Postgres CA hash updated - deployment will be updated via updatePostgresDeployment", "newHash", combinedHash)
348+
r.logger.Info("Postgres CA hash updated,deployment will be updated via updatePostgresDeployment")
349349

350350
return nil
351351
}

internal/controller/olsconfig_controller.go

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ import (
3535
ctrl "sigs.k8s.io/controller-runtime"
3636
"sigs.k8s.io/controller-runtime/pkg/client"
3737
"sigs.k8s.io/controller-runtime/pkg/handler"
38-
"sigs.k8s.io/controller-runtime/pkg/predicate"
3938
"sigs.k8s.io/controller-runtime/pkg/reconcile"
4039

4140
olsv1alpha1 "github.com/openshift/lightspeed-operator/api/v1alpha1"
@@ -349,15 +348,11 @@ func (r *OLSConfigReconciler) SetupWithManager(mgr ctrl.Manager) error {
349348
Owns(&corev1.PersistentVolumeClaim{}).
350349
Watches(&corev1.Secret{}, handler.EnqueueRequestsFromMapFunc(secretWatcherFilter)).
351350
Watches(&corev1.Secret{}, handler.EnqueueRequestsFromMapFunc(telemetryPullSecretWatcherFilter)).
352-
<<<<<<< HEAD
351+
Watches(&corev1.Secret{}, handler.EnqueueRequestsFromMapFunc(postgresCAWatcherFilter)).
353352
Watches(&corev1.ConfigMap{}, handler.EnqueueRequestsFromMapFunc(func(ctx context.Context, obj client.Object) []reconcile.Request {
354353
return r.configMapWatcherFilter(ctx, obj)
355354
})).
356-
=======
357-
Watches(&corev1.Secret{}, handler.EnqueueRequestsFromMapFunc(postgresCAWatcherFilter)).
358-
Watches(&corev1.ConfigMap{}, handler.EnqueueRequestsFromMapFunc(configMapWatcherFilter)).
359355
Watches(&corev1.ConfigMap{}, handler.EnqueueRequestsFromMapFunc(postgresCAWatcherFilter)).
360-
>>>>>>> ca97db2 (Postgres reconciliation on certificate rotation.)
361356
Owns(&consolev1.ConsolePlugin{}).
362357
Owns(&monv1.ServiceMonitor{}).
363358
Owns(&monv1.PrometheusRule{}).

0 commit comments

Comments
 (0)