We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b668eb9 commit 043fd34Copy full SHA for 043fd34
1 file changed
rust/operator-binary/src/main.rs
@@ -131,10 +131,13 @@ async fn create_controller(
131
.owns(configmaps_api, watcher::Config::default())
132
.owns(services_api, watcher::Config::default());
133
134
- let event_recorder = Arc::new(Recorder::new(client.as_kube_client(), Reporter {
135
- controller: OPA_FULL_CONTROLLER_NAME.to_string(),
136
- instance: None,
137
- }));
+ let event_recorder = Arc::new(Recorder::new(
+ client.as_kube_client(),
+ Reporter {
+ controller: OPA_FULL_CONTROLLER_NAME.to_string(),
138
+ instance: None,
139
+ },
140
+ ));
141
controller
142
.run(
143
controller::reconcile_opa,
0 commit comments