@@ -94,7 +94,7 @@ type CoreConfig struct {
94
94
ImageManager string `json:"image_manager" yaml:"image_manager"`
95
95
ImageDownloader string `json:"image_downloader" yaml:"image_downloader"`
96
96
ImageKubexit string `json:"image_kubexit" yaml:"image_kubexit"`
97
- ImageRequestMonitor string `json:"image_request_monitor " yaml:"image_request_monitor "`
97
+ ImageProxy string `json:"image_proxy " yaml:"image_proxy "`
98
98
ImageAsyncGateway string `json:"image_async_gateway" yaml:"image_async_gateway"`
99
99
ImageEnqueuer string `json:"image_enqueuer" yaml:"image_enqueuer"`
100
100
ImageClusterAutoscaler string `json:"image_cluster_autoscaler" yaml:"image_cluster_autoscaler"`
@@ -354,9 +354,9 @@ var CoreConfigStructFieldValidations = []*cr.StructFieldValidation{
354
354
},
355
355
},
356
356
{
357
- StructField : "ImageRequestMonitor " ,
357
+ StructField : "ImageProxy " ,
358
358
StringValidation : & cr.StringValidation {
359
- Default : consts .DefaultRegistry () + "/request-monitor :" + consts .CortexVersion ,
359
+ Default : consts .DefaultRegistry () + "/proxy :" + consts .CortexVersion ,
360
360
Validator : validateImageVersion ,
361
361
},
362
362
},
@@ -1363,8 +1363,8 @@ func (cc *CoreConfig) TelemetryEvent() map[string]interface{} {
1363
1363
if ! strings .HasPrefix (cc .ImageKubexit , "cortexlabs/" ) {
1364
1364
event ["image_kubexit._is_custom" ] = true
1365
1365
}
1366
- if ! strings .HasPrefix (cc .ImageRequestMonitor , "cortexlabs/" ) {
1367
- event ["image_request_monitor ._is_custom" ] = true
1366
+ if ! strings .HasPrefix (cc .ImageProxy , "cortexlabs/" ) {
1367
+ event ["image_proxy ._is_custom" ] = true
1368
1368
}
1369
1369
if ! strings .HasPrefix (cc .ImageAsyncGateway , "cortexlabs/" ) {
1370
1370
event ["image_async_gateway._is_custom" ] = true
0 commit comments