File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
components/odh-notebook-controller Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -140,20 +140,20 @@ func main() {
140
140
setupLog .Info ("Controller is running in namespace" , "namespace" , namespace )
141
141
if err = (& controllers.OpenshiftNotebookReconciler {
142
142
Client : mgr .GetClient (),
143
- Log : ctrl .Log .WithName ("controllers" ).WithName ("Notebook " ),
143
+ Log : ctrl .Log .WithName ("controllers" ).WithName ("odh-notebook-controller " ),
144
144
Namespace : namespace ,
145
145
Scheme : mgr .GetScheme (),
146
146
Config : mgr .GetConfig (),
147
147
}).SetupWithManager (mgr ); err != nil {
148
- setupLog .Error (err , "unable to create controller" , "controller" , "Notebook " )
148
+ setupLog .Error (err , "unable to create controller" , "controller" , "odh-notebook-controller " )
149
149
os .Exit (1 )
150
150
}
151
151
152
152
// Setup notebook mutating webhook
153
153
hookServer := mgr .GetWebhookServer ()
154
154
notebookWebhook := & webhook.Admission {
155
155
Handler : & controllers.NotebookWebhook {
156
- Log : ctrl .Log .WithName ("controllers" ).WithName ("Notebook " ),
156
+ Log : ctrl .Log .WithName ("controllers" ).WithName ("odh-notebook-webhook " ),
157
157
Client : mgr .GetClient (),
158
158
Config : mgr .GetConfig (),
159
159
Namespace : namespace ,
You can’t perform that action at this time.
0 commit comments