From ae4dd1db76a157341f211747e0da5e526ca24b8d Mon Sep 17 00:00:00 2001 From: Zachary Barry Date: Fri, 22 Feb 2019 00:09:22 -0500 Subject: [PATCH] Custom provider_config options for NodeProvider implementations (#4075) * added a key to send custom provider_config options to NodeProvider implementations * Update autoscaler.py * Update autoscaler.py --- python/ray/autoscaler/autoscaler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/ray/autoscaler/autoscaler.py b/python/ray/autoscaler/autoscaler.py index b501f5201..dce68d1f7 100644 --- a/python/ray/autoscaler/autoscaler.py +++ b/python/ray/autoscaler/autoscaler.py @@ -73,6 +73,7 @@ CLUSTER_CONFIG_SCHEMA = { "head_ip": (str, OPTIONAL), # local cluster head node "worker_ips": (list, OPTIONAL), # local cluster worker nodes "use_internal_ips": (bool, OPTIONAL), # don't require public ips + "extra_config": (dict, OPTIONAL), # provider-specific config }, REQUIRED),