thankful-tailor-28399
09/12/2024, 8:21 AMfreezing-airport-6809
average-finland-92144
09/12/2024, 6:56 PMenableIngress="true"
as part of your HeadNodeConfig
it should create an Ingress resource (assuming you have an Ingress controller available in your cluster). Flyte supports displaying the link in the UI but again, I haven't used it myself so I could be wrong.freezing-airport-6809
thankful-tailor-28399
09/13/2024, 11:17 AMray_config = RayJobConfig(
head_node_config=HeadNodeConfig(
ray_start_params={"log-color": "True", "enableIngress": "True"},
),
worker_node_config=[
WorkerNodeConfig(
group_name="ray-group",
replicas=1,
)
],
)
This would be correct? @average-finland-92144average-finland-92144
09/13/2024, 6:16 PMthankful-tailor-28399
09/16/2024, 7:03 AMHeadNodeConfig
only exposes ray_start_params
thankful-tailor-28399
09/16/2024, 7:04 AMaverage-finland-92144
09/16/2024, 10:55 AM