diff --git a/ray-operator/controllers/ray/rayservice_controller.go b/ray-operator/controllers/ray/rayservice_controller.go index fe4c6dbcb05..0a7fcb03394 100644 --- a/ray-operator/controllers/ray/rayservice_controller.go +++ b/ray-operator/controllers/ray/rayservice_controller.go @@ -57,6 +57,8 @@ type RayServiceReconciler struct { Recorder record.EventRecorder // Currently, the Ray dashboard doesn't cache the Serve deployment config. // To avoid reapplying the same config repeatedly, cache the config in this map. + // Stores map of cacheKey to map of RayCluster name to Serve deployment config. + // where cacheKey is the combination of RayService namespace and name. ServeConfigs cmap.ConcurrentMap[string, cmap.ConcurrentMap[string, string]] RayClusterDeletionTimestamps cmap.ConcurrentMap[string, time.Time]