skypilot-nightly 1.0.0.dev20250417__py3-none-any.whl → 1.0.0.dev20250421__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sky/__init__.py +2 -2
- sky/backends/backend_utils.py +28 -0
- sky/backends/wheel_utils.py +9 -0
- sky/cli.py +92 -19
- sky/client/cli.py +92 -19
- sky/client/common.py +10 -3
- sky/client/sdk.py +6 -3
- sky/dashboard/out/404.html +1 -0
- sky/dashboard/out/_next/static/chunks/236-d437cf66e68a6f64.js +6 -0
- sky/dashboard/out/_next/static/chunks/312-c3c8845990db8ffc.js +15 -0
- sky/dashboard/out/_next/static/chunks/37-72fdc8f71d6e4784.js +6 -0
- sky/dashboard/out/_next/static/chunks/678-206dddca808e6d16.js +59 -0
- sky/dashboard/out/_next/static/chunks/845-2ea1cc63ba1f4067.js +1 -0
- sky/dashboard/out/_next/static/chunks/979-7cd0778078b9cfad.js +1 -0
- sky/dashboard/out/_next/static/chunks/fd9d1056-2821b0f0cabcd8bd.js +1 -0
- sky/dashboard/out/_next/static/chunks/framework-87d061ee6ed71b28.js +33 -0
- sky/dashboard/out/_next/static/chunks/main-app-241eb28595532291.js +1 -0
- sky/dashboard/out/_next/static/chunks/main-e0e2335212e72357.js +1 -0
- sky/dashboard/out/_next/static/chunks/pages/_app-3001e84c61acddfb.js +1 -0
- sky/dashboard/out/_next/static/chunks/pages/_error-1be831200e60c5c0.js +1 -0
- sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]/[job]-b09f7fbf6d5d74f6.js +1 -0
- sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]-b57ec043f09c5813.js +1 -0
- sky/dashboard/out/_next/static/chunks/pages/clusters-a93b93e10b8b074e.js +1 -0
- sky/dashboard/out/_next/static/chunks/pages/index-f9f039532ca8cbc4.js +1 -0
- sky/dashboard/out/_next/static/chunks/pages/jobs/[job]-ef2e0e91a9222cac.js +1 -0
- sky/dashboard/out/_next/static/chunks/pages/jobs-a75029b67aab6a2e.js +1 -0
- sky/dashboard/out/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js +1 -0
- sky/dashboard/out/_next/static/chunks/webpack-830f59b8404e96b8.js +1 -0
- sky/dashboard/out/_next/static/css/f3538cd90cfca88c.css +3 -0
- sky/dashboard/out/_next/static/mS9YfLA5hhsJMeBj9W8J7/_buildManifest.js +1 -0
- sky/dashboard/out/_next/static/mS9YfLA5hhsJMeBj9W8J7/_ssgManifest.js +1 -0
- sky/dashboard/out/clusters/[cluster]/[job].html +1 -0
- sky/dashboard/out/clusters/[cluster].html +1 -0
- sky/dashboard/out/clusters.html +1 -0
- sky/dashboard/out/favicon.ico +0 -0
- sky/dashboard/out/index.html +1 -0
- sky/dashboard/out/jobs/[job].html +1 -0
- sky/dashboard/out/jobs.html +1 -0
- sky/dashboard/out/skypilot.svg +15 -0
- sky/dashboard/out/videos/cursor-small.mp4 +0 -0
- sky/data/data_transfer.py +2 -1
- sky/data/storage.py +24 -14
- sky/optimizer.py +7 -9
- sky/provision/provisioner.py +2 -1
- sky/resources.py +11 -2
- sky/serve/__init__.py +2 -0
- sky/serve/autoscalers.py +6 -2
- sky/serve/client/sdk.py +61 -0
- sky/serve/replica_managers.py +6 -8
- sky/serve/serve_utils.py +33 -1
- sky/serve/server/core.py +187 -5
- sky/serve/server/server.py +28 -0
- sky/server/common.py +19 -1
- sky/server/constants.py +6 -0
- sky/server/requests/executor.py +4 -0
- sky/server/requests/payloads.py +12 -15
- sky/server/server.py +43 -0
- sky/setup_files/MANIFEST.in +1 -0
- sky/sky_logging.py +10 -0
- sky/skypilot_config.py +51 -31
- sky/templates/kubernetes-ray.yml.j2 +6 -2
- sky/utils/config_utils.py +0 -1
- sky/utils/controller_utils.py +0 -1
- {skypilot_nightly-1.0.0.dev20250417.dist-info → skypilot_nightly-1.0.0.dev20250421.dist-info}/METADATA +1 -1
- {skypilot_nightly-1.0.0.dev20250417.dist-info → skypilot_nightly-1.0.0.dev20250421.dist-info}/RECORD +69 -36
- {skypilot_nightly-1.0.0.dev20250417.dist-info → skypilot_nightly-1.0.0.dev20250421.dist-info}/WHEEL +1 -1
- {skypilot_nightly-1.0.0.dev20250417.dist-info → skypilot_nightly-1.0.0.dev20250421.dist-info}/entry_points.txt +0 -0
- {skypilot_nightly-1.0.0.dev20250417.dist-info → skypilot_nightly-1.0.0.dev20250421.dist-info}/licenses/LICENSE +0 -0
- {skypilot_nightly-1.0.0.dev20250417.dist-info → skypilot_nightly-1.0.0.dev20250421.dist-info}/top_level.txt +0 -0
sky/server/server.py
CHANGED
@@ -150,7 +150,21 @@ async def lifespan(app: fastapi.FastAPI): # pylint: disable=redefined-outer-nam
|
|
150
150
|
# Shutdown: Add any cleanup code here if needed
|
151
151
|
|
152
152
|
|
153
|
+
# Add a new middleware class to handle /internal/dashboard prefix
|
154
|
+
class InternalDashboardPrefixMiddleware(
|
155
|
+
starlette.middleware.base.BaseHTTPMiddleware):
|
156
|
+
"""Middleware to handle /internal/dashboard prefix in requests."""
|
157
|
+
|
158
|
+
async def dispatch(self, request: fastapi.Request, call_next):
|
159
|
+
path = request.url.path
|
160
|
+
if path.startswith('/internal/dashboard/'):
|
161
|
+
# Remove /internal/dashboard prefix and update request scope
|
162
|
+
request.scope['path'] = path.replace('/internal/dashboard/', '/', 1)
|
163
|
+
return await call_next(request)
|
164
|
+
|
165
|
+
|
153
166
|
app = fastapi.FastAPI(prefix='/api/v1', debug=True, lifespan=lifespan)
|
167
|
+
app.add_middleware(InternalDashboardPrefixMiddleware)
|
154
168
|
app.add_middleware(
|
155
169
|
cors.CORSMiddleware,
|
156
170
|
# TODO(zhwu): in production deployment, we should restrict the allowed
|
@@ -1101,6 +1115,35 @@ async def complete_storage_name(incomplete: str,) -> List[str]:
|
|
1101
1115
|
return global_user_state.get_storage_names_start_with(incomplete)
|
1102
1116
|
|
1103
1117
|
|
1118
|
+
# Add a route to serve static files
|
1119
|
+
@app.get('/{full_path:path}')
|
1120
|
+
async def serve_static_or_dashboard(full_path: str):
|
1121
|
+
"""Serves static files for any unmatched routes.
|
1122
|
+
|
1123
|
+
Handles the /dashboard prefix from Next.js configuration.
|
1124
|
+
"""
|
1125
|
+
# Check if the path starts with 'dashboard/' and remove it if it does
|
1126
|
+
if full_path.startswith('dashboard/'):
|
1127
|
+
full_path = full_path[len('dashboard/'):]
|
1128
|
+
|
1129
|
+
# Try to serve the file directly from the out directory first
|
1130
|
+
file_path = os.path.join(server_constants.DASHBOARD_DIR, full_path)
|
1131
|
+
if os.path.isfile(file_path):
|
1132
|
+
return fastapi.responses.FileResponse(file_path)
|
1133
|
+
|
1134
|
+
# If file not found, serve the index.html for client-side routing.
|
1135
|
+
# For example, the non-matched arbitrary route (/ or /test) from
|
1136
|
+
# client will be redirected to the index.html.
|
1137
|
+
index_path = os.path.join(server_constants.DASHBOARD_DIR, 'index.html')
|
1138
|
+
try:
|
1139
|
+
with open(index_path, 'r', encoding='utf-8') as f:
|
1140
|
+
content = f.read()
|
1141
|
+
return fastapi.responses.HTMLResponse(content=content)
|
1142
|
+
except Exception as e:
|
1143
|
+
logger.error(f'Error serving dashboard: {e}')
|
1144
|
+
raise fastapi.HTTPException(status_code=500, detail=str(e))
|
1145
|
+
|
1146
|
+
|
1104
1147
|
if __name__ == '__main__':
|
1105
1148
|
import uvicorn
|
1106
1149
|
|
sky/setup_files/MANIFEST.in
CHANGED
sky/sky_logging.py
CHANGED
@@ -18,6 +18,12 @@ _FORMAT = '%(levelname).1s %(asctime)s %(filename)s:%(lineno)d] %(message)s'
|
|
18
18
|
_DATE_FORMAT = '%m-%d %H:%M:%S'
|
19
19
|
_SENSITIVE_LOGGER = ['sky.provisioner', 'sky.optimizer']
|
20
20
|
|
21
|
+
DEBUG = logging.DEBUG
|
22
|
+
INFO = logging.INFO
|
23
|
+
WARNING = logging.WARNING
|
24
|
+
ERROR = logging.ERROR
|
25
|
+
CRITICAL = logging.CRITICAL
|
26
|
+
|
21
27
|
|
22
28
|
def _show_logging_prefix():
|
23
29
|
return env_options.Options.SHOW_DEBUG_INFO.get(
|
@@ -127,6 +133,10 @@ def set_logging_level(logger: str, level: int):
|
|
127
133
|
logger.setLevel(original_level)
|
128
134
|
|
129
135
|
|
136
|
+
def logging_enabled(logger: logging.Logger, level: int) -> bool:
|
137
|
+
return logger.level <= level
|
138
|
+
|
139
|
+
|
130
140
|
@contextlib.contextmanager
|
131
141
|
def silent():
|
132
142
|
"""Make all sky_logging.print() and logger.{info, warning...} silent.
|
sky/skypilot_config.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
"""Immutable user configurations (EXPERIMENTAL).
|
2
2
|
|
3
|
-
On module import, we attempt to parse the config located at
|
3
|
+
On module import, we attempt to parse the config located at _GLOBAL_CONFIG_PATH
|
4
4
|
(default: ~/.sky/config.yaml). Caller can then use
|
5
5
|
|
6
6
|
>> skypilot_config.loaded()
|
@@ -50,8 +50,8 @@ then:
|
|
50
50
|
"""
|
51
51
|
import contextlib
|
52
52
|
import copy
|
53
|
+
import json
|
53
54
|
import os
|
54
|
-
import pprint
|
55
55
|
import threading
|
56
56
|
import typing
|
57
57
|
from typing import Any, Dict, Iterator, List, Optional, Tuple
|
@@ -80,8 +80,8 @@ logger = sky_logging.init_logger(__name__)
|
|
80
80
|
# path as the config file. Do not use any other config files.
|
81
81
|
# This behavior is subject to change and should not be relied on by users.
|
82
82
|
# Else,
|
83
|
-
# (1) If env var {
|
84
|
-
# config file. Else, use the default path {
|
83
|
+
# (1) If env var {ENV_VAR_GLOBAL_CONFIG} exists, use its path as the user
|
84
|
+
# config file. Else, use the default path {_GLOBAL_CONFIG_PATH}.
|
85
85
|
# (2) If env var {ENV_VAR_PROJECT_CONFIG} exists, use its path as the project
|
86
86
|
# config file. Else, use the default path {_PROJECT_CONFIG_PATH}.
|
87
87
|
# (3) Override any config keys in (1) with the ones in (2).
|
@@ -97,21 +97,16 @@ logger = sky_logging.init_logger(__name__)
|
|
97
97
|
# use the same config file.
|
98
98
|
ENV_VAR_SKYPILOT_CONFIG = f'{constants.SKYPILOT_ENV_VAR_PREFIX}CONFIG'
|
99
99
|
|
100
|
-
#
|
101
|
-
#
|
102
|
-
|
100
|
+
# Environment variables for setting non-default server and user
|
101
|
+
# config files.
|
102
|
+
ENV_VAR_GLOBAL_CONFIG = f'{constants.SKYPILOT_ENV_VAR_PREFIX}GLOBAL_CONFIG'
|
103
|
+
# Environment variables for setting non-default project config files.
|
103
104
|
ENV_VAR_PROJECT_CONFIG = f'{constants.SKYPILOT_ENV_VAR_PREFIX}PROJECT_CONFIG'
|
104
105
|
|
105
|
-
# (Used by server) Environment variable for setting the server config file.
|
106
|
-
ENV_VAR_SERVER_CONFIG = f'{constants.SKYPILOT_ENV_VAR_PREFIX}SERVER_CONFIG'
|
107
|
-
|
108
106
|
# Path to the client config files.
|
109
|
-
|
107
|
+
_GLOBAL_CONFIG_PATH = '~/.sky/config.yaml'
|
110
108
|
_PROJECT_CONFIG_PATH = '.sky.yaml'
|
111
109
|
|
112
|
-
# Path to the server config file.
|
113
|
-
_SERVER_CONFIG_PATH = _USER_CONFIG_PATH
|
114
|
-
|
115
110
|
# The loaded config.
|
116
111
|
_dict = config_utils.Config()
|
117
112
|
_loaded_config_path: Optional[str] = None
|
@@ -121,24 +116,24 @@ _reload_config_lock = threading.Lock()
|
|
121
116
|
|
122
117
|
def get_user_config_path() -> str:
|
123
118
|
"""Returns the path to the user config file."""
|
124
|
-
return
|
119
|
+
return _GLOBAL_CONFIG_PATH
|
125
120
|
|
126
121
|
|
127
122
|
def get_user_config() -> config_utils.Config:
|
128
123
|
"""Returns the user config."""
|
129
124
|
# find the user config file
|
130
|
-
user_config_path = _get_config_file_path(
|
125
|
+
user_config_path = _get_config_file_path(ENV_VAR_GLOBAL_CONFIG)
|
131
126
|
if user_config_path:
|
132
127
|
logger.debug('using user config file specified by '
|
133
|
-
f'{
|
128
|
+
f'{ENV_VAR_GLOBAL_CONFIG}: {user_config_path}')
|
134
129
|
user_config_path = os.path.expanduser(user_config_path)
|
135
130
|
if not os.path.exists(user_config_path):
|
136
131
|
with ux_utils.print_exception_no_traceback():
|
137
132
|
raise FileNotFoundError(
|
138
133
|
'Config file specified by env var '
|
139
|
-
f'{
|
134
|
+
f'{ENV_VAR_GLOBAL_CONFIG} ({user_config_path!r}) '
|
140
135
|
'does not exist. Please double check the path or unset the '
|
141
|
-
f'env var: unset {
|
136
|
+
f'env var: unset {ENV_VAR_GLOBAL_CONFIG}')
|
142
137
|
else:
|
143
138
|
user_config_path = get_user_config_path()
|
144
139
|
logger.debug(f'using default user config file: {user_config_path}')
|
@@ -185,20 +180,20 @@ def _get_project_config() -> config_utils.Config:
|
|
185
180
|
def get_server_config() -> config_utils.Config:
|
186
181
|
"""Returns the server config."""
|
187
182
|
# find the server config file
|
188
|
-
server_config_path = _get_config_file_path(
|
183
|
+
server_config_path = _get_config_file_path(ENV_VAR_GLOBAL_CONFIG)
|
189
184
|
if server_config_path:
|
190
185
|
logger.debug('using server config file specified by '
|
191
|
-
f'{
|
186
|
+
f'{ENV_VAR_GLOBAL_CONFIG}: {server_config_path}')
|
192
187
|
server_config_path = os.path.expanduser(server_config_path)
|
193
188
|
if not os.path.exists(server_config_path):
|
194
189
|
with ux_utils.print_exception_no_traceback():
|
195
190
|
raise FileNotFoundError(
|
196
191
|
'Config file specified by env var '
|
197
|
-
f'{
|
192
|
+
f'{ENV_VAR_GLOBAL_CONFIG} ({server_config_path!r}) '
|
198
193
|
'does not exist. Please double check the path or unset the '
|
199
|
-
f'env var: unset {
|
194
|
+
f'env var: unset {ENV_VAR_GLOBAL_CONFIG}')
|
200
195
|
else:
|
201
|
-
server_config_path =
|
196
|
+
server_config_path = _GLOBAL_CONFIG_PATH
|
202
197
|
logger.debug(f'using default server config file: {server_config_path}')
|
203
198
|
server_config_path = os.path.expanduser(server_config_path)
|
204
199
|
|
@@ -314,8 +309,9 @@ def _parse_config_file(config_path: str) -> config_utils.Config:
|
|
314
309
|
try:
|
315
310
|
config_dict = common_utils.read_yaml(config_path)
|
316
311
|
config = config_utils.Config.from_dict(config_dict)
|
317
|
-
logger.
|
318
|
-
f'Config loaded from {config_path}:\n
|
312
|
+
if sky_logging.logging_enabled(logger, sky_logging.DEBUG):
|
313
|
+
logger.debug(f'Config loaded from {config_path}:\n'
|
314
|
+
f'{common_utils.dump_yaml_str(dict(config))}')
|
319
315
|
except yaml.YAMLError as e:
|
320
316
|
logger.error(f'Error in loading config file ({config_path}):', e)
|
321
317
|
if config:
|
@@ -359,7 +355,10 @@ def _reload_config_as_server() -> None:
|
|
359
355
|
for override in overrides:
|
360
356
|
overlaid_server_config = overlay_skypilot_config(
|
361
357
|
original_config=overlaid_server_config, override_configs=override)
|
362
|
-
|
358
|
+
if sky_logging.logging_enabled(logger, sky_logging.DEBUG):
|
359
|
+
logger.debug(
|
360
|
+
f'server config: \n'
|
361
|
+
f'{common_utils.dump_yaml_str(dict(overlaid_server_config))}')
|
363
362
|
_dict = overlaid_server_config
|
364
363
|
|
365
364
|
|
@@ -381,7 +380,10 @@ def _reload_config_as_client() -> None:
|
|
381
380
|
for override in overrides:
|
382
381
|
overlaid_client_config = overlay_skypilot_config(
|
383
382
|
original_config=overlaid_client_config, override_configs=override)
|
384
|
-
|
383
|
+
if sky_logging.logging_enabled(logger, sky_logging.DEBUG):
|
384
|
+
logger.debug(
|
385
|
+
f'client config (before task and CLI overrides): \n'
|
386
|
+
f'{common_utils.dump_yaml_str(dict(overlaid_client_config))}')
|
385
387
|
_dict = overlaid_client_config
|
386
388
|
|
387
389
|
|
@@ -414,10 +416,26 @@ def override_skypilot_config(
|
|
414
416
|
yield
|
415
417
|
return
|
416
418
|
original_config = _dict
|
419
|
+
override_configs = config_utils.Config(override_configs)
|
420
|
+
disallowed_diff_keys = []
|
421
|
+
for key in constants.SKIPPED_CLIENT_OVERRIDE_KEYS:
|
422
|
+
value = override_configs.pop_nested(key, default_value=None)
|
423
|
+
if (value is not None and
|
424
|
+
value != original_config.get_nested(key, default_value=None)):
|
425
|
+
disallowed_diff_keys.append('.'.join(key))
|
426
|
+
# Only warn if there is a diff in disallowed override keys, as the client
|
427
|
+
# use the same config file when connecting to a local server.
|
428
|
+
if disallowed_diff_keys:
|
429
|
+
logger.warning(
|
430
|
+
f'The following keys ({json.dumps(disallowed_diff_keys)}) have '
|
431
|
+
'different values in the client SkyPilot config with the server '
|
432
|
+
'and will be ignored. Remove these keys to disable this warning. '
|
433
|
+
'If you want to specify it, please modify it on server side or '
|
434
|
+
'contact your administrator.')
|
417
435
|
config = _dict.get_nested(
|
418
436
|
keys=tuple(),
|
419
437
|
default_value=None,
|
420
|
-
override_configs=override_configs,
|
438
|
+
override_configs=dict(override_configs),
|
421
439
|
allowed_override_keys=None,
|
422
440
|
disallowed_override_keys=constants.SKIPPED_CLIENT_OVERRIDE_KEYS)
|
423
441
|
try:
|
@@ -439,7 +457,7 @@ def override_skypilot_config(
|
|
439
457
|
'=== SkyPilot config on API server ===\n'
|
440
458
|
f'{common_utils.dump_yaml_str(dict(original_config))}\n'
|
441
459
|
'=== Your local SkyPilot config ===\n'
|
442
|
-
f'{common_utils.dump_yaml_str(override_configs)}\n'
|
460
|
+
f'{common_utils.dump_yaml_str(dict(override_configs))}\n'
|
443
461
|
f'Details: {e}') from e
|
444
462
|
finally:
|
445
463
|
_dict = original_config
|
@@ -491,7 +509,9 @@ def apply_cli_config(cli_config: Optional[str]) -> Dict[str, Any]:
|
|
491
509
|
"""
|
492
510
|
global _dict
|
493
511
|
parsed_config = _compose_cli_config(cli_config)
|
494
|
-
|
512
|
+
if sky_logging.logging_enabled(logger, sky_logging.DEBUG):
|
513
|
+
logger.debug(f'applying following CLI overrides: \n'
|
514
|
+
f'{common_utils.dump_yaml_str(dict(parsed_config))}')
|
495
515
|
_dict = overlay_skypilot_config(original_config=_dict,
|
496
516
|
override_configs=parsed_config)
|
497
517
|
return parsed_config
|
@@ -384,8 +384,12 @@ available_node_types:
|
|
384
384
|
set +e
|
385
385
|
|
386
386
|
if [ ! -z "$MISSING_PACKAGES" ]; then
|
387
|
-
|
388
|
-
|
387
|
+
# Install missing packages individually to avoid failure installation breaks the whole install process,
|
388
|
+
# e.g. fuse3 is not available on some distributions.
|
389
|
+
echo "Installing missing packages individually: $MISSING_PACKAGES";
|
390
|
+
for pkg in $MISSING_PACKAGES; do
|
391
|
+
DEBIAN_FRONTEND=noninteractive $(prefix_cmd) apt-get install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" $pkg || echo "Optional package $pkg installation failed, skip.";
|
392
|
+
done
|
389
393
|
fi;
|
390
394
|
|
391
395
|
{% if k8s_fuse_device_required %}
|
sky/utils/config_utils.py
CHANGED
sky/utils/controller_utils.py
CHANGED
{skypilot_nightly-1.0.0.dev20250417.dist-info → skypilot_nightly-1.0.0.dev20250421.dist-info}/RECORD
RENAMED
@@ -1,8 +1,8 @@
|
|
1
|
-
sky/__init__.py,sha256=
|
1
|
+
sky/__init__.py,sha256=Bhi5PYyqK-N-2ziR4TVfGnQNtLeL9x9b22n2g_noGxI,6428
|
2
2
|
sky/admin_policy.py,sha256=hPo02f_A32gCqhUueF0QYy1fMSSKqRwYEg_9FxScN_s,3248
|
3
3
|
sky/authentication.py,sha256=ND011K_-Ud1dVZF37A9KrwYir_ihJXcHc7iDWmuBc8Q,22872
|
4
4
|
sky/check.py,sha256=PPNQnaaZBA9_aogJpN4gnG4XWnTqkd74c-rBYDkDRDY,16101
|
5
|
-
sky/cli.py,sha256=
|
5
|
+
sky/cli.py,sha256=m-ttEuzlsI6ghtoAr2ncYez97yDqhsxvwtppGQiKOcU,229301
|
6
6
|
sky/cloud_stores.py,sha256=Ln5GBpel-sEs7rVx7bBrMkfLwA_bctI05Rox2uoz7Lo,26388
|
7
7
|
sky/core.py,sha256=2D1AhdZ1hyD6bBdLyF0t8UJS4ObkgYMwEteWC9_6ysc,47900
|
8
8
|
sky/dag.py,sha256=Yl7Ry26Vql5cv4YMz8g9kOUgtoCihJnw7c8NgZYakMY,3242
|
@@ -10,10 +10,10 @@ sky/exceptions.py,sha256=0PwVqsSz_ei48q7RSzrF1zVQmYrZ5vRfkYUpufZw1Yc,16960
|
|
10
10
|
sky/execution.py,sha256=qJhDrgy4COdojU3SxYazcTE67QPWFrZdUhUvihloyng,28727
|
11
11
|
sky/global_user_state.py,sha256=7HADn0mY-0omf5RbpmAZ88bjySzqKcmiD1MEmkrCoNU,33754
|
12
12
|
sky/models.py,sha256=bGMSATMkSMr_Kp6SCoiJVVeebwSdZuzjw_jrJzVWAAc,1603
|
13
|
-
sky/optimizer.py,sha256=
|
14
|
-
sky/resources.py,sha256=
|
15
|
-
sky/sky_logging.py,sha256=
|
16
|
-
sky/skypilot_config.py,sha256=
|
13
|
+
sky/optimizer.py,sha256=6bg3CB74pMvk30yQCE7zFSSudWmz78Cdd-IRbjGHBzA,58425
|
14
|
+
sky/resources.py,sha256=T9kSL03149rIJs1LbfDwkZSIEpFL5uhceZTr2Nep78o,74719
|
15
|
+
sky/sky_logging.py,sha256=Nmc29vvg-GgKRZcajNrGlkuCIFxrVqefdXTPiS7Y-9o,5914
|
16
|
+
sky/skypilot_config.py,sha256=x7JEpIrz2prf3zr6ptqzIPa6ywYxJlfA_NLm5Bcdc0I,20295
|
17
17
|
sky/task.py,sha256=tM-DpB7Mtxtc280gFIw9QvJfKEHgiIoew5rnNxxaj04,56737
|
18
18
|
sky/adaptors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
19
|
sky/adaptors/aws.py,sha256=iH55Cm6eXWwufAG0Dgk7LTQcADawNa3ELrBH1m6yuSY,7617
|
@@ -33,19 +33,19 @@ sky/adaptors/vast.py,sha256=tpvmHi7IkQNzbbHVkeo04kUSajoEpSzXr2XgeO_I1LU,695
|
|
33
33
|
sky/adaptors/vsphere.py,sha256=zJP9SeObEoLrpgHW2VHvZE48EhgVf8GfAEIwBeaDMfM,2129
|
34
34
|
sky/backends/__init__.py,sha256=UDjwbUgpTRApbPJnNfR786GadUuwgRk3vsWoVu5RB_c,536
|
35
35
|
sky/backends/backend.py,sha256=wrVNzPkxDjHVAh46-iejBNe0nqx4DB6-Awtaqx5j2zs,7723
|
36
|
-
sky/backends/backend_utils.py,sha256=
|
36
|
+
sky/backends/backend_utils.py,sha256=9fMPPUrkEgRGN7ofAJnhlv6hGEQMoEB3m_BC0gto2VU,136273
|
37
37
|
sky/backends/cloud_vm_ray_backend.py,sha256=M_1U_xWwdLxMr0HKfDi-AkUPO3-Rz3A0Us2JbRZjeW0,251477
|
38
38
|
sky/backends/docker_utils.py,sha256=Hyw1YY20EyghhEbYx6O2FIMDcGkNzBzV9TM7LFynei8,8358
|
39
39
|
sky/backends/local_docker_backend.py,sha256=m0s6EZ9dTbPO8STy9FeLj8DvvtI_44MwDK9QByh2jwU,17048
|
40
|
-
sky/backends/wheel_utils.py,sha256=
|
40
|
+
sky/backends/wheel_utils.py,sha256=C4Uyloeb9Uj9DQibcQGaDo4-Ii9nV6mexd7Pk4pdum4,9647
|
41
41
|
sky/backends/monkey_patches/monkey_patch_ray_up.py,sha256=76-y2fCaE3JINj8lEwHT1eirYzCbpD8O1ySsysuGu8o,3450
|
42
42
|
sky/benchmark/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
43
43
|
sky/benchmark/benchmark_state.py,sha256=X8CXmuU9KgsDRhKedhFgjeRMUFWtQsjFs1qECvPG2yg,8723
|
44
44
|
sky/benchmark/benchmark_utils.py,sha256=7rf-iHt6RXZ_pnBBWOMwcdodHQW69x27xNyx0yVog1U,26385
|
45
45
|
sky/client/__init__.py,sha256=pz6xvVSd9X-gwqbsDL0E9QOojYqM0KAD0j-NCyCIF1k,38
|
46
|
-
sky/client/cli.py,sha256=
|
47
|
-
sky/client/common.py,sha256=
|
48
|
-
sky/client/sdk.py,sha256=
|
46
|
+
sky/client/cli.py,sha256=m-ttEuzlsI6ghtoAr2ncYez97yDqhsxvwtppGQiKOcU,229301
|
47
|
+
sky/client/common.py,sha256=E_5cjxd8fWRB7fU1yfIbiyQf-IyVhpD5KkB7Fl3cQEI,15215
|
48
|
+
sky/client/sdk.py,sha256=NSuCYn84T-mx86nl7z-1qMwoWFlGXCvEmqd-HhfMAp4,70712
|
49
49
|
sky/clouds/__init__.py,sha256=OW6mJ-9hpJSBORCgt2LippLQEYZHNfnBW1mooRNNvxo,1416
|
50
50
|
sky/clouds/aws.py,sha256=-feXZ72UMUjuZz8dV4qMTjMMTC9pwfkQQT3KJDcIv5A,54633
|
51
51
|
sky/clouds/azure.py,sha256=Zpo6ftWz_B30mX7N-An7JVO-8v7aU3f9cw1iH9phvwE,32251
|
@@ -101,11 +101,44 @@ sky/clouds/utils/azure_utils.py,sha256=NToRBnhEyuUvb-nBnsKTxjhOBRkMcrelL8LK4w6s4
|
|
101
101
|
sky/clouds/utils/gcp_utils.py,sha256=YtuS4EoAMvcRnGPgE_WLENPOPWIdvhp7dLceTw_zfas,7114
|
102
102
|
sky/clouds/utils/oci_utils.py,sha256=0YxhgZdeIHQUI1AZ86YuswsZg5HdVCIVfSTRJsSHYI0,6396
|
103
103
|
sky/clouds/utils/scp_utils.py,sha256=MqawUhhFHHxVnn29nOI4gJ_nF665ich4Po7bsy1afsA,15948
|
104
|
+
sky/dashboard/out/404.html,sha256=x9KpP2oGMrM_XudzBU3AA0LGGXcO_d9Zp4iCak5ZD1s,2296
|
105
|
+
sky/dashboard/out/clusters.html,sha256=sGTgwWBTH5yXG2J9eRYOX4t3QcTpMlF6tSj1zJcuC04,11953
|
106
|
+
sky/dashboard/out/favicon.ico,sha256=uYlvgxSM7gjBmXpZ8wydvZUPAbJiiix-rc2Xe5mma9s,15086
|
107
|
+
sky/dashboard/out/index.html,sha256=rvT20bd0xLt9StTJWFM_XNXBY8KEuzobtIrxGDlzUjE,1407
|
108
|
+
sky/dashboard/out/jobs.html,sha256=BIKpXvtOAisHDK3vHo5qlal0XqsY0Xil3SAENp6pkmM,13059
|
109
|
+
sky/dashboard/out/skypilot.svg,sha256=c0iRtlfLlaUm2p0rG9NFmo5FN0Qhf3pq5Xph-AeMPJw,5064
|
110
|
+
sky/dashboard/out/_next/static/chunks/236-d437cf66e68a6f64.js,sha256=ralyFxYHEJcbwyN11jVIZbvPFrrpAq34CXvKqRdhEoc,24814
|
111
|
+
sky/dashboard/out/_next/static/chunks/312-c3c8845990db8ffc.js,sha256=H8yGnoxM_IYM2kU-A7mESi4aV4Ph3PxbIdnM2v5Kd3M,25150
|
112
|
+
sky/dashboard/out/_next/static/chunks/37-72fdc8f71d6e4784.js,sha256=XLVnZhTzv_QQZZeQX8IwNacGZme7FYFwo8e9e57gcAU,8051
|
113
|
+
sky/dashboard/out/_next/static/chunks/678-206dddca808e6d16.js,sha256=Y5VxbAyqp8zSfif94d1iDcS5_OXdBfb-YzwlmLu8kSg,325098
|
114
|
+
sky/dashboard/out/_next/static/chunks/845-2ea1cc63ba1f4067.js,sha256=BY5vaqrPP00ILJ9tYQjmyi86uGsPXw4R8gwqIvx9e0Q,11710
|
115
|
+
sky/dashboard/out/_next/static/chunks/979-7cd0778078b9cfad.js,sha256=LI1kJIHkHdqlKPpvzxknxHXfAxwqLk3JLkdBZGVp5Dw,23991
|
116
|
+
sky/dashboard/out/_next/static/chunks/fd9d1056-2821b0f0cabcd8bd.js,sha256=ce2WOATL1LdzsWouKQ-1NCiBQJmcykgzqP8wCp1yqbE,172831
|
117
|
+
sky/dashboard/out/_next/static/chunks/framework-87d061ee6ed71b28.js,sha256=dh6TKdXcSRoGP4HqHe2uwzWCZBPz16dyTWufLsxeRvM,140942
|
118
|
+
sky/dashboard/out/_next/static/chunks/main-app-241eb28595532291.js,sha256=P0_tU7pqs_pOQaw-lVzCNl6recBw5lFfkAD0jRk2uzc,115881
|
119
|
+
sky/dashboard/out/_next/static/chunks/main-e0e2335212e72357.js,sha256=BxTmVbZDnMUQvQd57MEl1Ui0VZaNmwLOviY7h_xMjP0,109884
|
120
|
+
sky/dashboard/out/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js,sha256=6QPOwdWeAVe8x-SsiDrm-Ga6u2DkqgG5SFqglrlyIgA,91381
|
121
|
+
sky/dashboard/out/_next/static/chunks/webpack-830f59b8404e96b8.js,sha256=XUeLlCbpUyAJto3fy6kMg9YVoYn9KYpT1aFAuRmLcj8,3719
|
122
|
+
sky/dashboard/out/_next/static/chunks/pages/_app-3001e84c61acddfb.js,sha256=4Yi0IhaBfZdZQBL-wf_JqkRQGpU71sF8dQ_C7noFhyk,1780
|
123
|
+
sky/dashboard/out/_next/static/chunks/pages/_error-1be831200e60c5c0.js,sha256=TZqrus06KKPx-CMABDMPKF7w-NQ5s2gwJAM8Huyl7qU,247
|
124
|
+
sky/dashboard/out/_next/static/chunks/pages/clusters-a93b93e10b8b074e.js,sha256=b5qfh1__TcAs3hfe6y73Wo5tUDM_KGxmvNQDIILAEvc,411
|
125
|
+
sky/dashboard/out/_next/static/chunks/pages/index-f9f039532ca8cbc4.js,sha256=xW_iAQgKnyCMwtiYNnk0D34hQLWD2L_ckiDsFs7Oyc8,481
|
126
|
+
sky/dashboard/out/_next/static/chunks/pages/jobs-a75029b67aab6a2e.js,sha256=zqUV5xEPWl1_n_NplfQ3Ir8WXUvLTHZqyQP4KyeNgHA,408
|
127
|
+
sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]-b57ec043f09c5813.js,sha256=u-qXXwLrsK72G1qVyrd8nCiyKmdBv61xrKmKvSess8Q,4025
|
128
|
+
sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]/[job]-b09f7fbf6d5d74f6.js,sha256=KayTgi3_fkoZ5e94WDIrz40erkrn--G_2QzQyMNHhok,8887
|
129
|
+
sky/dashboard/out/_next/static/chunks/pages/jobs/[job]-ef2e0e91a9222cac.js,sha256=BlAqhmjQdnDgnOeBE3KWZfATs7QZN68TOqYb2gSSxoQ,13152
|
130
|
+
sky/dashboard/out/_next/static/css/f3538cd90cfca88c.css,sha256=y9a3IiJyaD6P_uZwLuCTQ6TJU0e85QIhNCbL-k4RIUc,31933
|
131
|
+
sky/dashboard/out/_next/static/mS9YfLA5hhsJMeBj9W8J7/_buildManifest.js,sha256=Ok4yINvq-VFZbOefZBHPaavSf6DCdVryO-rPc9HNUkk,1048
|
132
|
+
sky/dashboard/out/_next/static/mS9YfLA5hhsJMeBj9W8J7/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
133
|
+
sky/dashboard/out/clusters/[cluster].html,sha256=-x555kOa1QmF1yOCONryr0xqjMp6s73nn30kxsb00yM,1984
|
134
|
+
sky/dashboard/out/clusters/[cluster]/[job].html,sha256=plkAvOhZUBzjEBJkOJPlE8IEf6BG6M1LjWVxUdKZ4PQ,1653
|
135
|
+
sky/dashboard/out/jobs/[job].html,sha256=qge_G_bf7xnsjP0mGCJXFdqarVNXuHFdPfDijrA5ayI,1621
|
136
|
+
sky/dashboard/out/videos/cursor-small.mp4,sha256=8tRdp1vjawOrXUar1cfjOc-nkaKmcwCPZx_LO0XlCvQ,203285
|
104
137
|
sky/data/__init__.py,sha256=Nhaf1NURisXpZuwWANa2IuCyppIuc720FRwqSE2oEwY,184
|
105
|
-
sky/data/data_transfer.py,sha256
|
138
|
+
sky/data/data_transfer.py,sha256=N8b0CQebDuHieXjvEVwlYmK6DbQxUGG1RQJEyTbh3dU,12040
|
106
139
|
sky/data/data_utils.py,sha256=CNYPM963qby5ddW0DZNbhiWXkqgB9MHh_jrC5DoBctM,33437
|
107
140
|
sky/data/mounting_utils.py,sha256=fmJUDs7WEARYpq-cHQ5OfPRVFp_siAnqSutTLe3PROA,21432
|
108
|
-
sky/data/storage.py,sha256=
|
141
|
+
sky/data/storage.py,sha256=0gZHw73py4fW-2iyyuQxa3E7bwqMg5-Dh3-aEKf2PuQ,236592
|
109
142
|
sky/data/storage_utils.py,sha256=u8PTKUkE7qYwr1GgAJ45pI5YUkhUaPQPRUz_CZZo_HI,13785
|
110
143
|
sky/jobs/__init__.py,sha256=qoI53-xXE0-SOkrLWigvhgFXjk7dWE0OTqGPYIk-kmM,1458
|
111
144
|
sky/jobs/constants.py,sha256=FLPAT02CmG7PLVPpYOUlbw1s_LgRdQiwdg2YBg8joFA,3305
|
@@ -130,7 +163,7 @@ sky/provision/docker_utils.py,sha256=ENm0LkyrYWic3Ikyacho8X5uDMvGsbkZQsb6kNH1DuI
|
|
130
163
|
sky/provision/instance_setup.py,sha256=NCTRZbCcSBawH5SEtU_AaIqJa47Pdi9MxtJEWgf7-CI,24458
|
131
164
|
sky/provision/logging.py,sha256=_sx_TH6nLt0FF3myS5pEZbiMhXyl4s1XwMidu_TTBUw,2091
|
132
165
|
sky/provision/metadata_utils.py,sha256=LrxeV4wD2QPzNdXV_npj8q-pr35FatxBBjF_jSbpOT0,4013
|
133
|
-
sky/provision/provisioner.py,sha256=
|
166
|
+
sky/provision/provisioner.py,sha256=xsdwfHxTmcHMAH-dyt0UsVHEgbweAlRImwVUQj7SZok,29953
|
134
167
|
sky/provision/aws/__init__.py,sha256=mxq8PeWJqUtalDozTNpbtENErRZ1ktEs8uf2aG9UUgU,731
|
135
168
|
sky/provision/aws/config.py,sha256=fGOkkn89EpVFYp4x0LTIauBem2Vsqcy8faEadS8l0nE,25979
|
136
169
|
sky/provision/aws/instance.py,sha256=3okAJ1WkZ0YemH9kvUgA6HpHN6BP7unhDL-CHny1qFI,40849
|
@@ -211,34 +244,34 @@ sky/provision/vsphere/common/service_manager_factory.py,sha256=YkvfHiRXFK_Nb406z
|
|
211
244
|
sky/provision/vsphere/common/ssl_helper.py,sha256=whhJKsvIQNaGc7ggCNTv5ARkB0fZkHDbzAW6WlAr1cs,949
|
212
245
|
sky/provision/vsphere/common/vapiconnect.py,sha256=piU29ZfdYCJQMV5n-5J0EQ8G56AWOFKQgoX1Q1Rsusg,3088
|
213
246
|
sky/provision/vsphere/common/vim_utils.py,sha256=y_i_bh6jxAEfaoVKbgVB02vWE0HbxP9oM83rANT8kBE,17871
|
214
|
-
sky/serve/__init__.py,sha256=
|
215
|
-
sky/serve/autoscalers.py,sha256=
|
247
|
+
sky/serve/__init__.py,sha256=jlwErB4VeKh0wp9FkTIQoE5JQvc6KIB-vrqhtsJ2q-E,1810
|
248
|
+
sky/serve/autoscalers.py,sha256=kHEL3U2bW50NByiJhv5j64JKjgxKtHwO5dswlJQ1uEA,32698
|
216
249
|
sky/serve/constants.py,sha256=TdavR0D3uNISK9GXasZhBvIp3wBbRKifRrN9cWOzXDU,5002
|
217
250
|
sky/serve/controller.py,sha256=jtzWHsLHnVPQ727ZpDZTUpGTtIOssbnQpXeWOyAuW_s,11886
|
218
251
|
sky/serve/load_balancer.py,sha256=2nkMPRvy-h7hJL4Qq__tkT8nIAVC_nmjyXf8mMGYEFk,13658
|
219
252
|
sky/serve/load_balancing_policies.py,sha256=Ssr0GtHKyzzAIEOUAMCLvND5rapmrpxI-OQemf3dgxU,5177
|
220
|
-
sky/serve/replica_managers.py,sha256=
|
253
|
+
sky/serve/replica_managers.py,sha256=L1Q-juR2jiukSj_pXaDK16nbXZi_UOveWlKsdcYs15I,62196
|
221
254
|
sky/serve/serve_state.py,sha256=P1aR_bHfmL8MZdMhjLNu0bfYxsIWw8lWg4QFSme0ZLc,19690
|
222
|
-
sky/serve/serve_utils.py,sha256=
|
255
|
+
sky/serve/serve_utils.py,sha256=P9I6mH6CCxysiKXkjqfem7lbyPDZwZYjxYNasyQcTME,47074
|
223
256
|
sky/serve/service.py,sha256=JlLyhwHbBUztLgKrfBpVRIUhGwGizemfxL7txs9dpcc,12539
|
224
257
|
sky/serve/service_spec.py,sha256=t7wh7sx68DKjPyrk1Ub-c1ZjkWD8ehG-YOj9CNdC9qQ,18552
|
225
258
|
sky/serve/spot_placer.py,sha256=LZk-VFPLyKpSJHFlNj-OkTN8C3KppD-IOocp5BHb6X4,11076
|
226
259
|
sky/serve/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
227
|
-
sky/serve/client/sdk.py,sha256=
|
260
|
+
sky/serve/client/sdk.py,sha256=7wJf_Ob1291Cs4yKAghZ_xWvd-Kc0IDtHiLIlphj8tQ,14673
|
228
261
|
sky/serve/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
229
|
-
sky/serve/server/core.py,sha256=
|
230
|
-
sky/serve/server/server.py,sha256=
|
262
|
+
sky/serve/server/core.py,sha256=6l_XddW5ZWfdRdzyfQdB8rtBcU90VN_yXRM85tz0hsc,41499
|
263
|
+
sky/serve/server/server.py,sha256=A9K37a0nQgZeN3eKWv62Oh2C5TSAReTZ9pHmztqlI-c,4396
|
231
264
|
sky/server/__init__.py,sha256=MPPBqFzXz6Jv5QSk6td_IcvnfXfNErDZVcizu4MLRow,27
|
232
|
-
sky/server/common.py,sha256
|
233
|
-
sky/server/constants.py,sha256=
|
234
|
-
sky/server/server.py,sha256=
|
265
|
+
sky/server/common.py,sha256=lXxngJ4PGZ7EbCd8-hMJVGgZqp57AnAYDWo9jDftTxM,24492
|
266
|
+
sky/server/constants.py,sha256=1o2dZ0WulWzoZfB6J9-MTIbg1nvlg3gevjqwAYo3aCM,1112
|
267
|
+
sky/server/server.py,sha256=jGQ1IglGIbBVYcfCVafjGLuBaRc2dY-ddNeirDM8rcY,46541
|
235
268
|
sky/server/stream_utils.py,sha256=4JMHgtoXPpCT8JwtqyUcDQ9IdZFir9om0JaCRr8rvbQ,5849
|
236
269
|
sky/server/uvicorn.py,sha256=wajwPHJ3IEEP3GMNOCc0S81-1v2qT5F-ejUkLFVhUzk,2953
|
237
270
|
sky/server/html/log.html,sha256=TSGZktua9Ysl_ysg3w60rjxAxhH61AJnsYDHdtqrjmI,6929
|
238
271
|
sky/server/requests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
239
272
|
sky/server/requests/event_loop.py,sha256=OhpPbuce65bbjpGRlcJa78AVnYSm08SzFKt70ypCUuQ,1211
|
240
|
-
sky/server/requests/executor.py,sha256=
|
241
|
-
sky/server/requests/payloads.py,sha256=
|
273
|
+
sky/server/requests/executor.py,sha256=ikpy7A-kYdVdeXlh0Ll927jl7QOn0Y6Pp8VodqpwF9w,26760
|
274
|
+
sky/server/requests/payloads.py,sha256=nQLKgRvNo082ClUjPHoc57LLiQiQqZvveNXdgblPFIM,16333
|
242
275
|
sky/server/requests/preconditions.py,sha256=ipxIb_3JXG6S3-ymcOdqQNb7VDvoPqADxu9ZK7-nQWc,7179
|
243
276
|
sky/server/requests/process.py,sha256=uv6JmqdT1vR6S5j3a0CEmxz3fUoKQoZCryQsjZpZE7E,8734
|
244
277
|
sky/server/requests/requests.py,sha256=9ovdQE-zv_Mvc6IbGATHVyQlOxSKjg_OankZbgDVGeE,21338
|
@@ -248,7 +281,7 @@ sky/server/requests/queues/mp_queue.py,sha256=jDqP4Jd28U3ibSFyMR1DF9I2OWZrPZqFJr
|
|
248
281
|
sky/server/requests/serializers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
249
282
|
sky/server/requests/serializers/decoders.py,sha256=F7eqENzt7hH92BPYUGnSJ_-XGobA0whPezTh5EDLCQs,6729
|
250
283
|
sky/server/requests/serializers/encoders.py,sha256=4bQV5yTg8RTPT_HkRyQpjaBY_uUvBJ4NH189W0-6Pi0,5578
|
251
|
-
sky/setup_files/MANIFEST.in,sha256=
|
284
|
+
sky/setup_files/MANIFEST.in,sha256=xhxaTVBu63MiTRV52AIlHp6qrg0i301PDIvH0lRw4E0,619
|
252
285
|
sky/setup_files/dependencies.py,sha256=ZNn608y0Yb2oTz9prWDxgPEeH9QEmfJ3CzlIcE021QQ,6489
|
253
286
|
sky/setup_files/setup.py,sha256=Q9f0RvsdPC0FLvyTKW-upQtRuA81jRO4TtN3VK-mP-Y,7436
|
254
287
|
sky/skylet/LICENSE,sha256=BnFrJSvUFpMUoH5mOpWnEvaC5R6Uux8W6WXgrte8iYg,12381
|
@@ -291,7 +324,7 @@ sky/templates/jobs-controller.yaml.j2,sha256=LbeWGkarOcrRbbdvkZv_ZfyydEcJBohKItC
|
|
291
324
|
sky/templates/kubernetes-ingress.yml.j2,sha256=73iDklVDWBMbItg0IexCa6_ClXPJOxw7PWz3leku4nE,1340
|
292
325
|
sky/templates/kubernetes-loadbalancer.yml.j2,sha256=IxrNYM366N01bbkJEbZ_UPYxUP8wyVEbRNFHRsBuLsw,626
|
293
326
|
sky/templates/kubernetes-port-forward-proxy-command.sh,sha256=iw7mypHszg6Ggq9MbyiYMFOkSlXaQZulaxqC5IWYGCc,3381
|
294
|
-
sky/templates/kubernetes-ray.yml.j2,sha256=
|
327
|
+
sky/templates/kubernetes-ray.yml.j2,sha256=DptIPxp6dE6onbpg4YcTpk15uIxKjA8lPh6eKQKqkXo,32106
|
295
328
|
sky/templates/kubernetes-ssh-jump.yml.j2,sha256=k5W5sOIMppU7dDkJMwPlqsUcb92y7L5_TVG3hkgMy8M,2747
|
296
329
|
sky/templates/lambda-ray.yml.j2,sha256=IWUFROlaVV9qsH4tYInn0xgyE1WAP_dHZBnGkNpmpYM,4713
|
297
330
|
sky/templates/local-ray.yml.j2,sha256=FNHeyHF6nW9nU9QLIZceUWfvrFTTcO51KqhTnYCEFaA,1185
|
@@ -318,9 +351,9 @@ sky/utils/command_runner.py,sha256=aEBs4Km8b6PqDklNc63tVYMK0w3PBGQEEP21_wmhG1k,3
|
|
318
351
|
sky/utils/command_runner.pyi,sha256=mJOzCgcYZAfHwnY_6Wf1YwlTEJGb9ihzc2f0rE0Kw98,7751
|
319
352
|
sky/utils/common.py,sha256=P4oVXFATUYgkruHX92cN12SJBtfb8DiOOYZtbN1kvP0,1927
|
320
353
|
sky/utils/common_utils.py,sha256=UM2eSQNdXRvAzlbfC839E7-7DXC9BMMUkquLsmYpu8w,31619
|
321
|
-
sky/utils/config_utils.py,sha256=
|
354
|
+
sky/utils/config_utils.py,sha256=v8yZcr8OvEfXmBDYcdOj3U-AH1XERY76zGJMNdqzvqc,10339
|
322
355
|
sky/utils/control_master_utils.py,sha256=iD4M0onjYOdZ2RuxjwMBl4KhafHXJzuHjvqlBUnu-VE,1450
|
323
|
-
sky/utils/controller_utils.py,sha256=
|
356
|
+
sky/utils/controller_utils.py,sha256=DcVWHOwO1UetEpeO04NxEWYq_jJW1gELAX4Xjp6SYBQ,51574
|
324
357
|
sky/utils/dag_utils.py,sha256=sAus0aL1wtuuFZSDnpO4LY-6WK4u5iJY952oWQzHo3Y,7532
|
325
358
|
sky/utils/db_utils.py,sha256=K2-OHPg0FeHCarevMdWe0IWzm6wWumViEeYeJuGoFUE,3747
|
326
359
|
sky/utils/env_options.py,sha256=aaD6GoYK0LaZIqjOEZ-R7eccQuiRriW3EuLWtOI5En8,1578
|
@@ -352,9 +385,9 @@ sky/utils/kubernetes/k8s_gpu_labeler_setup.yaml,sha256=VLKT2KKimZu1GDg_4AIlIt488
|
|
352
385
|
sky/utils/kubernetes/kubernetes_deploy_utils.py,sha256=HPVgNt-wbCVPd9dpDFiA7t2mzQLpjXHJ61eiwRbEr-c,10378
|
353
386
|
sky/utils/kubernetes/rsync_helper.sh,sha256=eaQOyvDq_RmcRHBqB9tH6LyDuYC310IVp97C5nqrTQg,1793
|
354
387
|
sky/utils/kubernetes/ssh_jump_lifecycle_manager.py,sha256=Kq1MDygF2IxFmu9FXpCxqucXLmeUrvs6OtRij6XTQbo,6554
|
355
|
-
skypilot_nightly-1.0.0.
|
356
|
-
skypilot_nightly-1.0.0.
|
357
|
-
skypilot_nightly-1.0.0.
|
358
|
-
skypilot_nightly-1.0.0.
|
359
|
-
skypilot_nightly-1.0.0.
|
360
|
-
skypilot_nightly-1.0.0.
|
388
|
+
skypilot_nightly-1.0.0.dev20250421.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
|
389
|
+
skypilot_nightly-1.0.0.dev20250421.dist-info/METADATA,sha256=mP_yMjMxiYja9ay7Y1KWZqN16L5cYipv075TpRHrO4w,18691
|
390
|
+
skypilot_nightly-1.0.0.dev20250421.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
|
391
|
+
skypilot_nightly-1.0.0.dev20250421.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
|
392
|
+
skypilot_nightly-1.0.0.dev20250421.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
|
393
|
+
skypilot_nightly-1.0.0.dev20250421.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|