skypilot-nightly 1.0.0.dev20250904__py3-none-any.whl → 1.0.0.dev20250906__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.
Potentially problematic release.
This version of skypilot-nightly might be problematic. Click here for more details.
- sky/__init__.py +2 -2
- sky/backends/backend_utils.py +46 -0
- sky/backends/cloud_vm_ray_backend.py +11 -0
- sky/catalog/__init__.py +1 -0
- sky/client/sdk.py +20 -16
- sky/clouds/nebius.py +3 -0
- sky/dashboard/out/404.html +1 -1
- sky/dashboard/out/_next/static/{mriHUOVL_Ht-CeW-e7saa → ZOaq9s6U49jSoGAMkeKqu}/_buildManifest.js +1 -1
- sky/dashboard/out/_next/static/chunks/6856-6e2bc8a6fd0867af.js +1 -0
- sky/dashboard/out/_next/static/chunks/{8969-4a6f1a928fb6d370.js → 8969-0be3036bf86f8256.js} +1 -1
- sky/dashboard/out/_next/static/chunks/9037-fa1737818d0a0969.js +6 -0
- sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]/{[job]-39c9bd4cdb7e5a57.js → [job]-1cbba24bd1bd35f8.js} +1 -1
- sky/dashboard/out/_next/static/chunks/{webpack-24c4fc6d30ce0193.js → webpack-8df25bce0107f4bd.js} +1 -1
- sky/dashboard/out/clusters/[cluster]/[job].html +1 -1
- sky/dashboard/out/clusters/[cluster].html +1 -1
- sky/dashboard/out/clusters.html +1 -1
- sky/dashboard/out/config.html +1 -1
- sky/dashboard/out/index.html +1 -1
- sky/dashboard/out/infra/[context].html +1 -1
- sky/dashboard/out/infra.html +1 -1
- sky/dashboard/out/jobs/[job].html +1 -1
- sky/dashboard/out/jobs/pools/[pool].html +1 -1
- sky/dashboard/out/jobs.html +1 -1
- sky/dashboard/out/users.html +1 -1
- sky/dashboard/out/volumes.html +1 -1
- sky/dashboard/out/workspace/new.html +1 -1
- sky/dashboard/out/workspaces/[name].html +1 -1
- sky/dashboard/out/workspaces.html +1 -1
- sky/models.py +24 -1
- sky/provision/__init__.py +26 -0
- sky/provision/aws/config.py +30 -12
- sky/provision/kubernetes/__init__.py +2 -0
- sky/provision/kubernetes/volume.py +71 -1
- sky/provision/nebius/instance.py +2 -0
- sky/provision/nebius/utils.py +3 -1
- sky/provision/runpod/volume.py +22 -0
- sky/server/requests/executor.py +3 -0
- sky/server/requests/payloads.py +5 -0
- sky/server/requests/requests.py +15 -14
- sky/templates/nebius-ray.yml.j2 +1 -0
- sky/users/permission.py +6 -0
- sky/users/server.py +8 -2
- sky/utils/db/db_utils.py +3 -0
- sky/utils/schemas.py +7 -1
- sky/volumes/server/core.py +25 -2
- {skypilot_nightly-1.0.0.dev20250904.dist-info → skypilot_nightly-1.0.0.dev20250906.dist-info}/METADATA +41 -41
- {skypilot_nightly-1.0.0.dev20250904.dist-info → skypilot_nightly-1.0.0.dev20250906.dist-info}/RECORD +52 -52
- sky/dashboard/out/_next/static/chunks/6856-66e696640347e77b.js +0 -1
- sky/dashboard/out/_next/static/chunks/9037-1c0101b86582136f.js +0 -6
- /sky/dashboard/out/_next/static/{mriHUOVL_Ht-CeW-e7saa → ZOaq9s6U49jSoGAMkeKqu}/_ssgManifest.js +0 -0
- {skypilot_nightly-1.0.0.dev20250904.dist-info → skypilot_nightly-1.0.0.dev20250906.dist-info}/WHEEL +0 -0
- {skypilot_nightly-1.0.0.dev20250904.dist-info → skypilot_nightly-1.0.0.dev20250906.dist-info}/entry_points.txt +0 -0
- {skypilot_nightly-1.0.0.dev20250904.dist-info → skypilot_nightly-1.0.0.dev20250906.dist-info}/licenses/LICENSE +0 -0
- {skypilot_nightly-1.0.0.dev20250904.dist-info → skypilot_nightly-1.0.0.dev20250906.dist-info}/top_level.txt +0 -0
sky/server/requests/requests.py
CHANGED
|
@@ -17,6 +17,7 @@ import traceback
|
|
|
17
17
|
from typing import (Any, AsyncContextManager, Callable, Dict, Generator, List,
|
|
18
18
|
NamedTuple, Optional, Tuple)
|
|
19
19
|
|
|
20
|
+
import anyio
|
|
20
21
|
import colorama
|
|
21
22
|
import filelock
|
|
22
23
|
|
|
@@ -32,7 +33,6 @@ from sky.server.requests import payloads
|
|
|
32
33
|
from sky.server.requests.serializers import decoders
|
|
33
34
|
from sky.server.requests.serializers import encoders
|
|
34
35
|
from sky.utils import common_utils
|
|
35
|
-
from sky.utils import subprocess_utils
|
|
36
36
|
from sky.utils import ux_utils
|
|
37
37
|
from sky.utils.db import db_utils
|
|
38
38
|
|
|
@@ -784,17 +784,15 @@ def set_request_cancelled(request_id: str) -> None:
|
|
|
784
784
|
|
|
785
785
|
@init_db
|
|
786
786
|
@metrics_lib.time_me
|
|
787
|
-
def _delete_requests(requests: List[Request]):
|
|
787
|
+
async def _delete_requests(requests: List[Request]):
|
|
788
788
|
"""Clean up requests by their IDs."""
|
|
789
789
|
id_list_str = ','.join(repr(req.request_id) for req in requests)
|
|
790
790
|
assert _DB is not None
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
cursor.execute(
|
|
794
|
-
f'DELETE FROM {REQUEST_TABLE} WHERE request_id IN ({id_list_str})')
|
|
791
|
+
await _DB.execute_and_commit_async(
|
|
792
|
+
f'DELETE FROM {REQUEST_TABLE} WHERE request_id IN ({id_list_str})')
|
|
795
793
|
|
|
796
794
|
|
|
797
|
-
def clean_finished_requests_with_retention(retention_seconds: int):
|
|
795
|
+
async def clean_finished_requests_with_retention(retention_seconds: int):
|
|
798
796
|
"""Clean up finished requests older than the retention period.
|
|
799
797
|
|
|
800
798
|
This function removes old finished requests (SUCCEEDED, FAILED, CANCELLED)
|
|
@@ -804,17 +802,19 @@ def clean_finished_requests_with_retention(retention_seconds: int):
|
|
|
804
802
|
retention_seconds: Requests older than this many seconds will be
|
|
805
803
|
deleted.
|
|
806
804
|
"""
|
|
807
|
-
reqs =
|
|
805
|
+
reqs = await get_request_tasks_async(
|
|
808
806
|
req_filter=RequestTaskFilter(status=RequestStatus.finished_status(),
|
|
809
807
|
finished_before=time.time() -
|
|
810
808
|
retention_seconds))
|
|
811
809
|
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
810
|
+
futs = []
|
|
811
|
+
for req in reqs:
|
|
812
|
+
futs.append(
|
|
813
|
+
asyncio.create_task(
|
|
814
|
+
anyio.Path(req.log_path.absolute()).unlink(missing_ok=True)))
|
|
815
|
+
await asyncio.gather(*futs)
|
|
816
816
|
|
|
817
|
-
_delete_requests(reqs)
|
|
817
|
+
await _delete_requests(reqs)
|
|
818
818
|
|
|
819
819
|
# To avoid leakage of the log file, logs must be deleted before the
|
|
820
820
|
# request task in the database.
|
|
@@ -839,7 +839,8 @@ async def requests_gc_daemon():
|
|
|
839
839
|
logger.info('Requests GC daemon cancelled')
|
|
840
840
|
break
|
|
841
841
|
except Exception as e: # pylint: disable=broad-except
|
|
842
|
-
logger.error(f'Error running requests GC daemon: {e}'
|
|
842
|
+
logger.error(f'Error running requests GC daemon: {e}'
|
|
843
|
+
f'traceback: {traceback.format_exc()}')
|
|
843
844
|
# Run the daemon at most once every hour to avoid too frequent
|
|
844
845
|
# cleanup.
|
|
845
846
|
await asyncio.sleep(max(retention_seconds, 3600))
|
sky/templates/nebius-ray.yml.j2
CHANGED
sky/users/permission.py
CHANGED
|
@@ -226,6 +226,12 @@ class PermissionService:
|
|
|
226
226
|
self._load_policy_no_lock()
|
|
227
227
|
return self.enforcer.get_roles_for_user(user_id)
|
|
228
228
|
|
|
229
|
+
def get_users_for_role(self, role: str) -> List[str]:
|
|
230
|
+
"""Get all users for a role."""
|
|
231
|
+
self._lazy_initialize()
|
|
232
|
+
self._load_policy_no_lock()
|
|
233
|
+
return self.enforcer.get_users_for_role(role)
|
|
234
|
+
|
|
229
235
|
def check_endpoint_permission(self, user_id: str, path: str,
|
|
230
236
|
method: str) -> bool:
|
|
231
237
|
"""Check permission."""
|
sky/users/server.py
CHANGED
|
@@ -42,17 +42,23 @@ def users() -> List[Dict[str, Any]]:
|
|
|
42
42
|
"""Gets all users."""
|
|
43
43
|
all_users = []
|
|
44
44
|
user_list = global_user_state.get_all_users()
|
|
45
|
+
|
|
46
|
+
users_to_role = {}
|
|
47
|
+
for role in rbac.get_supported_roles():
|
|
48
|
+
user_ids = permission.permission_service.get_users_for_role(role)
|
|
49
|
+
for user_id in user_ids:
|
|
50
|
+
users_to_role[user_id] = role
|
|
51
|
+
|
|
45
52
|
for user in user_list:
|
|
46
53
|
# Filter out service accounts - they have IDs starting with "sa-"
|
|
47
54
|
if user.is_service_account():
|
|
48
55
|
continue
|
|
49
56
|
|
|
50
|
-
user_roles = permission.permission_service.get_user_roles(user.id)
|
|
51
57
|
all_users.append({
|
|
52
58
|
'id': user.id,
|
|
53
59
|
'name': user.name,
|
|
54
60
|
'created_at': user.created_at,
|
|
55
|
-
'role':
|
|
61
|
+
'role': users_to_role.get(user.id, '')
|
|
56
62
|
})
|
|
57
63
|
return all_users
|
|
58
64
|
|
sky/utils/db/db_utils.py
CHANGED
|
@@ -334,6 +334,9 @@ class SQLiteConn(threading.local):
|
|
|
334
334
|
"""Execute the sql and commit the transaction in a sync block."""
|
|
335
335
|
conn = await self._get_async_conn()
|
|
336
336
|
|
|
337
|
+
if parameters is None:
|
|
338
|
+
parameters = []
|
|
339
|
+
|
|
337
340
|
def exec_and_commit(sql: str, parameters: Optional[Iterable[Any]]):
|
|
338
341
|
# pylint: disable=protected-access
|
|
339
342
|
conn._conn.execute(sql, parameters)
|
sky/utils/schemas.py
CHANGED
|
@@ -1234,6 +1234,9 @@ def get_config_schema():
|
|
|
1234
1234
|
'type': 'null',
|
|
1235
1235
|
}],
|
|
1236
1236
|
},
|
|
1237
|
+
'use_ssm': {
|
|
1238
|
+
'type': 'boolean',
|
|
1239
|
+
},
|
|
1237
1240
|
'post_provision_runcmd': {
|
|
1238
1241
|
'type': 'array',
|
|
1239
1242
|
'items': {
|
|
@@ -1407,7 +1410,10 @@ def get_config_schema():
|
|
|
1407
1410
|
'type': 'object',
|
|
1408
1411
|
'required': [],
|
|
1409
1412
|
'properties': {
|
|
1410
|
-
**_NETWORK_CONFIG_SCHEMA, '
|
|
1413
|
+
**_NETWORK_CONFIG_SCHEMA, 'use_static_ip_address': {
|
|
1414
|
+
'type': 'boolean',
|
|
1415
|
+
},
|
|
1416
|
+
'tenant_id': {
|
|
1411
1417
|
'type': 'string',
|
|
1412
1418
|
},
|
|
1413
1419
|
'domain': {
|
sky/volumes/server/core.py
CHANGED
|
@@ -83,6 +83,25 @@ def volume_list() -> List[Dict[str, Any]]:
|
|
|
83
83
|
"""
|
|
84
84
|
with rich_utils.safe_status(ux_utils.spinner_message('Listing volumes')):
|
|
85
85
|
volumes = global_user_state.get_volumes()
|
|
86
|
+
cloud_to_configs: Dict[str, List[models.VolumeConfig]] = {}
|
|
87
|
+
for volume in volumes:
|
|
88
|
+
config = volume.get('handle')
|
|
89
|
+
if config is None:
|
|
90
|
+
volume_name = volume.get('name')
|
|
91
|
+
logger.warning(f'Volume {volume_name} has no handle.')
|
|
92
|
+
continue
|
|
93
|
+
cloud = config.cloud
|
|
94
|
+
if cloud not in cloud_to_configs:
|
|
95
|
+
cloud_to_configs[cloud] = []
|
|
96
|
+
cloud_to_configs[cloud].append(config)
|
|
97
|
+
|
|
98
|
+
cloud_to_used_by_pods, cloud_to_used_by_clusters = {}, {}
|
|
99
|
+
for cloud, configs in cloud_to_configs.items():
|
|
100
|
+
used_by_pods, used_by_clusters = provision.get_all_volumes_usedby(
|
|
101
|
+
cloud, configs)
|
|
102
|
+
cloud_to_used_by_pods[cloud] = used_by_pods
|
|
103
|
+
cloud_to_used_by_clusters[cloud] = used_by_clusters
|
|
104
|
+
|
|
86
105
|
all_users = global_user_state.get_all_users()
|
|
87
106
|
user_map = {user.id: user.name for user in all_users}
|
|
88
107
|
records = []
|
|
@@ -109,8 +128,12 @@ def volume_list() -> List[Dict[str, Any]]:
|
|
|
109
128
|
logger.warning(f'Volume {volume_name} has no handle.')
|
|
110
129
|
continue
|
|
111
130
|
cloud = config.cloud
|
|
112
|
-
usedby_pods, usedby_clusters = provision.
|
|
113
|
-
cloud,
|
|
131
|
+
usedby_pods, usedby_clusters = provision.map_all_volumes_usedby(
|
|
132
|
+
cloud,
|
|
133
|
+
cloud_to_used_by_pods[cloud],
|
|
134
|
+
cloud_to_used_by_clusters[cloud],
|
|
135
|
+
config,
|
|
136
|
+
)
|
|
114
137
|
record['type'] = config.type
|
|
115
138
|
record['cloud'] = config.cloud
|
|
116
139
|
record['region'] = config.region
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: skypilot-nightly
|
|
3
|
-
Version: 1.0.0.
|
|
3
|
+
Version: 1.0.0.dev20250906
|
|
4
4
|
Summary: SkyPilot: Run AI on Any Infra — Unified, Faster, Cheaper.
|
|
5
5
|
Author: SkyPilot Team
|
|
6
6
|
License: Apache 2.0
|
|
@@ -145,48 +145,48 @@ Requires-Dist: grpcio>=1.63.0; extra == "server"
|
|
|
145
145
|
Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "server"
|
|
146
146
|
Requires-Dist: aiosqlite; extra == "server"
|
|
147
147
|
Provides-Extra: all
|
|
148
|
-
Requires-Dist:
|
|
149
|
-
Requires-Dist: azure-common; extra == "all"
|
|
150
|
-
Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "all"
|
|
151
|
-
Requires-Dist: aiohttp; extra == "all"
|
|
152
|
-
Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
|
|
153
|
-
Requires-Dist: oci; extra == "all"
|
|
154
|
-
Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
|
|
155
|
-
Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
|
|
156
|
-
Requires-Dist: pyjwt; extra == "all"
|
|
157
|
-
Requires-Dist: azure-cli>=2.65.0; extra == "all"
|
|
158
|
-
Requires-Dist: ibm-cos-sdk; extra == "all"
|
|
159
|
-
Requires-Dist: python-dateutil; extra == "all"
|
|
160
|
-
Requires-Dist: ibm-vpc; extra == "all"
|
|
148
|
+
Requires-Dist: google-cloud-storage; extra == "all"
|
|
161
149
|
Requires-Dist: pyopenssl<24.3.0,>=23.2.0; extra == "all"
|
|
162
|
-
Requires-Dist:
|
|
163
|
-
Requires-Dist:
|
|
164
|
-
Requires-Dist: colorama<0.4.5; extra == "all"
|
|
165
|
-
Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
|
|
166
|
-
Requires-Dist: azure-core>=1.24.0; extra == "all"
|
|
167
|
-
Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "all"
|
|
150
|
+
Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
|
|
151
|
+
Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
|
|
168
152
|
Requires-Dist: anyio; extra == "all"
|
|
153
|
+
Requires-Dist: aiosqlite; extra == "all"
|
|
154
|
+
Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
|
|
155
|
+
Requires-Dist: aiohttp; extra == "all"
|
|
156
|
+
Requires-Dist: azure-cli>=2.65.0; extra == "all"
|
|
169
157
|
Requires-Dist: sqlalchemy_adapter; extra == "all"
|
|
170
|
-
Requires-Dist:
|
|
171
|
-
Requires-Dist:
|
|
158
|
+
Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "all"
|
|
159
|
+
Requires-Dist: nebius>=0.2.47; extra == "all"
|
|
160
|
+
Requires-Dist: runpod>=1.6.1; extra == "all"
|
|
161
|
+
Requires-Dist: passlib; extra == "all"
|
|
162
|
+
Requires-Dist: oci; extra == "all"
|
|
163
|
+
Requires-Dist: ibm-cloud-sdk-core; extra == "all"
|
|
172
164
|
Requires-Dist: casbin; extra == "all"
|
|
173
|
-
Requires-Dist: websockets; extra == "all"
|
|
174
|
-
Requires-Dist: aiosqlite; extra == "all"
|
|
175
|
-
Requires-Dist: botocore>=1.29.10; extra == "all"
|
|
176
165
|
Requires-Dist: azure-core>=1.31.0; extra == "all"
|
|
177
|
-
Requires-Dist:
|
|
166
|
+
Requires-Dist: pydo>=0.3.0; extra == "all"
|
|
167
|
+
Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "all"
|
|
168
|
+
Requires-Dist: websockets; extra == "all"
|
|
178
169
|
Requires-Dist: vastai-sdk>=0.1.12; extra == "all"
|
|
179
|
-
Requires-Dist: docker; extra == "all"
|
|
180
|
-
Requires-Dist: nebius>=0.2.47; extra == "all"
|
|
181
|
-
Requires-Dist: google-cloud-storage; extra == "all"
|
|
182
|
-
Requires-Dist: msgraph-sdk; extra == "all"
|
|
183
170
|
Requires-Dist: awscli>=1.27.10; extra == "all"
|
|
184
|
-
Requires-Dist:
|
|
185
|
-
Requires-Dist:
|
|
186
|
-
Requires-Dist:
|
|
187
|
-
Requires-Dist:
|
|
171
|
+
Requires-Dist: azure-core>=1.24.0; extra == "all"
|
|
172
|
+
Requires-Dist: botocore>=1.29.10; extra == "all"
|
|
173
|
+
Requires-Dist: colorama<0.4.5; extra == "all"
|
|
174
|
+
Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
|
|
175
|
+
Requires-Dist: boto3>=1.26.1; extra == "all"
|
|
176
|
+
Requires-Dist: ibm-vpc; extra == "all"
|
|
177
|
+
Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
|
|
178
|
+
Requires-Dist: grpcio>=1.63.0; extra == "all"
|
|
179
|
+
Requires-Dist: msgraph-sdk; extra == "all"
|
|
180
|
+
Requires-Dist: pyjwt; extra == "all"
|
|
188
181
|
Requires-Dist: azure-identity>=1.19.0; extra == "all"
|
|
189
|
-
Requires-Dist:
|
|
182
|
+
Requires-Dist: cudo-compute>=0.1.10; extra == "all"
|
|
183
|
+
Requires-Dist: msrestazure; extra == "all"
|
|
184
|
+
Requires-Dist: docker; extra == "all"
|
|
185
|
+
Requires-Dist: python-dateutil; extra == "all"
|
|
186
|
+
Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
|
|
187
|
+
Requires-Dist: azure-common; extra == "all"
|
|
188
|
+
Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "all"
|
|
189
|
+
Requires-Dist: ibm-cos-sdk; extra == "all"
|
|
190
190
|
Dynamic: author
|
|
191
191
|
Dynamic: classifier
|
|
192
192
|
Dynamic: description
|
|
@@ -284,21 +284,21 @@ SkyPilot supports your existing GPU, TPU, and CPU workloads, with no code change
|
|
|
284
284
|
Install with pip:
|
|
285
285
|
```bash
|
|
286
286
|
# Choose your clouds:
|
|
287
|
-
pip install -U "skypilot[kubernetes,aws,gcp,azure,oci,lambda,runpod,fluidstack,paperspace,cudo,ibm,scp
|
|
287
|
+
pip install -U "skypilot[kubernetes,aws,gcp,azure,oci,nebius,lambda,runpod,fluidstack,paperspace,cudo,ibm,scp]"
|
|
288
288
|
```
|
|
289
289
|
To get the latest features and fixes, use the nightly build or [install from source](https://docs.skypilot.co/en/latest/getting-started/installation.html):
|
|
290
290
|
```bash
|
|
291
291
|
# Choose your clouds:
|
|
292
|
-
pip install "skypilot-nightly[kubernetes,aws,gcp,azure,oci,lambda,runpod,fluidstack,paperspace,cudo,ibm,scp
|
|
292
|
+
pip install "skypilot-nightly[kubernetes,aws,gcp,azure,oci,nebius,lambda,runpod,fluidstack,paperspace,cudo,ibm,scp]"
|
|
293
293
|
```
|
|
294
294
|
|
|
295
295
|
<p align="center">
|
|
296
296
|
<img src="docs/source/_static/intro.gif" alt="SkyPilot">
|
|
297
297
|
</p>
|
|
298
298
|
|
|
299
|
-
Current supported infra: Kubernetes, AWS, GCP, Azure, OCI, Lambda Cloud, Fluidstack,
|
|
300
|
-
|
|
301
|
-
VMware vSphere
|
|
299
|
+
Current supported infra: Kubernetes, AWS, GCP, Azure, OCI, Nebius, Lambda Cloud, RunPod, Fluidstack,
|
|
300
|
+
Cudo, Digital Ocean, Paperspace, Cloudflare, Samsung, IBM, Vast.ai,
|
|
301
|
+
VMware vSphere.
|
|
302
302
|
<p align="center">
|
|
303
303
|
<img alt="SkyPilot" src="https://raw.githubusercontent.com/skypilot-org/skypilot/master/docs/source/images/cloud-logos-light.png" width=85%>
|
|
304
304
|
</p>
|
|
@@ -369,7 +369,7 @@ Latest featured examples:
|
|
|
369
369
|
|
|
370
370
|
| Task | Examples |
|
|
371
371
|
|----------|----------|
|
|
372
|
-
| Training | [Verl](https://docs.skypilot.co/en/latest/examples/training/verl.html), [Finetune Llama 4](https://docs.skypilot.co/en/latest/examples/training/llama-4-finetuning.html), [PyTorch](https://docs.skypilot.co/en/latest/getting-started/tutorial.html), [DeepSpeed](https://docs.skypilot.co/en/latest/examples/training/deepspeed.html), [NeMo](https://docs.skypilot.co/en/latest/examples/training/nemo.html), [Ray](https://docs.skypilot.co/en/latest/examples/training/ray.html), [Unsloth](https://docs.skypilot.co/en/latest/examples/training/unsloth.html), [Jax/TPU](https://docs.skypilot.co/en/latest/examples/training/tpu.html) |
|
|
372
|
+
| Training | [Verl](https://docs.skypilot.co/en/latest/examples/training/verl.html), [Finetune Llama 4](https://docs.skypilot.co/en/latest/examples/training/llama-4-finetuning.html), [TorchTitan](https://docs.skypilot.co/en/latest/examples/training/torchtitan.html), [PyTorch](https://docs.skypilot.co/en/latest/getting-started/tutorial.html), [DeepSpeed](https://docs.skypilot.co/en/latest/examples/training/deepspeed.html), [NeMo](https://docs.skypilot.co/en/latest/examples/training/nemo.html), [Ray](https://docs.skypilot.co/en/latest/examples/training/ray.html), [Unsloth](https://docs.skypilot.co/en/latest/examples/training/unsloth.html), [Jax/TPU](https://docs.skypilot.co/en/latest/examples/training/tpu.html) |
|
|
373
373
|
| Serving | [vLLM](https://docs.skypilot.co/en/latest/examples/serving/vllm.html), [SGLang](https://docs.skypilot.co/en/latest/examples/serving/sglang.html), [Ollama](https://docs.skypilot.co/en/latest/examples/serving/ollama.html) |
|
|
374
374
|
| Models | [DeepSeek-R1](https://docs.skypilot.co/en/latest/examples/models/deepseek-r1.html), [Llama 4](https://docs.skypilot.co/en/latest/examples/models/llama-4.html), [Llama 3](https://docs.skypilot.co/en/latest/examples/models/llama-3.html), [CodeLlama](https://docs.skypilot.co/en/latest/examples/models/codellama.html), [Qwen](https://docs.skypilot.co/en/latest/examples/models/qwen.html), [Kimi-K2](https://docs.skypilot.co/en/latest/examples/models/kimi-k2.html), [Mixtral](https://docs.skypilot.co/en/latest/examples/models/mixtral.html) |
|
|
375
375
|
| AI apps | [RAG](https://docs.skypilot.co/en/latest/examples/applications/rag.html), [vector databases](https://docs.skypilot.co/en/latest/examples/applications/vector_database.html) (ChromaDB, CLIP) |
|
{skypilot_nightly-1.0.0.dev20250904.dist-info → skypilot_nightly-1.0.0.dev20250906.dist-info}/RECORD
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
sky/__init__.py,sha256=
|
|
1
|
+
sky/__init__.py,sha256=lgxM5XXTabknkE9TNxyRYsheNYJeHtY7fGQuFuUPtmY,6615
|
|
2
2
|
sky/admin_policy.py,sha256=XdcJnYqmude-LGGop-8U-FeiJcqtfYsYtIy4rmoCJnM,9799
|
|
3
3
|
sky/authentication.py,sha256=00EHVELI7nuW7JQ_74t1RKIc7iohKnwdvlw6h2gXRmg,25487
|
|
4
4
|
sky/check.py,sha256=Z7D6txaOAEL7fyEQ8q-Zxk1aWaHpEcl412Rj2mThbQ0,31025
|
|
@@ -9,7 +9,7 @@ sky/dag.py,sha256=0ZpAEDXuIFo1SP7YJpF9vXiFxpRwqP8od-UXMg95td8,3929
|
|
|
9
9
|
sky/exceptions.py,sha256=sZ0rYuPZKKv4brkfPPJacWo2dY48FfqevwFT1bFzORU,20328
|
|
10
10
|
sky/execution.py,sha256=v1JNAjjQC1iOXjG8eba-zrMDVGrjZjx7Ys4f4ExwQp0,34674
|
|
11
11
|
sky/global_user_state.py,sha256=ojdAnueNZz4DialJZoMe9dAhYS6IV-Bc1TuIc6VU9GU,90165
|
|
12
|
-
sky/models.py,sha256=
|
|
12
|
+
sky/models.py,sha256=ZKisLai7vqUr6_BPev6Oziu5N23WLzTh9nRtHSlRchw,3999
|
|
13
13
|
sky/optimizer.py,sha256=iR57bL_8BeG6bh1sH3J6n6i65EBFjmyftezYM4nnDZA,64150
|
|
14
14
|
sky/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
sky/resources.py,sha256=TY-JVOOBexmLEbUj_8tYU8O_F9jKDpFkexcGUjl0XJk,107313
|
|
@@ -35,13 +35,13 @@ sky/adaptors/vast.py,sha256=tpvmHi7IkQNzbbHVkeo04kUSajoEpSzXr2XgeO_I1LU,695
|
|
|
35
35
|
sky/adaptors/vsphere.py,sha256=zJP9SeObEoLrpgHW2VHvZE48EhgVf8GfAEIwBeaDMfM,2129
|
|
36
36
|
sky/backends/__init__.py,sha256=tpa9gAygQopsiBUUuy3wVmr4E05FoPTFHIWqEo4i-u0,627
|
|
37
37
|
sky/backends/backend.py,sha256=6ltCouZhaXJqv2Zh9nP_YCdHf10_oIRNzAA-XDiMmI8,7969
|
|
38
|
-
sky/backends/backend_utils.py,sha256=
|
|
39
|
-
sky/backends/cloud_vm_ray_backend.py,sha256=
|
|
38
|
+
sky/backends/backend_utils.py,sha256=t8qhTFWxnVNrhW55V2msx9j6tyXbuXpIcP9NS60dLUc,164035
|
|
39
|
+
sky/backends/cloud_vm_ray_backend.py,sha256=a6Cw9J2InUCKRAgCkfx6SFas-VyGEQQ9xx2LsF--Db0,280101
|
|
40
40
|
sky/backends/docker_utils.py,sha256=_EhM6NStZDAwcegppQqExaB5iuSn1qL4xFFUqXAz2Uk,8392
|
|
41
41
|
sky/backends/local_docker_backend.py,sha256=r84uhXCk7NK9hGW840KPKnrADd7mCerMwncxOzckHg4,17126
|
|
42
42
|
sky/backends/wheel_utils.py,sha256=DE71Muq5qLRhGpCVg1Rb6YOI7S_BzT8Hak27Pz8L4yw,12486
|
|
43
43
|
sky/backends/monkey_patches/monkey_patch_ray_up.py,sha256=76-y2fCaE3JINj8lEwHT1eirYzCbpD8O1ySsysuGu8o,3450
|
|
44
|
-
sky/catalog/__init__.py,sha256=
|
|
44
|
+
sky/catalog/__init__.py,sha256=xWtuB8_NMO5iTcaWbSrategVCIo1af1Om0yk_Uz_nEA,14770
|
|
45
45
|
sky/catalog/aws_catalog.py,sha256=AttfW66wcHhh3gho-qSY6QzyF_WGakpAIS41syMfLTY,14194
|
|
46
46
|
sky/catalog/azure_catalog.py,sha256=MdCACMw0hxhRH0aWiHGJnleYeGjO6Fl0ePZ7CAUoSI4,8382
|
|
47
47
|
sky/catalog/common.py,sha256=-gHSUrlVVMi0zC6Oerb0CspOlyxJokbuWvZ9PBII7ic,28761
|
|
@@ -78,7 +78,7 @@ sky/catalog/data_fetchers/fetch_vsphere.py,sha256=Yf7tKzwJsQ_4f64IT1EAP108C1D3Rg
|
|
|
78
78
|
sky/client/__init__.py,sha256=pz6xvVSd9X-gwqbsDL0E9QOojYqM0KAD0j-NCyCIF1k,38
|
|
79
79
|
sky/client/common.py,sha256=aYkFeiWgiyJTXm25z_o3ISrvMA-SthbggmKG6qPtwj8,16740
|
|
80
80
|
sky/client/oauth.py,sha256=sNJ_DMsSTcxluj5FeNQ2IafZJLImRFmCAZ79bXeABn4,2871
|
|
81
|
-
sky/client/sdk.py,sha256=
|
|
81
|
+
sky/client/sdk.py,sha256=ibj-FWVtVgx4yQhnQkU3jU2l2pB1YE8yp1F59DJme3o,106011
|
|
82
82
|
sky/client/sdk_async.py,sha256=nZK9s6BKUsJ6F04vzKI4-SHFF1-3hn5V6ByS9MQ1LmY,30674
|
|
83
83
|
sky/client/service_account_auth.py,sha256=5jXk0G6ufuW-SHCO7BEHQeTO0_2a8KfFmA63auXFRj4,1529
|
|
84
84
|
sky/client/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -98,7 +98,7 @@ sky/clouds/hyperbolic.py,sha256=bmV4NFpUPgzR0ownavHHVqyw26EtOgQ_ZB6SlxlgmJw,1199
|
|
|
98
98
|
sky/clouds/ibm.py,sha256=qMbOkTMJzPn2HDH9cie9zERvukRZbZoueLIaufCECAw,22860
|
|
99
99
|
sky/clouds/kubernetes.py,sha256=_-UCrA09EPMjClQzySApcaPF3OumgCDNbi_eLoC6NTs,56704
|
|
100
100
|
sky/clouds/lambda_cloud.py,sha256=aRW4GwLjaFFR6_bPbBr9o8z-SKHtuP18BAVwoPuDtBE,13553
|
|
101
|
-
sky/clouds/nebius.py,sha256=
|
|
101
|
+
sky/clouds/nebius.py,sha256=ngH5W4G7Zo2Fgc5eir9cQu91faVKCh1bSbydGDd-su4,21663
|
|
102
102
|
sky/clouds/oci.py,sha256=U5wtBx78RqCgCAqjlTTgSnRqWWa7D7LIvyoo8097Fno,28571
|
|
103
103
|
sky/clouds/paperspace.py,sha256=-wvFUsUGaOlFYfe3jCdEB3_mwDmK4R66hJy8nX9822o,12010
|
|
104
104
|
sky/clouds/runpod.py,sha256=vxZn5XRrj_Cub26s9vjGhA5XIrkxuvf1Iau4f13Au-I,14104
|
|
@@ -112,17 +112,19 @@ sky/clouds/utils/azure_utils.py,sha256=NToRBnhEyuUvb-nBnsKTxjhOBRkMcrelL8LK4w6s4
|
|
|
112
112
|
sky/clouds/utils/gcp_utils.py,sha256=09MF4Vx0EW7S-GXGpyxpl2aQlHrqeu9ioV0nyionAyk,9890
|
|
113
113
|
sky/clouds/utils/oci_utils.py,sha256=TFqAqRLggg4Z0bhxrrq8nouSSomZy-ub1frHXEkud2M,7302
|
|
114
114
|
sky/clouds/utils/scp_utils.py,sha256=VGuccVO5uFGr8-yolWSoYrgr11z6cIeDBGcqkBzAyOs,18409
|
|
115
|
-
sky/dashboard/out/404.html,sha256=
|
|
116
|
-
sky/dashboard/out/clusters.html,sha256=
|
|
117
|
-
sky/dashboard/out/config.html,sha256=
|
|
115
|
+
sky/dashboard/out/404.html,sha256=Hogw89OB77DlJHqGM7HVgPi6307ybGOvEZwsRN3Ibuk,1423
|
|
116
|
+
sky/dashboard/out/clusters.html,sha256=fbclkPylnClPSPIWwPzz_wmPfEZb1t8mBuaTkVvyJbE,1418
|
|
117
|
+
sky/dashboard/out/config.html,sha256=RzscPJZoG9tLY-o9EqQDcnsprjwIluliqoMJovRzZoU,1414
|
|
118
118
|
sky/dashboard/out/favicon.ico,sha256=XilUZZglAl_1zRsg85QsbQgmQAzGPQjcUIJ-A3AzYn8,93590
|
|
119
|
-
sky/dashboard/out/index.html,sha256=
|
|
120
|
-
sky/dashboard/out/infra.html,sha256=
|
|
121
|
-
sky/dashboard/out/jobs.html,sha256=
|
|
119
|
+
sky/dashboard/out/index.html,sha256=iRFbhq3xwaqGGrVhc3rsN-aWTOvrZoRLM_gsldWZMP0,1407
|
|
120
|
+
sky/dashboard/out/infra.html,sha256=yQkZu3F3gN446jl0MYODNTyrM9UZ2V2w_ADyYuPq8Ik,1412
|
|
121
|
+
sky/dashboard/out/jobs.html,sha256=VVKUG_cdVfZYEoSlMR2nuTkYP_gn-FwenCdijRlGR54,1410
|
|
122
122
|
sky/dashboard/out/skypilot.svg,sha256=c0iRtlfLlaUm2p0rG9NFmo5FN0Qhf3pq5Xph-AeMPJw,5064
|
|
123
|
-
sky/dashboard/out/users.html,sha256=
|
|
124
|
-
sky/dashboard/out/volumes.html,sha256=
|
|
125
|
-
sky/dashboard/out/workspaces.html,sha256=
|
|
123
|
+
sky/dashboard/out/users.html,sha256=Uf3_Y4H1SgJDuXLXntUL-xMjAw7nSYjgx3wSXVDlnZ8,1412
|
|
124
|
+
sky/dashboard/out/volumes.html,sha256=0t6xCbH6BsnlVK1Mly7azJu7lfa8BLomsl4FiH97xqc,1416
|
|
125
|
+
sky/dashboard/out/workspaces.html,sha256=H53YA4ZxaFubCIVeTJZvPAZOUE-rZcddhE7bt_uHPKA,1422
|
|
126
|
+
sky/dashboard/out/_next/static/ZOaq9s6U49jSoGAMkeKqu/_buildManifest.js,sha256=Pvhr9Bwcc1m2lvV4irQGV1agk9EuhOz-ZAJ0ILvukmc,2428
|
|
127
|
+
sky/dashboard/out/_next/static/ZOaq9s6U49jSoGAMkeKqu/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
|
126
128
|
sky/dashboard/out/_next/static/chunks/1121-408ed10b2f9fce17.js,sha256=WRuwuuT4OiOBZc-c8VIS-vO9wtyRdKvGN51obQLfxwA,8596
|
|
127
129
|
sky/dashboard/out/_next/static/chunks/1141-943efc7aff0f0c06.js,sha256=tUOoU0nIEShZeD5pBiOWrl8-czHc6PpnxxJilnDplHM,17330
|
|
128
130
|
sky/dashboard/out/_next/static/chunks/1272-1ef0bf0237faccdb.js,sha256=VJ6y-Z6Eg2T93hQIRfWAbjAkQ7nQhglmIaVbEpKSILY,38451
|
|
@@ -143,22 +145,22 @@ sky/dashboard/out/_next/static/chunks/6135-4b4d5e824b7f9d3c.js,sha256=OLvQvfyMwh
|
|
|
143
145
|
sky/dashboard/out/_next/static/chunks/616-3d59f75e2ccf9321.js,sha256=UQxIbEZseq4ore8Y1Tm5OT3Re7fU8ZZKjQQWk4JPvK4,179393
|
|
144
146
|
sky/dashboard/out/_next/static/chunks/649.b9d7f7d10c1b8c53.js,sha256=wUdmzEiSknP_LP1jtpaNdiDRrF8dtxaC7Z_bWNRC8sM,11946
|
|
145
147
|
sky/dashboard/out/_next/static/chunks/6601-06114c982db410b6.js,sha256=coh7shL8L5Vp2MsibBTx-xxNq_BI-zp0jAl7f6eVmUQ,9659
|
|
146
|
-
sky/dashboard/out/_next/static/chunks/6856-
|
|
148
|
+
sky/dashboard/out/_next/static/chunks/6856-6e2bc8a6fd0867af.js,sha256=Olh21LZ02M_afwA4okyHBgZd85IyiSozzPaFUCaAlFY,16110
|
|
147
149
|
sky/dashboard/out/_next/static/chunks/6989-01359c57e018caa4.js,sha256=iIEGQp3dsChOsDxd7QH_ShGczWhvigMfIT35CSsZjjY,11873
|
|
148
150
|
sky/dashboard/out/_next/static/chunks/6990-08b2a1cae076a943.js,sha256=fWdN6V7HMAPhUGCaejOrETv_O1D7atMOpnMiE6LIsc8,16117
|
|
149
151
|
sky/dashboard/out/_next/static/chunks/7325.b4bc99ce0892dcd5.js,sha256=5x42A-PEZANeHAcNDbcnJ21uQF48yTrP3XeW5L4RH1g,495
|
|
150
152
|
sky/dashboard/out/_next/static/chunks/7411-b15471acd2cba716.js,sha256=Dnmr9e-yZQbnkjwzqIZU3aK-3u1Tqr8STF-ODYWLkaw,13304
|
|
151
153
|
sky/dashboard/out/_next/static/chunks/754-d0da8ab45f9509e9.js,sha256=R6UUmK1P1PfVx9zOU0jlBsVSk5ZchuPwWObAeVkkhU0,785694
|
|
152
154
|
sky/dashboard/out/_next/static/chunks/7669.1f5d9a402bf5cc42.js,sha256=FbppLXkHKPxzVKrJg15FwCoqLU18yn5jBgYgDkjqDGM,52179
|
|
153
|
-
sky/dashboard/out/_next/static/chunks/8969-
|
|
155
|
+
sky/dashboard/out/_next/static/chunks/8969-0be3036bf86f8256.js,sha256=QfnTv9-pvtCM7xWv3k5-JTX4sLct3MnSZ3tcFcRDs_c,13411
|
|
154
156
|
sky/dashboard/out/_next/static/chunks/9025.c12318fb6a1a9093.js,sha256=1Txv8nMuBYtB0UoWdwmFbkA2iB85jgKB1EJJrE1ETDo,10605
|
|
155
|
-
sky/dashboard/out/_next/static/chunks/9037-
|
|
157
|
+
sky/dashboard/out/_next/static/chunks/9037-fa1737818d0a0969.js,sha256=rsXWKdY-05Xc4ep2dfVHVodlKTecr-SZUHrnqfB1SXU,18931
|
|
156
158
|
sky/dashboard/out/_next/static/chunks/fd9d1056-86323a29a8f7e46a.js,sha256=2lquiZSfbI-gX4j4TW4JSMLL_D5ShqwydgWpFyXrTy8,172834
|
|
157
159
|
sky/dashboard/out/_next/static/chunks/framework-cf60a09ccd051a10.js,sha256=_QbamfAbTV4_xMVOTjz0rhiAPAi8ET5MuSNjjW5oMng,140965
|
|
158
160
|
sky/dashboard/out/_next/static/chunks/main-app-587214043926b3cc.js,sha256=t7glRfataAjNw691Wni-ZU4a3BsygRzPKoI8NOm-lsY,116244
|
|
159
161
|
sky/dashboard/out/_next/static/chunks/main-f15ccb73239a3bf1.js,sha256=jxOPLDVX3rkMc_jvGx2a-N2v6mvfOa8O6V0o-sLT0tI,110208
|
|
160
162
|
sky/dashboard/out/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js,sha256=6QPOwdWeAVe8x-SsiDrm-Ga6u2DkqgG5SFqglrlyIgA,91381
|
|
161
|
-
sky/dashboard/out/_next/static/chunks/webpack-
|
|
163
|
+
sky/dashboard/out/_next/static/chunks/webpack-8df25bce0107f4bd.js,sha256=4cxO8_-DkV4TDJcj_hAJGkAGd3das3nbxPPO450edhQ,4742
|
|
162
164
|
sky/dashboard/out/_next/static/chunks/pages/_app-ce361c6959bc2001.js,sha256=mllo4Yasw61zRtEO49uE_MrAutg9josSJShD0DNSjf0,95518
|
|
163
165
|
sky/dashboard/out/_next/static/chunks/pages/_error-c66a4e8afc46f17b.js,sha256=vjERjtMAbVk-19LyPf1Jc-H6TMcrSznSz6brzNqbqf8,253
|
|
164
166
|
sky/dashboard/out/_next/static/chunks/pages/clusters-469814d711d63b1b.js,sha256=p8CQtv5n745WbV7QdyCapmglI2s_2UBB-f_KZE4RAZg,879
|
|
@@ -170,23 +172,21 @@ sky/dashboard/out/_next/static/chunks/pages/users-018bf31cda52e11b.js,sha256=mZu
|
|
|
170
172
|
sky/dashboard/out/_next/static/chunks/pages/volumes-739726d6b823f532.js,sha256=URJ4PMHh15XCXB6os2a7ymR3mG3MfTNrKyizYEhW2OE,836
|
|
171
173
|
sky/dashboard/out/_next/static/chunks/pages/workspaces-7598c33a746cdc91.js,sha256=y_qEXM9YPRja20D8IVLj8mgIEHQPQr2Le733bVrsXJw,863
|
|
172
174
|
sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]-0b4b35dc1dfe046c.js,sha256=w4xXHVeRMtj-YgS247UzTnAQFY2Sn_f3lChW1YoyZZ4,19554
|
|
173
|
-
sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]/[job]-
|
|
175
|
+
sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]/[job]-1cbba24bd1bd35f8.js,sha256=20rZ66tPurBar9qA5ijkEN71Ym3Ym4e1GFA5nF5imAc,25799
|
|
174
176
|
sky/dashboard/out/_next/static/chunks/pages/infra/[context]-6563820e094f68ca.js,sha256=P3fWbG3DX-Q1SusyuaCuJILvs9suIxNsdo1SRAenZpc,847
|
|
175
177
|
sky/dashboard/out/_next/static/chunks/pages/jobs/[job]-dd64309c3fe67ed2.js,sha256=pDCMgJauG-gMgWzCSTF3CBcc_WduZw75NhuyRBbm8bg,29203
|
|
176
178
|
sky/dashboard/out/_next/static/chunks/pages/jobs/pools/[pool]-07349868f7905d37.js,sha256=Q0LIzBnqZxcH4wL87way-kjcfK74u2K75ytBzz4W0PY,25590
|
|
177
179
|
sky/dashboard/out/_next/static/chunks/pages/workspace/new-3f88a1c7e86a3f86.js,sha256=83s5N5CZwIaRcmYMfqn2we60n2VRmgFw6Tbx18b8-e0,762
|
|
178
180
|
sky/dashboard/out/_next/static/chunks/pages/workspaces/[name]-af76bb06dbb3954f.js,sha256=cGCpDszMI6ckUHVelwAh9ZVk1erfz_UXSLz9GCqGUAE,1495
|
|
179
181
|
sky/dashboard/out/_next/static/css/4614e06482d7309e.css,sha256=nk6GriyGVd1aGXrLd7BcMibnN4v0z-Q_mXGxrHFWqrE,56126
|
|
180
|
-
sky/dashboard/out/
|
|
181
|
-
sky/dashboard/out/
|
|
182
|
-
sky/dashboard/out/
|
|
183
|
-
sky/dashboard/out/
|
|
184
|
-
sky/dashboard/out/
|
|
185
|
-
sky/dashboard/out/jobs/[job].html,sha256=jzszBcZp6Sf2Ts4HqMbE91fIyCVI-mwUwFKWGYZE9Yw,2304
|
|
186
|
-
sky/dashboard/out/jobs/pools/[pool].html,sha256=9KH_9Wx1m86GSuv55-qO3FLrykoMEgHNhOLN9dDWOHY,2142
|
|
182
|
+
sky/dashboard/out/clusters/[cluster].html,sha256=poVPJgD0xHhF4wwumqA6ud_zyeWhE0C1xsaazqeSpvc,2936
|
|
183
|
+
sky/dashboard/out/clusters/[cluster]/[job].html,sha256=-hGCbagveX0ju1Rk8RQ1mjQcyd27DmfO-_ABa4Qa-No,2073
|
|
184
|
+
sky/dashboard/out/infra/[context].html,sha256=syz0_IWVKUCmvftCrULks5Obwq7M_Gz8oRBqTzSXk24,1436
|
|
185
|
+
sky/dashboard/out/jobs/[job].html,sha256=cqmLJy-rcrgmuzT8AVwD9I4oNRWjIW4Y8pz6OZTyaiw,2304
|
|
186
|
+
sky/dashboard/out/jobs/pools/[pool].html,sha256=cvwVtfl9DkIf17LkitDFlxcE8B38uRcDtsCddnNsYpA,2142
|
|
187
187
|
sky/dashboard/out/videos/cursor-small.mp4,sha256=8tRdp1vjawOrXUar1cfjOc-nkaKmcwCPZx_LO0XlCvQ,203285
|
|
188
|
-
sky/dashboard/out/workspace/new.html,sha256=
|
|
189
|
-
sky/dashboard/out/workspaces/[name].html,sha256=
|
|
188
|
+
sky/dashboard/out/workspace/new.html,sha256=jGmQmJVpdvS6OQMisthKOegfGlxt_mGcGZHOvUB9yVo,1428
|
|
189
|
+
sky/dashboard/out/workspaces/[name].html,sha256=JjagR52vqO222gIkvZqETyFlfExaqVioJ1dNjs03HaQ,2759
|
|
190
190
|
sky/data/__init__.py,sha256=Nhaf1NURisXpZuwWANa2IuCyppIuc720FRwqSE2oEwY,184
|
|
191
191
|
sky/data/data_transfer.py,sha256=N8b0CQebDuHieXjvEVwlYmK6DbQxUGG1RQJEyTbh3dU,12040
|
|
192
192
|
sky/data/data_utils.py,sha256=AjEA_JRjo9NBMlv-Lq5iV4lBED_YZ1VqBR9pG6fGVWE,35179
|
|
@@ -213,7 +213,7 @@ sky/logs/aws.py,sha256=zMwFXltxhhrigPLWGLD4bIWs2XnsLvabgGI12MoS1nE,9938
|
|
|
213
213
|
sky/logs/gcp.py,sha256=eKVEcHO3FJRg_YTcE9omE8uAIF6AdBWWpkEPqWFAqXg,3857
|
|
214
214
|
sky/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
215
215
|
sky/metrics/utils.py,sha256=Cww3yNG4HyW4DEdLOFUayFgMZ16t2JFSvvhuTTV7Vio,7654
|
|
216
|
-
sky/provision/__init__.py,sha256=
|
|
216
|
+
sky/provision/__init__.py,sha256=ERanyd9tOndpveWc21k_hwjjWisDGOub77JXXDzdFgo,8864
|
|
217
217
|
sky/provision/common.py,sha256=LdjM9SL9NDtsARom12tVv_WoUNL3PTlU5RoLfeWGGgM,10807
|
|
218
218
|
sky/provision/constants.py,sha256=oc_XDUkcoLQ_lwDy5yMeMSWviKS0j0s1c0pjlvpNeWY,800
|
|
219
219
|
sky/provision/docker_utils.py,sha256=DpyBNuGv5BrU3Z3LDy6BZbrur4wPFzYJAtQuUK_cEsM,21439
|
|
@@ -222,7 +222,7 @@ sky/provision/logging.py,sha256=_sx_TH6nLt0FF3myS5pEZbiMhXyl4s1XwMidu_TTBUw,2091
|
|
|
222
222
|
sky/provision/metadata_utils.py,sha256=LrxeV4wD2QPzNdXV_npj8q-pr35FatxBBjF_jSbpOT0,4013
|
|
223
223
|
sky/provision/provisioner.py,sha256=gH85DqHFAUJU1L95zA1kA6lsYMDzClSfQHe9gWfpBE0,33352
|
|
224
224
|
sky/provision/aws/__init__.py,sha256=mxq8PeWJqUtalDozTNpbtENErRZ1ktEs8uf2aG9UUgU,731
|
|
225
|
-
sky/provision/aws/config.py,sha256=
|
|
225
|
+
sky/provision/aws/config.py,sha256=DryVIQ80AcjVjOz68EpiJlVYz62hM4Xev8wUNrS_LZ0,31965
|
|
226
226
|
sky/provision/aws/instance.py,sha256=lUOPyFxmkufYdB0csu2-YHBomSmf5XZKaSu4Ko57ujo,45801
|
|
227
227
|
sky/provision/aws/utils.py,sha256=LrjeQ09zA7GoMv9Nt8TlL2A3VqqChsgJ9bL-Q5VLaao,3401
|
|
228
228
|
sky/provision/azure/__init__.py,sha256=87cgk1_Ws7n9rqaDDPv-HpfrkVeSQMdFQnhnXwyx9g4,548
|
|
@@ -255,14 +255,14 @@ sky/provision/hyperbolic/__init__.py,sha256=76Z9YhSwNvnisvnYto2wIEtWg1qt4Y4hG3Nm
|
|
|
255
255
|
sky/provision/hyperbolic/config.py,sha256=N7ekDE57bc8GPQc4zabQ1f9y95syadpADRRH6gZZiNI,276
|
|
256
256
|
sky/provision/hyperbolic/instance.py,sha256=xVU5x1iqH_9dXDL_Vlbrme5xEeeHHLoHslpPxQy9spY,17257
|
|
257
257
|
sky/provision/hyperbolic/utils.py,sha256=NCa3ULvIi64-YHYoOnPd3SShlJ6VuQsEwaTBqHFrqpg,14953
|
|
258
|
-
sky/provision/kubernetes/__init__.py,sha256=
|
|
258
|
+
sky/provision/kubernetes/__init__.py,sha256=xUHCbN5fkbnM5_E1trFHHOndTsvEwBdi-8qvvpK92io,1030
|
|
259
259
|
sky/provision/kubernetes/config.py,sha256=a5HzkR_FKVhHHTiBA1sS9GZaOSKa3ML88wGrzm-7J3Y,29512
|
|
260
260
|
sky/provision/kubernetes/constants.py,sha256=vZJQsAVjAgwsOskB48tIFSXtNw7IFnJOQE_H6N-vOYQ,1130
|
|
261
261
|
sky/provision/kubernetes/instance.py,sha256=NgCQxnbBqVKeU5Tng6JCR_Lqi9Y6Eo05Jcj5FyMZnUo,70031
|
|
262
262
|
sky/provision/kubernetes/network.py,sha256=Dgj8u7IQBHKHt-mSDhYzue1wfDk96FR_8fO89TwuZ2E,12846
|
|
263
263
|
sky/provision/kubernetes/network_utils.py,sha256=XYgZ6BEO-YB2o3Y_eXgr2Czk9wxGdWSs0mEJnpLU77Q,12256
|
|
264
264
|
sky/provision/kubernetes/utils.py,sha256=6WVW-yQYaOJ80YZOyHNlWVA-jKITKFfzVLjELRHibCU,159371
|
|
265
|
-
sky/provision/kubernetes/volume.py,sha256=
|
|
265
|
+
sky/provision/kubernetes/volume.py,sha256=b5mozvUCw9rsGxiUS9LxR-MyELK-EQHYglJkGTFNobY,11473
|
|
266
266
|
sky/provision/kubernetes/manifests/fusermount-server-daemonset.yaml,sha256=S87GNAbDqgTrLuxF-afPAqQ0V-i41El4s_9KBZMuaag,1331
|
|
267
267
|
sky/provision/lambda_cloud/__init__.py,sha256=6EEvSgtUeEiup9ivIFevHmgv0GqleroO2X0K7TRa2nE,612
|
|
268
268
|
sky/provision/lambda_cloud/config.py,sha256=jq1iLzp4Up61r4JGxvtpVbJlgXnea3LHYQhCQyyl7ik,272
|
|
@@ -271,8 +271,8 @@ sky/provision/lambda_cloud/lambda_utils.py,sha256=G1dciGF8U3OGYk0-1pc3IDsT8AyA8A
|
|
|
271
271
|
sky/provision/nebius/__init__.py,sha256=30I3181mu0W5g9fNvaWMPoBJZoGZ9RibuTpBH9P2pDg,558
|
|
272
272
|
sky/provision/nebius/config.py,sha256=LK9kTDp2w6zZrn3vNdcSGgsgS-dL_j63Nh4_u3pqNiA,321
|
|
273
273
|
sky/provision/nebius/constants.py,sha256=t2wglGR4-sifAIiVyLhwAvPJZRqk7oQIRgNXpL9PKDY,1682
|
|
274
|
-
sky/provision/nebius/instance.py,sha256=
|
|
275
|
-
sky/provision/nebius/utils.py,sha256=
|
|
274
|
+
sky/provision/nebius/instance.py,sha256=SLotFewmaQlgV6QwT9-yS9JKXGzIW5R8_oGrKdodJ8Y,12468
|
|
275
|
+
sky/provision/nebius/utils.py,sha256=0u1GL3JVVwHk5nNUJB0SbkTc6vQmjBwFZg_zzywfUss,16958
|
|
276
276
|
sky/provision/oci/__init__.py,sha256=5E6EUtTK3mqGVREw5TuVl5DxteBYTZigIii7c8gHExU,612
|
|
277
277
|
sky/provision/oci/config.py,sha256=diSDTyHLokcuXGB2XgZCHFvsXa8bah1PP2XuMouW_UU,1650
|
|
278
278
|
sky/provision/oci/instance.py,sha256=q9n1qbMuMd1dMMB5zzPfmh8YowVnDcTH5iNEVNQT178,16929
|
|
@@ -286,7 +286,7 @@ sky/provision/runpod/__init__.py,sha256=Rq8uoito8KvrN57JCO4_HEjV3XlNc6LH1Ac493cs
|
|
|
286
286
|
sky/provision/runpod/config.py,sha256=9ulZJVL7nHuxhTdoj8D7lNn7SdicJ5zc6FIcHIG9tcg,321
|
|
287
287
|
sky/provision/runpod/instance.py,sha256=7v9s3lwYIfGXwsn3EHmfKtpShEzUa3oYSaLNKgwMNsE,11189
|
|
288
288
|
sky/provision/runpod/utils.py,sha256=rScHrVpM__V_a4m1LDKaOJZVQIBquFxfc0tfIPVfh1Q,14127
|
|
289
|
-
sky/provision/runpod/volume.py,sha256=
|
|
289
|
+
sky/provision/runpod/volume.py,sha256=99qRVH-7SowVh68En9IVymRB7XTi23pk4LXtle9QDU4,6567
|
|
290
290
|
sky/provision/runpod/api/__init__.py,sha256=eJwjPeQZ5B7chf4-Bl4YeI2Uo9aLX4M1rr2NmPk89_E,112
|
|
291
291
|
sky/provision/runpod/api/commands.py,sha256=oh77PS0H0wZudHV8II9ceRuaFQ8FN4NJ4S3-6_PeqPM,4238
|
|
292
292
|
sky/provision/runpod/api/pods.py,sha256=GMwxgNr9NnHPfyh2Y9b8S_vLhrLY4h7LybFBBQNAyfw,4948
|
|
@@ -373,11 +373,11 @@ sky/server/html/log.html,sha256=TSGZktua9Ysl_ysg3w60rjxAxhH61AJnsYDHdtqrjmI,6929
|
|
|
373
373
|
sky/server/html/token_page.html,sha256=eUndS5u1foL9vaWGPRTLMt7lCzD1g0wYJ2v_EeeFzlc,7046
|
|
374
374
|
sky/server/requests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
375
375
|
sky/server/requests/event_loop.py,sha256=OhpPbuce65bbjpGRlcJa78AVnYSm08SzFKt70ypCUuQ,1211
|
|
376
|
-
sky/server/requests/executor.py,sha256=
|
|
377
|
-
sky/server/requests/payloads.py,sha256=
|
|
376
|
+
sky/server/requests/executor.py,sha256=F85YD-zMADX42W03EQNCusc374jP2Jqvz6o7YRlzCOo,28226
|
|
377
|
+
sky/server/requests/payloads.py,sha256=I12nhbqrp5ggkJGnJqwYBWgmjTCYXMoVEjQ5DuqOjIM,26812
|
|
378
378
|
sky/server/requests/preconditions.py,sha256=KxTAoYqpJU96Ot36NHtRq3PC3f_BXk_cHI0b2eA8U6A,7323
|
|
379
379
|
sky/server/requests/process.py,sha256=UpJp5rZizNMFRCNRtudFSjbcJhFarFbtAGDWI9x_ZyE,13197
|
|
380
|
-
sky/server/requests/requests.py,sha256=
|
|
380
|
+
sky/server/requests/requests.py,sha256=T6-cYE5h3qGiPadt7jQV8t0UTQXAEGK1Ejx5XThEYIE,30147
|
|
381
381
|
sky/server/requests/queues/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
382
382
|
sky/server/requests/queues/local_queue.py,sha256=X6VkBiUmgd_kfqIK1hCtMWG1b8GiZbY70TBiBR6c6GY,416
|
|
383
383
|
sky/server/requests/queues/mp_queue.py,sha256=jDqP4Jd28U3ibSFyMR1DF9I2OWZrPZqFJrG5S6RFpyw,3403
|
|
@@ -441,7 +441,7 @@ sky/templates/kubernetes-ray.yml.j2,sha256=oqUiMw5OuiNOiRDWmlmueic-LbsVbWw7OvteI
|
|
|
441
441
|
sky/templates/kubernetes-ssh-jump.yml.j2,sha256=k5W5sOIMppU7dDkJMwPlqsUcb92y7L5_TVG3hkgMy8M,2747
|
|
442
442
|
sky/templates/lambda-ray.yml.j2,sha256=PbUjxrGhyxhXxL2cmONAI_PRsua3I3Xr5V8yoEy7H6c,4760
|
|
443
443
|
sky/templates/local-ray.yml.j2,sha256=FNHeyHF6nW9nU9QLIZceUWfvrFTTcO51KqhTnYCEFaA,1185
|
|
444
|
-
sky/templates/nebius-ray.yml.j2,sha256=
|
|
444
|
+
sky/templates/nebius-ray.yml.j2,sha256=W1y4Mcg3yrBiaKFoKKCO_T2tU3DTqes216vKX4dspyk,6782
|
|
445
445
|
sky/templates/oci-ray.yml.j2,sha256=TvB2at81DuXSG1QV4dxmqjjMdfDTsCU5T4JH01vI5DU,4810
|
|
446
446
|
sky/templates/paperspace-ray.yml.j2,sha256=PcB21RMfxO5Gne1qT7J_JjnZENLVHrAwVegjIEb_F6E,4283
|
|
447
447
|
sky/templates/runpod-ray.yml.j2,sha256=H0IICV3Y5PGq40a3AMqa4PIbSKF0eGtZvY-zFEUeu1A,4921
|
|
@@ -456,9 +456,9 @@ sky/usage/constants.py,sha256=mFrTgrFIfFf4kpcl-M1VDU7_moD5_mJazUJTUDrybms,1102
|
|
|
456
456
|
sky/usage/usage_lib.py,sha256=j1onpclq-azWPt89KZhzldpvsicUAV1guLeBdCS03fI,21499
|
|
457
457
|
sky/users/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
458
458
|
sky/users/model.conf,sha256=nPAaMai2fc-nlnEDTfW5Lyw6vgCcOS32BSms4aFOHoY,259
|
|
459
|
-
sky/users/permission.py,sha256=
|
|
459
|
+
sky/users/permission.py,sha256=ay73N880BZWFZUK7snDOtSZdiXuEszaZO6Ni5vyj4cM,15784
|
|
460
460
|
sky/users/rbac.py,sha256=3ZWukXo85u6zWbPmHcPsF9EtZ3cd_51PLZYf2h-7uAM,3636
|
|
461
|
-
sky/users/server.py,sha256=
|
|
461
|
+
sky/users/server.py,sha256=HncIz1oltx-khqhwqLINmQs9MENRjeR2CCTnvs4TniM,28229
|
|
462
462
|
sky/users/token_service.py,sha256=78Xgm6rkd5M6IMMUekAp2YNLms4teNNvVDPfHh_5jts,7804
|
|
463
463
|
sky/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
464
464
|
sky/utils/accelerator_registry.py,sha256=I2BLe74i7qBTE4X73N-cVbOJNX1Pcextm9OIRQFfnl0,4803
|
|
@@ -493,7 +493,7 @@ sky/utils/resource_checker.py,sha256=WMHCwWHQOtk0l9FiehQi42tfNgA2AyvaCbbfENSP9BQ
|
|
|
493
493
|
sky/utils/resources_utils.py,sha256=3wnzmSIldFS5NmHTx6r2viS8zaP1q20noQolgQqucUU,16722
|
|
494
494
|
sky/utils/rich_console_utils.py,sha256=wPvAlshaFHuMZSjiDnaK3OSBppZLBjAn-lj7AvxNBQk,553
|
|
495
495
|
sky/utils/rich_utils.py,sha256=Q-N5bZGfvqciU5cuQacInoNpldZcaMKCdBX2368KIDA,19971
|
|
496
|
-
sky/utils/schemas.py,sha256=
|
|
496
|
+
sky/utils/schemas.py,sha256=jlfEyAkWBT37FDdvpqr8oAwgc2rBu2YbCavKDPPT8lI,57589
|
|
497
497
|
sky/utils/serialize_utils.py,sha256=nn2x-8cTZeiVr5cgaBpLOGGpSFtms62QAJFyxs_bodI,630
|
|
498
498
|
sky/utils/status_lib.py,sha256=QGkd6COD1GX1h30Mk9RMUdyeUOMJs5971GkxTcFgdsU,1705
|
|
499
499
|
sky/utils/subprocess_utils.py,sha256=tOpFY_1ml7JkVGAN1o473lcKPklGR95qBCW61eu8kEo,15773
|
|
@@ -508,7 +508,7 @@ sky/utils/aws/get_default_security_group.py,sha256=LPzz5133ZUMbzDD3iqqACL9Pdlgqi
|
|
|
508
508
|
sky/utils/cli_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
509
509
|
sky/utils/cli_utils/status_utils.py,sha256=KYjicOiPs9n8C9VsA-JiDbhh5onHj2HwtLmIaicGjbc,16122
|
|
510
510
|
sky/utils/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
511
|
-
sky/utils/db/db_utils.py,sha256=
|
|
511
|
+
sky/utils/db/db_utils.py,sha256=MEXHt7d_jdF-NysBB_LiK9mSbbpQ6Zrlz-bn7gh_Wwo,15129
|
|
512
512
|
sky/utils/db/migration_utils.py,sha256=UlcCJ6jo0GHOSjMO_hf2cx2XSl18HldNKSBY-g9Ern8,4438
|
|
513
513
|
sky/utils/kubernetes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
514
514
|
sky/utils/kubernetes/cleanup-tunnel.sh,sha256=rXMXuMfyB9bzKjLvXdMCjimDVvdjGPMXuqeo2ZNx9OA,2244
|
|
@@ -533,15 +533,15 @@ sky/volumes/volume.py,sha256=PQnAw6e0F60ri_xomMJFTHoJMFaQbLdkr2LOY0xjLV8,7392
|
|
|
533
533
|
sky/volumes/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
534
534
|
sky/volumes/client/sdk.py,sha256=41Wj3joZwvBSoUJ6ewmuL6TEWW4gokRKRlp7o_j9NZ0,3309
|
|
535
535
|
sky/volumes/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
536
|
-
sky/volumes/server/core.py,sha256=
|
|
536
|
+
sky/volumes/server/core.py,sha256=CrKQdyrZwY6PpR-3iFYVn1wzhmIgpPYo5qv6gTmJtTc,9834
|
|
537
537
|
sky/volumes/server/server.py,sha256=Z0fraISeOZGcBfzEIXHzVX9gXJg_sKCycdLC8UxKk3E,3540
|
|
538
538
|
sky/workspaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
539
539
|
sky/workspaces/core.py,sha256=AjwbbRwk0glzCnqICJk4sQzMoUcawixbXoQWKLB3-aQ,25372
|
|
540
540
|
sky/workspaces/server.py,sha256=Box45DS54xXGHy7I3tGKGy-JP0a8G_z6IhfvGlEXtsA,3439
|
|
541
541
|
sky/workspaces/utils.py,sha256=IIAiFoS6sdb2t0X5YoX9AietpTanZUQNTK8cePun-sY,2143
|
|
542
|
-
skypilot_nightly-1.0.0.
|
|
543
|
-
skypilot_nightly-1.0.0.
|
|
544
|
-
skypilot_nightly-1.0.0.
|
|
545
|
-
skypilot_nightly-1.0.0.
|
|
546
|
-
skypilot_nightly-1.0.0.
|
|
547
|
-
skypilot_nightly-1.0.0.
|
|
542
|
+
skypilot_nightly-1.0.0.dev20250906.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
|
|
543
|
+
skypilot_nightly-1.0.0.dev20250906.dist-info/METADATA,sha256=hdi4k2eFWQaIGsmxGGJECeBd_m_BX6udePOLzelKCuQ,19793
|
|
544
|
+
skypilot_nightly-1.0.0.dev20250906.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
545
|
+
skypilot_nightly-1.0.0.dev20250906.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
|
|
546
|
+
skypilot_nightly-1.0.0.dev20250906.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
|
|
547
|
+
skypilot_nightly-1.0.0.dev20250906.dist-info/RECORD,,
|