[autoscaler] Split autoscaler interface public private (#10898)

This commit is contained in:
Eric Liang
2020-09-18 18:16:23 -07:00
committed by GitHub
parent 9a07c7b963
commit 6a227ae501
56 changed files with 436 additions and 251 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import kubernetes
import subprocess
from ray import services, logger
from ray.autoscaler.command_runner import KubernetesCommandRunner
from ray.autoscaler._private.command_runner import KubernetesCommandRunner
from ray.tune.syncer import NodeSyncer
from ray.tune.sync_client import SyncClient
@@ -1,6 +1,6 @@
import unittest
from ray.autoscaler.command_runner import KUBECTL_RSYNC
from ray.autoscaler._private.command_runner import KUBECTL_RSYNC
from ray.tune.integration.kubernetes import KubernetesSyncer, \
KubernetesSyncClient
from ray.tune.syncer import NodeSyncer