@@ -98,11 +98,11 @@ func main() {
98
98
QPS : ptr .To (float32 (50 )),
99
99
Burst : ptr .To (int32 (100 )),
100
100
},
101
+ AppWrapper : & awconfig.AppWrapperConfig {
102
+ ManageJobsWithoutQueueName : true ,
103
+ StandaloneMode : true , // TODO: Enables AWController to work without Kueue; simplifies testing for now.
104
+ },
101
105
ControllerManager : config.ControllerManager {
102
- AppWrapper : awconfig.AppWrapperConfig {
103
- ManageJobsWithoutQueueName : true ,
104
- StandaloneMode : true , // TODO: Enables AWController to work without Kueue; simplifies testing for now.
105
- },
106
106
Metrics : config.MetricsConfiguration {
107
107
BindAddress : ":8080" ,
108
108
SecureServing : true ,
@@ -163,7 +163,7 @@ func main() {
163
163
})
164
164
exitOnError (err , "unable to start manager" )
165
165
166
- exitOnError (awctrl .SetupWithManager (ctx , mgr , & cfg .AppWrapper ), "unable to setup AppWrapper controller" )
166
+ exitOnError (awctrl .SetupWithManager (ctx , mgr , cfg .AppWrapper ), "unable to setup AppWrapper controller" )
167
167
168
168
exitOnError (mgr .AddHealthzCheck (cfg .Health .LivenessEndpointName , healthz .Ping ), "unable to set up health check" )
169
169
exitOnError (mgr .AddReadyzCheck (cfg .Health .ReadinessEndpointName , healthz .Ping ), "unable to set up ready check" )
0 commit comments