@@ -35,6 +35,7 @@ import (
35
35
"k8s.io/client-go/kubernetes"
36
36
listerscorev1 "k8s.io/client-go/listers/core/v1"
37
37
toolscache "k8s.io/client-go/tools/cache"
38
+ "k8s.io/utils/clock"
38
39
39
40
"sigs.k8s.io/controller-runtime/pkg/manager"
40
41
@@ -76,7 +77,7 @@ func NewCertManager(mgr manager.Manager, installNamespace string, additionalName
76
77
return nil , err
77
78
}
78
79
79
- cm := newCertManager (k8sClient , installNamespace , additionalNamespaces ... )
80
+ cm := newCertManager (k8sClient , installNamespace , clock. RealClock {}, additionalNamespaces ... )
80
81
81
82
// so we can start caches
82
83
if err = mgr .Add (cm ); err != nil {
@@ -86,7 +87,7 @@ func NewCertManager(mgr manager.Manager, installNamespace string, additionalName
86
87
return cm , nil
87
88
}
88
89
89
- func newCertManager (client kubernetes.Interface , installNamespace string , additionalNamespaces ... string ) * certManager {
90
+ func newCertManager (client kubernetes.Interface , installNamespace string , clock clock. PassiveClock , additionalNamespaces ... string ) * certManager {
90
91
namespaces := append (additionalNamespaces , installNamespace )
91
92
informers := v1helpers .NewKubeInformersForNamespaces (client , namespaces ... )
92
93
@@ -95,7 +96,7 @@ func newCertManager(client kubernetes.Interface, installNamespace string, additi
95
96
log .Info ("Unable to get controller reference, using namespace" )
96
97
}
97
98
98
- eventRecorder := events .NewRecorder (client .CoreV1 ().Events (installNamespace ), installNamespace , controllerRef )
99
+ eventRecorder := events .NewRecorder (client .CoreV1 ().Events (installNamespace ), installNamespace , controllerRef , clock )
99
100
100
101
return & certManager {
101
102
namespaces : namespaces ,
0 commit comments