@Ivo It’s a hidden param. You can see the source code for entire params. In long term, @sangcho can we make the param --dashboard-agent-grpc-port public?
@cli.command()
@click.option(
"--node-ip-address", required=False, type=str, help="the IP address of this node"
)
@click.option("--address", required=False, type=str, help="the address to use for Ray")
@click.option(
"--port",
type=int,
required=False,
help=f"the port of the head ray process. If not provided, defaults to "
f"{ray_constants.DEFAULT_PORT}; if port is set to 0, we will"
f" allocate an available port.",
)
@click.option(
"--redis-password",
required=False,
hidden=True,
type=str,
default=ray_constants.REDIS_DEFAULT_PASSWORD,
help="If provided, secure Redis ports with this password",
This file has been truncated. show original