skypilot-nightly 1.0.0.dev20250725__py3-none-any.whl → 1.0.0.dev20250726__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 +1 -1
- sky/backends/cloud_vm_ray_backend.py +1 -1
- sky/clouds/aws.py +1 -1
- sky/clouds/azure.py +1 -1
- sky/clouds/cloud.py +1 -1
- sky/clouds/cudo.py +1 -1
- sky/clouds/do.py +1 -1
- sky/clouds/fluidstack.py +1 -1
- sky/clouds/gcp.py +1 -1
- sky/clouds/hyperbolic.py +1 -1
- sky/clouds/ibm.py +1 -1
- sky/clouds/kubernetes.py +11 -9
- sky/clouds/lambda_cloud.py +1 -1
- sky/clouds/nebius.py +1 -1
- sky/clouds/oci.py +1 -1
- sky/clouds/paperspace.py +1 -1
- sky/clouds/runpod.py +1 -1
- sky/clouds/scp.py +1 -1
- sky/clouds/vast.py +1 -1
- sky/clouds/vsphere.py +1 -1
- sky/dashboard/out/404.html +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.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/jobs/utils.py +5 -0
- sky/provision/kubernetes/utils.py +9 -0
- sky/provision/kubernetes/volume.py +1 -1
- sky/resources.py +1 -1
- sky/skylet/job_lib.py +4 -0
- sky/skylet/log_lib.py +5 -3
- sky/task.py +1 -1
- sky/templates/kubernetes-ray.yml.j2 +6 -0
- sky/utils/schemas.py +1 -1
- sky/utils/volume.py +78 -0
- sky/volumes/__init__.py +13 -0
- sky/volumes/client/sdk.py +19 -2
- sky/volumes/server/server.py +1 -1
- sky/volumes/utils.py +1 -1
- sky/volumes/volume.py +0 -73
- {skypilot_nightly-1.0.0.dev20250725.dist-info → skypilot_nightly-1.0.0.dev20250726.dist-info}/METADATA +13 -2
- {skypilot_nightly-1.0.0.dev20250725.dist-info → skypilot_nightly-1.0.0.dev20250726.dist-info}/RECORD +59 -58
- /sky/dashboard/out/_next/static/{SiA7c33x_DqO42M373Okd → lVqpIJvikPZAX3dgsm6_q}/_buildManifest.js +0 -0
- /sky/dashboard/out/_next/static/{SiA7c33x_DqO42M373Okd → lVqpIJvikPZAX3dgsm6_q}/_ssgManifest.js +0 -0
- {skypilot_nightly-1.0.0.dev20250725.dist-info → skypilot_nightly-1.0.0.dev20250726.dist-info}/WHEEL +0 -0
- {skypilot_nightly-1.0.0.dev20250725.dist-info → skypilot_nightly-1.0.0.dev20250726.dist-info}/entry_points.txt +0 -0
- {skypilot_nightly-1.0.0.dev20250725.dist-info → skypilot_nightly-1.0.0.dev20250726.dist-info}/licenses/LICENSE +0 -0
- {skypilot_nightly-1.0.0.dev20250725.dist-info → skypilot_nightly-1.0.0.dev20250726.dist-info}/top_level.txt +0 -0
sky/skylet/log_lib.py
CHANGED
|
@@ -544,9 +544,11 @@ def tail_logs(job_id: Optional[int],
|
|
|
544
544
|
if start_streaming:
|
|
545
545
|
print(line, end='', flush=True)
|
|
546
546
|
status_str = status.value if status is not None else 'None'
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
547
|
+
# Only show "Job finished" for actually terminal states
|
|
548
|
+
if status is not None and status.is_terminal():
|
|
549
|
+
print(ux_utils.finishing_message(
|
|
550
|
+
f'Job finished (status: {status_str}).'),
|
|
551
|
+
flush=True)
|
|
550
552
|
except FileNotFoundError:
|
|
551
553
|
print(f'{colorama.Fore.RED}ERROR: Logs for job {job_id} (status:'
|
|
552
554
|
f' {status.value}) does not exist.{colorama.Style.RESET_ALL}')
|
sky/task.py
CHANGED
|
@@ -24,7 +24,7 @@ from sky.skylet import constants
|
|
|
24
24
|
from sky.utils import common_utils
|
|
25
25
|
from sky.utils import schemas
|
|
26
26
|
from sky.utils import ux_utils
|
|
27
|
-
from sky.
|
|
27
|
+
from sky.utils import volume as volume_lib
|
|
28
28
|
|
|
29
29
|
if typing.TYPE_CHECKING:
|
|
30
30
|
import yaml
|
|
@@ -1008,12 +1008,18 @@ available_node_types:
|
|
|
1008
1008
|
# https://cloud.google.com/kubernetes-engine/docs/concepts/tpus#how_tpus_work
|
|
1009
1009
|
{{k8s_resource_key}}: {{accelerator_count}}
|
|
1010
1010
|
{% endif %}
|
|
1011
|
+
{% if k8s_network_type == 'coreweave' %}
|
|
1012
|
+
rdma/ib: 1
|
|
1013
|
+
{% endif %}
|
|
1011
1014
|
{% if k8s_resource_key is not none %}
|
|
1012
1015
|
limits:
|
|
1013
1016
|
# Limits need to be defined for GPU/TPU requests
|
|
1014
1017
|
{% if k8s_resource_key is not none %}
|
|
1015
1018
|
{{k8s_resource_key}}: {{accelerator_count}}
|
|
1016
1019
|
{% endif %}
|
|
1020
|
+
{% if k8s_network_type == 'coreweave' %}
|
|
1021
|
+
rdma/ib: 1
|
|
1022
|
+
{% endif %}
|
|
1017
1023
|
{% endif %}
|
|
1018
1024
|
{% if k8s_ipc_lock_capability %}
|
|
1019
1025
|
securityContext:
|
sky/utils/schemas.py
CHANGED
|
@@ -421,7 +421,7 @@ def get_resources_schema():
|
|
|
421
421
|
|
|
422
422
|
def get_volume_schema():
|
|
423
423
|
# pylint: disable=import-outside-toplevel
|
|
424
|
-
from sky.
|
|
424
|
+
from sky.utils import volume
|
|
425
425
|
|
|
426
426
|
return {
|
|
427
427
|
'$schema': 'https://json-schema.org/draft/2020-12/schema',
|
sky/utils/volume.py
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
"""Volume utilities."""
|
|
2
|
+
import enum
|
|
3
|
+
import time
|
|
4
|
+
from typing import Any, Dict
|
|
5
|
+
|
|
6
|
+
from sky import exceptions
|
|
7
|
+
from sky import global_user_state
|
|
8
|
+
from sky import models
|
|
9
|
+
from sky.utils import common_utils
|
|
10
|
+
from sky.utils import schemas
|
|
11
|
+
from sky.utils import status_lib
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class VolumeAccessMode(enum.Enum):
|
|
15
|
+
"""Volume access mode."""
|
|
16
|
+
READ_WRITE_ONCE = 'ReadWriteOnce'
|
|
17
|
+
READ_WRITE_ONCE_POD = 'ReadWriteOncePod'
|
|
18
|
+
READ_WRITE_MANY = 'ReadWriteMany'
|
|
19
|
+
READ_ONLY_MANY = 'ReadOnlyMany'
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class VolumeType(enum.Enum):
|
|
23
|
+
"""Volume type."""
|
|
24
|
+
PVC = 'k8s-pvc'
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class VolumeMount:
|
|
28
|
+
"""Volume mount specification."""
|
|
29
|
+
|
|
30
|
+
def __init__(self, path: str, volume_name: str,
|
|
31
|
+
volume_config: models.VolumeConfig):
|
|
32
|
+
self.path: str = path
|
|
33
|
+
self.volume_name: str = volume_name
|
|
34
|
+
self.volume_config: models.VolumeConfig = volume_config
|
|
35
|
+
|
|
36
|
+
def pre_mount(self) -> None:
|
|
37
|
+
"""Update the volume status before actual mounting."""
|
|
38
|
+
# TODO(aylei): for ReadWriteOnce volume, we also need to queue the
|
|
39
|
+
# mount request if the target volume is already mounted to another
|
|
40
|
+
# cluster. For now, we only support ReadWriteMany volume.
|
|
41
|
+
global_user_state.update_volume(self.volume_name,
|
|
42
|
+
last_attached_at=int(time.time()),
|
|
43
|
+
status=status_lib.VolumeStatus.IN_USE)
|
|
44
|
+
|
|
45
|
+
@classmethod
|
|
46
|
+
def resolve(cls, path: str, volume_name: str) -> 'VolumeMount':
|
|
47
|
+
"""Resolve the volume mount by populating metadata of volume."""
|
|
48
|
+
record = global_user_state.get_volume_by_name(volume_name)
|
|
49
|
+
if record is None:
|
|
50
|
+
raise exceptions.VolumeNotFoundError(
|
|
51
|
+
f'Volume {volume_name} not found.')
|
|
52
|
+
assert 'handle' in record, 'Volume handle is None.'
|
|
53
|
+
volume_config: models.VolumeConfig = record['handle']
|
|
54
|
+
return cls(path, volume_name, volume_config)
|
|
55
|
+
|
|
56
|
+
@classmethod
|
|
57
|
+
def from_yaml_config(cls, config: Dict[str, Any]) -> 'VolumeMount':
|
|
58
|
+
common_utils.validate_schema(config, schemas.get_volume_mount_schema(),
|
|
59
|
+
'Invalid volume mount config: ')
|
|
60
|
+
|
|
61
|
+
path = config.pop('path', None)
|
|
62
|
+
volume_name = config.pop('volume_name', None)
|
|
63
|
+
volume_config: models.VolumeConfig = models.VolumeConfig.model_validate(
|
|
64
|
+
config.pop('volume_config', None))
|
|
65
|
+
return cls(path, volume_name, volume_config)
|
|
66
|
+
|
|
67
|
+
def to_yaml_config(self) -> Dict[str, Any]:
|
|
68
|
+
return {
|
|
69
|
+
'path': self.path,
|
|
70
|
+
'volume_name': self.volume_name,
|
|
71
|
+
'volume_config': self.volume_config.model_dump(),
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
def __repr__(self):
|
|
75
|
+
return (f'VolumeMount('
|
|
76
|
+
f'\n\tpath={self.path},'
|
|
77
|
+
f'\n\tvolume_name={self.volume_name},'
|
|
78
|
+
f'\n\tvolume_config={self.volume_config})')
|
sky/volumes/__init__.py
CHANGED
sky/volumes/client/sdk.py
CHANGED
|
@@ -26,6 +26,12 @@ logger = sky_logging.init_logger(__name__)
|
|
|
26
26
|
@annotations.client_api
|
|
27
27
|
def apply(volume: volume_lib.Volume) -> server_common.RequestId:
|
|
28
28
|
"""Creates or registers a volume.
|
|
29
|
+
|
|
30
|
+
Args:
|
|
31
|
+
volume: The volume to apply.
|
|
32
|
+
|
|
33
|
+
Returns:
|
|
34
|
+
The request ID of the apply request.
|
|
29
35
|
"""
|
|
30
36
|
body = payloads.VolumeApplyBody(name=volume.name,
|
|
31
37
|
volume_type=volume.type,
|
|
@@ -45,7 +51,11 @@ def apply(volume: volume_lib.Volume) -> server_common.RequestId:
|
|
|
45
51
|
@server_common.check_server_healthy_or_start
|
|
46
52
|
@annotations.client_api
|
|
47
53
|
def ls() -> server_common.RequestId:
|
|
48
|
-
"""Lists all volumes.
|
|
54
|
+
"""Lists all volumes.
|
|
55
|
+
|
|
56
|
+
Returns:
|
|
57
|
+
The request ID of the list request.
|
|
58
|
+
"""
|
|
49
59
|
response = requests.get(f'{server_common.get_server_url()}/volumes',
|
|
50
60
|
cookies=server_common.get_api_cookie_jar())
|
|
51
61
|
return server_common.get_request_id(response)
|
|
@@ -56,7 +66,14 @@ def ls() -> server_common.RequestId:
|
|
|
56
66
|
@server_common.check_server_healthy_or_start
|
|
57
67
|
@annotations.client_api
|
|
58
68
|
def delete(names: List[str]) -> server_common.RequestId:
|
|
59
|
-
"""Deletes
|
|
69
|
+
"""Deletes volumes.
|
|
70
|
+
|
|
71
|
+
Args:
|
|
72
|
+
names: List of volume names to delete.
|
|
73
|
+
|
|
74
|
+
Returns:
|
|
75
|
+
The request ID of the delete request.
|
|
76
|
+
"""
|
|
60
77
|
body = payloads.VolumeDeleteBody(names=names)
|
|
61
78
|
response = requests.post(f'{server_common.get_server_url()}/volumes/delete',
|
|
62
79
|
json=json.loads(body.model_dump_json()),
|
sky/volumes/server/server.py
CHANGED
|
@@ -8,7 +8,7 @@ from sky import sky_logging
|
|
|
8
8
|
from sky.server.requests import executor
|
|
9
9
|
from sky.server.requests import payloads
|
|
10
10
|
from sky.server.requests import requests as requests_lib
|
|
11
|
-
from sky.
|
|
11
|
+
from sky.utils import volume
|
|
12
12
|
from sky.volumes.server import core
|
|
13
13
|
|
|
14
14
|
logger = sky_logging.init_logger(__name__)
|
sky/volumes/utils.py
CHANGED
sky/volumes/volume.py
CHANGED
|
@@ -1,83 +1,10 @@
|
|
|
1
1
|
"""Volume types and access modes."""
|
|
2
|
-
import enum
|
|
3
|
-
import time
|
|
4
2
|
from typing import Any, Dict, Optional
|
|
5
3
|
|
|
6
|
-
from sky import exceptions
|
|
7
|
-
from sky import global_user_state
|
|
8
|
-
from sky import models
|
|
9
4
|
from sky.utils import common_utils
|
|
10
5
|
from sky.utils import infra_utils
|
|
11
6
|
from sky.utils import resources_utils
|
|
12
7
|
from sky.utils import schemas
|
|
13
|
-
from sky.utils import status_lib
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
class VolumeType(enum.Enum):
|
|
17
|
-
"""Volume type."""
|
|
18
|
-
PVC = 'k8s-pvc'
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
class VolumeAccessMode(enum.Enum):
|
|
22
|
-
"""Volume access mode."""
|
|
23
|
-
READ_WRITE_ONCE = 'ReadWriteOnce'
|
|
24
|
-
READ_WRITE_ONCE_POD = 'ReadWriteOncePod'
|
|
25
|
-
READ_WRITE_MANY = 'ReadWriteMany'
|
|
26
|
-
READ_ONLY_MANY = 'ReadOnlyMany'
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
class VolumeMount:
|
|
30
|
-
"""Volume mount specification."""
|
|
31
|
-
|
|
32
|
-
def __init__(self, path: str, volume_name: str,
|
|
33
|
-
volume_config: models.VolumeConfig):
|
|
34
|
-
self.path: str = path
|
|
35
|
-
self.volume_name: str = volume_name
|
|
36
|
-
self.volume_config: models.VolumeConfig = volume_config
|
|
37
|
-
|
|
38
|
-
def pre_mount(self) -> None:
|
|
39
|
-
"""Update the volume status before actual mounting."""
|
|
40
|
-
# TODO(aylei): for ReadWriteOnce volume, we also need to queue the
|
|
41
|
-
# mount request if the target volume is already mounted to another
|
|
42
|
-
# cluster. For now, we only support ReadWriteMany volume.
|
|
43
|
-
global_user_state.update_volume(self.volume_name,
|
|
44
|
-
last_attached_at=int(time.time()),
|
|
45
|
-
status=status_lib.VolumeStatus.IN_USE)
|
|
46
|
-
|
|
47
|
-
@classmethod
|
|
48
|
-
def resolve(cls, path: str, volume_name: str) -> 'VolumeMount':
|
|
49
|
-
"""Resolve the volume mount by populating metadata of volume."""
|
|
50
|
-
record = global_user_state.get_volume_by_name(volume_name)
|
|
51
|
-
if record is None:
|
|
52
|
-
raise exceptions.VolumeNotFoundError(
|
|
53
|
-
f'Volume {volume_name} not found.')
|
|
54
|
-
assert 'handle' in record, 'Volume handle is None.'
|
|
55
|
-
volume_config: models.VolumeConfig = record['handle']
|
|
56
|
-
return cls(path, volume_name, volume_config)
|
|
57
|
-
|
|
58
|
-
@classmethod
|
|
59
|
-
def from_yaml_config(cls, config: Dict[str, Any]) -> 'VolumeMount':
|
|
60
|
-
common_utils.validate_schema(config, schemas.get_volume_mount_schema(),
|
|
61
|
-
'Invalid volume mount config: ')
|
|
62
|
-
|
|
63
|
-
path = config.pop('path', None)
|
|
64
|
-
volume_name = config.pop('volume_name', None)
|
|
65
|
-
volume_config: models.VolumeConfig = models.VolumeConfig.model_validate(
|
|
66
|
-
config.pop('volume_config', None))
|
|
67
|
-
return cls(path, volume_name, volume_config)
|
|
68
|
-
|
|
69
|
-
def to_yaml_config(self) -> Dict[str, Any]:
|
|
70
|
-
return {
|
|
71
|
-
'path': self.path,
|
|
72
|
-
'volume_name': self.volume_name,
|
|
73
|
-
'volume_config': self.volume_config.model_dump(),
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
def __repr__(self):
|
|
77
|
-
return (f'VolumeMount('
|
|
78
|
-
f'\n\tpath={self.path},'
|
|
79
|
-
f'\n\tvolume_name={self.volume_name},'
|
|
80
|
-
f'\n\tvolume_config={self.volume_config})')
|
|
81
8
|
|
|
82
9
|
|
|
83
10
|
class Volume:
|
|
@@ -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.dev20250726
|
|
4
4
|
Summary: SkyPilot: Run AI on Any Infra — Unified, Faster, Cheaper.
|
|
5
5
|
Author: SkyPilot Team
|
|
6
6
|
License: Apache 2.0
|
|
@@ -224,8 +224,20 @@ Dynamic: summary
|
|
|
224
224
|
Run AI on Any Infra — Unified, Faster, Cheaper
|
|
225
225
|
</h3>
|
|
226
226
|
|
|
227
|
+
<div align="center">
|
|
228
|
+
|
|
229
|
+
#### [🌟 **SkyPilot Demo** 🌟: Click to see a 1-minute tour](https://demo.skypilot.co/dashboard/)
|
|
230
|
+
|
|
231
|
+
</div>
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
227
235
|
----
|
|
236
|
+
|
|
228
237
|
:fire: *News* :fire:
|
|
238
|
+
- [Jul 2025] 🎉 SkyPilot v0.10.0 released! [**blog post**](https://blog.skypilot.co/announcing-skypilot-0.10.0/), [**release notes**](https://github.com/skypilot-org/skypilot/releases/tag/v0.10.0)
|
|
239
|
+
- [Jul 2025] Finetune **Llama4** on any distributed cluster/cloud: [**example**](./llm/llama-4-finetuning/)
|
|
240
|
+
- [Jul 2025] Two-part blog series, `The Evolution of AI Job Orchestration`: (1) [Running AI jobs on GPU Neoclouds](https://blog.skypilot.co/ai-job-orchestration-pt1-gpu-neoclouds/), (2) [The AI-Native Control Plane & Orchestration that Finally Works for ML](https://blog.skypilot.co/ai-job-orchestration-pt2-ai-control-plane/)
|
|
229
241
|
- [Apr 2025] Spin up **Qwen3** on your cluster/cloud: [**example**](./llm/qwen/)
|
|
230
242
|
- [Mar 2025] Run and serve **Google Gemma 3** using SkyPilot [**example**](./llm/gemma3/)
|
|
231
243
|
- [Feb 2025] Prepare and serve **Retrieval Augmented Generation (RAG) with DeepSeek-R1**: [**blog post**](https://blog.skypilot.co/deepseek-rag), [**example**](./llm/rag/)
|
|
@@ -233,7 +245,6 @@ Dynamic: summary
|
|
|
233
245
|
- [Feb 2025] Prepare and serve large-scale image search with **vector databases**: [**blog post**](https://blog.skypilot.co/large-scale-vector-database/), [**example**](./examples/vector_database/)
|
|
234
246
|
- [Jan 2025] Launch and serve distilled models from **[DeepSeek-R1](https://github.com/deepseek-ai/DeepSeek-R1)** and **[Janus](https://github.com/deepseek-ai/DeepSeek-Janus)** on Kubernetes or any cloud: [**R1 example**](./llm/deepseek-r1-distilled/) and [**Janus example**](./llm/deepseek-janus/)
|
|
235
247
|
- [Oct 2024] :tada: **SkyPilot crossed 1M+ downloads** :tada:: Thank you to our community! [**Twitter/X**](https://x.com/skypilot_org/status/1844770841718067638)
|
|
236
|
-
- [Sep 2024] Point, launch and serve **Llama 3.2** on Kubernetes or any cloud: [**example**](./llm/llama-3_2/)
|
|
237
248
|
|
|
238
249
|
|
|
239
250
|
**LLM Finetuning Cookbooks**: Finetuning Llama 2 / Llama 3.1 in your own cloud environment, privately: Llama 2 [**example**](./llm/vicuna-llama-2/) and [**blog**](https://blog.skypilot.co/finetuning-llama2-operational-guide/); Llama 3.1 [**example**](./llm/llama-3_1-finetuning/) and [**blog**](https://blog.skypilot.co/finetune-llama-3_1-on-your-infra/)
|
{skypilot_nightly-1.0.0.dev20250725.dist-info → skypilot_nightly-1.0.0.dev20250726.dist-info}/RECORD
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
sky/__init__.py,sha256=
|
|
1
|
+
sky/__init__.py,sha256=2_b1_zmWfNPg0DA9xG4tmYmVWF0gDTb_LPw1Rl1AWEY,6535
|
|
2
2
|
sky/admin_policy.py,sha256=BeSowGnWfDj58ALiNf3cc2N4gMQWzjO6aXnX7vaqYhk,9782
|
|
3
3
|
sky/authentication.py,sha256=V7zGSV7bqcAKC_EGOOS0KhJ01ZFLnme0WnjLFO7zavs,25603
|
|
4
4
|
sky/check.py,sha256=R0pFsTq2v-wr3NFePlX9DmDhsbvWEoFJAXsys3pUmT4,30338
|
|
@@ -11,10 +11,10 @@ sky/execution.py,sha256=sZf0306FCKAo1FS7Vg2yCADSr5XHsODYwESHhwdVTjo,33439
|
|
|
11
11
|
sky/global_user_state.py,sha256=PpStfGwx02mwlPdwR55auB1Y-GfYKxun90YpzzQdH-c,67579
|
|
12
12
|
sky/models.py,sha256=Eor-cT4D71QTimogcnJ5ey1G1PXK-OXN-snEtE8Uu_g,3152
|
|
13
13
|
sky/optimizer.py,sha256=rcH6CVix1PJWWSwe1XWItfsmG8igwbKtRE5QVWRlpR4,63804
|
|
14
|
-
sky/resources.py,sha256=
|
|
14
|
+
sky/resources.py,sha256=HbnYC53zfQ7aL1yAoXpywm-bKV_Aa7iNknCE_yR_JwY,105654
|
|
15
15
|
sky/sky_logging.py,sha256=cMurxhFExKEFX1frcMR71Ti_s9Obg9WY30veVxsZB6o,7285
|
|
16
16
|
sky/skypilot_config.py,sha256=j1-dxYEDbQ6-ibhYXKqG8nP1mK9CXKDmQDtbwJcE-MA,36535
|
|
17
|
-
sky/task.py,sha256=
|
|
17
|
+
sky/task.py,sha256=esQX8gYa4ScjXia1y_WzVT8U3xU6GVi9kYqaldkZBa8,72272
|
|
18
18
|
sky/adaptors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
19
|
sky/adaptors/aws.py,sha256=4caUTO5nxZQyDVPyQdoPljaF-Lz_Fa6NEnu3FfmLZd4,8633
|
|
20
20
|
sky/adaptors/azure.py,sha256=7l5jobSTsTUcTo3ptrgOpRgngHY92U64eQBPxvDe1HA,21986
|
|
@@ -34,8 +34,8 @@ sky/adaptors/vast.py,sha256=tpvmHi7IkQNzbbHVkeo04kUSajoEpSzXr2XgeO_I1LU,695
|
|
|
34
34
|
sky/adaptors/vsphere.py,sha256=zJP9SeObEoLrpgHW2VHvZE48EhgVf8GfAEIwBeaDMfM,2129
|
|
35
35
|
sky/backends/__init__.py,sha256=tpa9gAygQopsiBUUuy3wVmr4E05FoPTFHIWqEo4i-u0,627
|
|
36
36
|
sky/backends/backend.py,sha256=6ltCouZhaXJqv2Zh9nP_YCdHf10_oIRNzAA-XDiMmI8,7969
|
|
37
|
-
sky/backends/backend_utils.py,sha256=
|
|
38
|
-
sky/backends/cloud_vm_ray_backend.py,sha256=
|
|
37
|
+
sky/backends/backend_utils.py,sha256=bWcPa7jeSrLsH2p41onaOEHPmP9B-iuduIDf9v6gxSw,147146
|
|
38
|
+
sky/backends/cloud_vm_ray_backend.py,sha256=akHVi9HTY3ypr8YHLllyj9JJ7z3-JK9k91Pbr-vjg3c,264075
|
|
39
39
|
sky/backends/docker_utils.py,sha256=_EhM6NStZDAwcegppQqExaB5iuSn1qL4xFFUqXAz2Uk,8392
|
|
40
40
|
sky/backends/local_docker_backend.py,sha256=r84uhXCk7NK9hGW840KPKnrADd7mCerMwncxOzckHg4,17126
|
|
41
41
|
sky/backends/wheel_utils.py,sha256=IUruJijm5854UGDdSayHbHzjjWRM46bATK1nSnK44xY,11071
|
|
@@ -86,44 +86,42 @@ sky/client/cli/deprecation_utils.py,sha256=H_d5UyF2CekEoThduAzt5cihBO8hwKYMu0-Wq
|
|
|
86
86
|
sky/client/cli/flags.py,sha256=6IdS_G2lB1C6r8kJMzLVREY_qV50VHiSfWlmppVrWuc,11623
|
|
87
87
|
sky/client/cli/git.py,sha256=dqSaJI1Ndv6RfKJa6HT6ednXr0j_pVlwSdh3XiQzB60,22018
|
|
88
88
|
sky/clouds/__init__.py,sha256=tC9_Vi6GvVceWUi6uZvm7vXzBa0uH3CjRQ-QCYqdJMw,1624
|
|
89
|
-
sky/clouds/aws.py,sha256=
|
|
90
|
-
sky/clouds/azure.py,sha256=
|
|
91
|
-
sky/clouds/cloud.py,sha256=
|
|
92
|
-
sky/clouds/cudo.py,sha256=
|
|
93
|
-
sky/clouds/do.py,sha256=
|
|
94
|
-
sky/clouds/fluidstack.py,sha256=
|
|
95
|
-
sky/clouds/gcp.py,sha256=
|
|
96
|
-
sky/clouds/hyperbolic.py,sha256=
|
|
97
|
-
sky/clouds/ibm.py,sha256=
|
|
98
|
-
sky/clouds/kubernetes.py,sha256=
|
|
99
|
-
sky/clouds/lambda_cloud.py,sha256=
|
|
100
|
-
sky/clouds/nebius.py,sha256=
|
|
101
|
-
sky/clouds/oci.py,sha256=
|
|
102
|
-
sky/clouds/paperspace.py,sha256
|
|
103
|
-
sky/clouds/runpod.py,sha256=
|
|
104
|
-
sky/clouds/scp.py,sha256=
|
|
89
|
+
sky/clouds/aws.py,sha256=Kto8IFJrJGy3i1YJOyMju-QmCubaONIcsioZsBA86R8,55815
|
|
90
|
+
sky/clouds/azure.py,sha256=3wMJQFNye80t8zw2o2yl2F9glmXQjR8r2F4ExU396-s,33274
|
|
91
|
+
sky/clouds/cloud.py,sha256=Z3FIWFB25YTShiacoqYB2Ow2foLoLSM5nf1I95zYYVc,39362
|
|
92
|
+
sky/clouds/cudo.py,sha256=UE3Czf8qIFubzeN9QgpRAxwPnyCWyKjPMe34plqIRj8,14292
|
|
93
|
+
sky/clouds/do.py,sha256=rTQEkIfRVIVEF3c2yVcpVc1vRUMSYs1038SxeDwp7so,12595
|
|
94
|
+
sky/clouds/fluidstack.py,sha256=AbVYW2iwVVebIn0dWdSSsdItILHRLG3VVU3N2-n1I9c,13601
|
|
95
|
+
sky/clouds/gcp.py,sha256=LteGFf8kxmVoWyzM1YTNDh3xOrsuVJFB2-E7KNJ_Yz8,68861
|
|
96
|
+
sky/clouds/hyperbolic.py,sha256=bmV4NFpUPgzR0ownavHHVqyw26EtOgQ_ZB6SlxlgmJw,11999
|
|
97
|
+
sky/clouds/ibm.py,sha256=qMbOkTMJzPn2HDH9cie9zERvukRZbZoueLIaufCECAw,22860
|
|
98
|
+
sky/clouds/kubernetes.py,sha256=DV3v6rlE0S4uKbzCGrWlDZbZyswm38whk32p9zQ07Uk,54489
|
|
99
|
+
sky/clouds/lambda_cloud.py,sha256=aRW4GwLjaFFR6_bPbBr9o8z-SKHtuP18BAVwoPuDtBE,13553
|
|
100
|
+
sky/clouds/nebius.py,sha256=4b7UhtKR8uS-imBJYMMY7p0RX8H1W121MkLRJ07RP-I,21361
|
|
101
|
+
sky/clouds/oci.py,sha256=U5wtBx78RqCgCAqjlTTgSnRqWWa7D7LIvyoo8097Fno,28571
|
|
102
|
+
sky/clouds/paperspace.py,sha256=-wvFUsUGaOlFYfe3jCdEB3_mwDmK4R66hJy8nX9822o,12010
|
|
103
|
+
sky/clouds/runpod.py,sha256=6ziQZj1YS6QBT4ilYlg8Dg0w_AT1yL9hnvvl4mMssHg,13386
|
|
104
|
+
sky/clouds/scp.py,sha256=zXHxLKfe8B90eHNbawNiXxsGsoBDXW5InvM2E7CaRSw,16116
|
|
105
105
|
sky/clouds/ssh.py,sha256=PPs1FzhJ4DV-KsaTfvLii7pd80nkF-LXAlY8bjMN8RQ,9970
|
|
106
|
-
sky/clouds/vast.py,sha256=
|
|
107
|
-
sky/clouds/vsphere.py,sha256=
|
|
106
|
+
sky/clouds/vast.py,sha256=Lcn_fazY5q_6p2HvPhtBhiifTErVuSvbVXgJjRWGu2k,12399
|
|
107
|
+
sky/clouds/vsphere.py,sha256=SonakUIwte8UdtbwScRR6E8u3WdFNwq7YynjaWRwJlA,13358
|
|
108
108
|
sky/clouds/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
109
|
sky/clouds/utils/aws_utils.py,sha256=eT1GUR-OAfKS9CM0ZOARkhAYQ779GEGwPs9OXm6lwt0,2146
|
|
110
110
|
sky/clouds/utils/azure_utils.py,sha256=NToRBnhEyuUvb-nBnsKTxjhOBRkMcrelL8LK4w6s4t8,3555
|
|
111
111
|
sky/clouds/utils/gcp_utils.py,sha256=zpdibyvdROgDGqllcvQuST3pKqj6pzqX-gxCw-DsCfc,9873
|
|
112
112
|
sky/clouds/utils/oci_utils.py,sha256=TFqAqRLggg4Z0bhxrrq8nouSSomZy-ub1frHXEkud2M,7302
|
|
113
113
|
sky/clouds/utils/scp_utils.py,sha256=VGuccVO5uFGr8-yolWSoYrgr11z6cIeDBGcqkBzAyOs,18409
|
|
114
|
-
sky/dashboard/out/404.html,sha256=
|
|
115
|
-
sky/dashboard/out/clusters.html,sha256=
|
|
116
|
-
sky/dashboard/out/config.html,sha256=
|
|
114
|
+
sky/dashboard/out/404.html,sha256=MITjw6ORl4B2Ovkz06zKd6ba2bA1nhp6sidjE5sgEl8,1423
|
|
115
|
+
sky/dashboard/out/clusters.html,sha256=QDDg6f0WocSB55f-k3Uzj3eZ9-vzqlZMPN28u2IvKGQ,1418
|
|
116
|
+
sky/dashboard/out/config.html,sha256=wbNBh2U9zUzn2mswvPTpXkNibjxr5Ps9awy8Q-JC8sA,1414
|
|
117
117
|
sky/dashboard/out/favicon.ico,sha256=XilUZZglAl_1zRsg85QsbQgmQAzGPQjcUIJ-A3AzYn8,93590
|
|
118
|
-
sky/dashboard/out/index.html,sha256=
|
|
119
|
-
sky/dashboard/out/infra.html,sha256=
|
|
120
|
-
sky/dashboard/out/jobs.html,sha256=
|
|
118
|
+
sky/dashboard/out/index.html,sha256=LvKJcGDqPsSeFCgWF-TFNdLpM0DfwZlrPahIs1yRpTo,1407
|
|
119
|
+
sky/dashboard/out/infra.html,sha256=D3Ggak6ome4RwWR_fFLpOghmtblZ0kxu5E8nBniBXC4,1412
|
|
120
|
+
sky/dashboard/out/jobs.html,sha256=9jtXWlT5zn-dHq_tjHc1bju8saQEUsngRWGqI0A8zE4,1410
|
|
121
121
|
sky/dashboard/out/skypilot.svg,sha256=c0iRtlfLlaUm2p0rG9NFmo5FN0Qhf3pq5Xph-AeMPJw,5064
|
|
122
|
-
sky/dashboard/out/users.html,sha256=
|
|
123
|
-
sky/dashboard/out/volumes.html,sha256=
|
|
124
|
-
sky/dashboard/out/workspaces.html,sha256=
|
|
125
|
-
sky/dashboard/out/_next/static/SiA7c33x_DqO42M373Okd/_buildManifest.js,sha256=mmxo6wQVKY20ZhMR66BRt5Wcei8mpj5spy7xJIR2Qy8,2236
|
|
126
|
-
sky/dashboard/out/_next/static/SiA7c33x_DqO42M373Okd/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
|
122
|
+
sky/dashboard/out/users.html,sha256=UlI78pCI5kGby1isnWxFgqHzroWQ9NSJB4O_1y40g60,1412
|
|
123
|
+
sky/dashboard/out/volumes.html,sha256=rb020WkxcYb_eDxCjMUB3p3KaRPclG6fEy7SXboZeQc,1416
|
|
124
|
+
sky/dashboard/out/workspaces.html,sha256=HqewcP20bsRAWG6rRPjiT9ibO0eMK8w67JsyLHq0-OI,1422
|
|
127
125
|
sky/dashboard/out/_next/static/chunks/1043-869d9c78bf5dd3df.js,sha256=bAxynBdZtwL6IUsmByq0m47nF_VnO1lsMN9Xjdrp1GI,18328
|
|
128
126
|
sky/dashboard/out/_next/static/chunks/1141-e49a159c30a6c4a7.js,sha256=KK5G7lgpUnTVxW1tvREGo0rPqKfq8nDl6xx1T21fgCo,17818
|
|
129
127
|
sky/dashboard/out/_next/static/chunks/1272-1ef0bf0237faccdb.js,sha256=VJ6y-Z6Eg2T93hQIRfWAbjAkQ7nQhglmIaVbEpKSILY,38451
|
|
@@ -177,13 +175,15 @@ sky/dashboard/out/_next/static/chunks/pages/jobs/[job]-dc0299ffefebcdbe.js,sha25
|
|
|
177
175
|
sky/dashboard/out/_next/static/chunks/pages/workspace/new-5629d4e551dba1ee.js,sha256=K9tqKHcB2kiSHTAddLaM2oL1PzmqZNTdLDOuNzCaJNM,765
|
|
178
176
|
sky/dashboard/out/_next/static/chunks/pages/workspaces/[name]-6bcd4b20914d76c9.js,sha256=wCk-0BTOhpwUb22meXUGhG7zX-retkF3aR7cuk4qbYQ,1492
|
|
179
177
|
sky/dashboard/out/_next/static/css/b3227360726f12eb.css,sha256=H55rkeVIrdGOUAIPmLZ6C78aEgXb7fEPa9mT9BOuLBI,55358
|
|
180
|
-
sky/dashboard/out/
|
|
181
|
-
sky/dashboard/out/
|
|
182
|
-
sky/dashboard/out/
|
|
183
|
-
sky/dashboard/out/
|
|
178
|
+
sky/dashboard/out/_next/static/lVqpIJvikPZAX3dgsm6_q/_buildManifest.js,sha256=mmxo6wQVKY20ZhMR66BRt5Wcei8mpj5spy7xJIR2Qy8,2236
|
|
179
|
+
sky/dashboard/out/_next/static/lVqpIJvikPZAX3dgsm6_q/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
|
180
|
+
sky/dashboard/out/clusters/[cluster].html,sha256=Gf3g6dC5lWRFcngVDBjuXbkJEXENJJ10_HnLAOxId8Q,2848
|
|
181
|
+
sky/dashboard/out/clusters/[cluster]/[job].html,sha256=hGfSXnZHWbXyUukwTyx-AmCT4g8MkQLkslgqe2iXU6o,2161
|
|
182
|
+
sky/dashboard/out/infra/[context].html,sha256=IeGOmOQRUfxdcMcZymlGfvs_DwKw6Qti46r3T34hcN4,1436
|
|
183
|
+
sky/dashboard/out/jobs/[job].html,sha256=Dha_F-I1V-bpwKmtykc9tGQAEBgA5LXODfCrUdJuqn8,2305
|
|
184
184
|
sky/dashboard/out/videos/cursor-small.mp4,sha256=8tRdp1vjawOrXUar1cfjOc-nkaKmcwCPZx_LO0XlCvQ,203285
|
|
185
|
-
sky/dashboard/out/workspace/new.html,sha256=
|
|
186
|
-
sky/dashboard/out/workspaces/[name].html,sha256
|
|
185
|
+
sky/dashboard/out/workspace/new.html,sha256=eTh24Ghx6krvN4lEtTAMddcJHCXL6B6hp3mJ44tFQBE,1428
|
|
186
|
+
sky/dashboard/out/workspaces/[name].html,sha256=E6ahdKgCrz-Do0Rqyr5ny95rq-y_n0Zvk9OmL9C4Ois,2846
|
|
187
187
|
sky/data/__init__.py,sha256=Nhaf1NURisXpZuwWANa2IuCyppIuc720FRwqSE2oEwY,184
|
|
188
188
|
sky/data/data_transfer.py,sha256=N8b0CQebDuHieXjvEVwlYmK6DbQxUGG1RQJEyTbh3dU,12040
|
|
189
189
|
sky/data/data_utils.py,sha256=CNYPM963qby5ddW0DZNbhiWXkqgB9MHh_jrC5DoBctM,33437
|
|
@@ -196,7 +196,7 @@ sky/jobs/controller.py,sha256=kKnBMQs2XRg1TN80ToVWFwVdwKTuFE4TjQapb3V0iUI,36073
|
|
|
196
196
|
sky/jobs/recovery_strategy.py,sha256=a9A4W-6U3KU-pjkWiFpIdgTHC8W26-jYrmi4vzU9iOg,28818
|
|
197
197
|
sky/jobs/scheduler.py,sha256=b3RAjEzCXyoikh_BcmmGjoZ9ZeXr-tBnXoLFctt95ko,14375
|
|
198
198
|
sky/jobs/state.py,sha256=qo6Tc42ylrLJpVquLdKaD2zTUX8r-e5QknZClMaAlMI,61655
|
|
199
|
-
sky/jobs/utils.py,sha256=
|
|
199
|
+
sky/jobs/utils.py,sha256=B3MtsAn8ODXRC1eqrE5cQ7XuUkDuBaUgFkCU4vadOJI,73577
|
|
200
200
|
sky/jobs/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
201
201
|
sky/jobs/client/sdk.py,sha256=SSdXVvaGCX5DjCfmMf6bSXOH1Dzk-a3bNhr7qNyHSuU,11335
|
|
202
202
|
sky/jobs/server/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
@@ -257,8 +257,8 @@ sky/provision/kubernetes/constants.py,sha256=vZJQsAVjAgwsOskB48tIFSXtNw7IFnJOQE_
|
|
|
257
257
|
sky/provision/kubernetes/instance.py,sha256=oQ_-QD6uAv4b32Q5kB_fRRE3iO_3xmVqPLbYBA0Wd08,59861
|
|
258
258
|
sky/provision/kubernetes/network.py,sha256=Dgj8u7IQBHKHt-mSDhYzue1wfDk96FR_8fO89TwuZ2E,12846
|
|
259
259
|
sky/provision/kubernetes/network_utils.py,sha256=eEbt8acJW3Ohe6qHZNZ9GAQ29kIZEQX7Q5S08yOuvhA,12220
|
|
260
|
-
sky/provision/kubernetes/utils.py,sha256=
|
|
261
|
-
sky/provision/kubernetes/volume.py,sha256=
|
|
260
|
+
sky/provision/kubernetes/utils.py,sha256=_RAGGy5etW1Ev-nAb7wZ3tSHVgJqqiMztdQNog9F-5o,150035
|
|
261
|
+
sky/provision/kubernetes/volume.py,sha256=9u7kDnQxNKvic4ZKJFxGE7fHcMo5N18VQmkVjseRFjU,8059
|
|
262
262
|
sky/provision/kubernetes/manifests/fusermount-server-daemonset.yaml,sha256=S87GNAbDqgTrLuxF-afPAqQ0V-i41El4s_9KBZMuaag,1331
|
|
263
263
|
sky/provision/lambda_cloud/__init__.py,sha256=6EEvSgtUeEiup9ivIFevHmgv0GqleroO2X0K7TRa2nE,612
|
|
264
264
|
sky/provision/lambda_cloud/config.py,sha256=jq1iLzp4Up61r4JGxvtpVbJlgXnea3LHYQhCQyyl7ik,272
|
|
@@ -367,8 +367,8 @@ sky/skylet/autostop_lib.py,sha256=kGUnHm-jpF4zl3UJfB-4pnoldWpnVeR96WwYGSw7em0,46
|
|
|
367
367
|
sky/skylet/configs.py,sha256=nNBnpuzoU696FbC3Nv0qKVSDuTw4GAbr7eCcg0_Sldo,2135
|
|
368
368
|
sky/skylet/constants.py,sha256=q0TQ39iqv9rMJ41QfefrW5eVQqCfyWPggX9D-uS28pQ,23580
|
|
369
369
|
sky/skylet/events.py,sha256=pnV3ZiwWhXqTHpU5B5Y9Xwam_7FQDI6IrxgSx7X_NVA,12743
|
|
370
|
-
sky/skylet/job_lib.py,sha256=
|
|
371
|
-
sky/skylet/log_lib.py,sha256
|
|
370
|
+
sky/skylet/job_lib.py,sha256=cUud2sVcnHcZbqzHYGpiBy7EKSIphX8SqWg5Rsh-Su4,49533
|
|
371
|
+
sky/skylet/log_lib.py,sha256=-kfeSNb7gR7Z-G7ADHh9Na4_QO-T0o2WzYYhcrrHSIE,23349
|
|
372
372
|
sky/skylet/log_lib.pyi,sha256=6LXFSpyW4lMHAELKllvK73B3538JjSo9lPw30DEuO0o,4542
|
|
373
373
|
sky/skylet/skylet.py,sha256=mWmqCvxSlfdVU_L8NL6P52jmCt3smd8K0HdyNBfMPeI,1234
|
|
374
374
|
sky/skylet/subprocess_daemon.py,sha256=gcL-_Hea7-SrBUyZfAbo40RBFbaeuBmPCW0dm4YYkPo,3537
|
|
@@ -401,7 +401,7 @@ sky/templates/jobs-controller.yaml.j2,sha256=3HxM6p0t50_eZjk-gVThkLtM5hlwU6F1jFm
|
|
|
401
401
|
sky/templates/kubernetes-ingress.yml.j2,sha256=73iDklVDWBMbItg0IexCa6_ClXPJOxw7PWz3leku4nE,1340
|
|
402
402
|
sky/templates/kubernetes-loadbalancer.yml.j2,sha256=IxrNYM366N01bbkJEbZ_UPYxUP8wyVEbRNFHRsBuLsw,626
|
|
403
403
|
sky/templates/kubernetes-port-forward-proxy-command.sh,sha256=iw7mypHszg6Ggq9MbyiYMFOkSlXaQZulaxqC5IWYGCc,3381
|
|
404
|
-
sky/templates/kubernetes-ray.yml.j2,sha256=
|
|
404
|
+
sky/templates/kubernetes-ray.yml.j2,sha256=gjZlmBdOHfjSqj5N02KaluB6mscxeoRQaI_munpUghE,57563
|
|
405
405
|
sky/templates/kubernetes-ssh-jump.yml.j2,sha256=k5W5sOIMppU7dDkJMwPlqsUcb92y7L5_TVG3hkgMy8M,2747
|
|
406
406
|
sky/templates/lambda-ray.yml.j2,sha256=PbUjxrGhyxhXxL2cmONAI_PRsua3I3Xr5V8yoEy7H6c,4760
|
|
407
407
|
sky/templates/local-ray.yml.j2,sha256=FNHeyHF6nW9nU9QLIZceUWfvrFTTcO51KqhTnYCEFaA,1185
|
|
@@ -453,13 +453,14 @@ sky/utils/resource_checker.py,sha256=N18XhoVIqjY1VzmKvxQxRchRgC2WIgcEQyHDkLvg4Y8
|
|
|
453
453
|
sky/utils/resources_utils.py,sha256=zcJXHYQt6WtQHKuWEif1QP1NtSO7XQYJBaEs625yV1Y,15958
|
|
454
454
|
sky/utils/rich_console_utils.py,sha256=wPvAlshaFHuMZSjiDnaK3OSBppZLBjAn-lj7AvxNBQk,553
|
|
455
455
|
sky/utils/rich_utils.py,sha256=iR6Gf8ZewE9sut4uhkmZwtEelzm3FvckM9K41meQnWM,14650
|
|
456
|
-
sky/utils/schemas.py,sha256
|
|
456
|
+
sky/utils/schemas.py,sha256=-wpV5EwxXgwFrBEjzKxy7-xsfFgEd0J098N_Hs5r3No,55059
|
|
457
457
|
sky/utils/status_lib.py,sha256=QGkd6COD1GX1h30Mk9RMUdyeUOMJs5971GkxTcFgdsU,1705
|
|
458
458
|
sky/utils/subprocess_utils.py,sha256=tOpFY_1ml7JkVGAN1o473lcKPklGR95qBCW61eu8kEo,15773
|
|
459
459
|
sky/utils/tempstore.py,sha256=3S5fJ3UjnE12ve38c3MpTXpoRWfDSGndZpqNe7P_8aU,2148
|
|
460
460
|
sky/utils/timeline.py,sha256=e8yOy__gEnaaogSoEPb5JR7sTYAiQCNtnP2sS73dZP8,5323
|
|
461
461
|
sky/utils/ux_utils.py,sha256=-fxqsar64eZWZ7vSH6gy1voxsDZTqcTR02a9uf_uRZg,10292
|
|
462
462
|
sky/utils/validator.py,sha256=AHIYEBpxzpC2Eg8TulruFqQSjTxeynB0Dc7cfP1RX2M,1159
|
|
463
|
+
sky/utils/volume.py,sha256=b1dybVUGUjDTEXint7SBezelUO86Dsz8eXZ5WZqVedM,2860
|
|
463
464
|
sky/utils/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
464
465
|
sky/utils/aws/get_default_security_group.py,sha256=LPzz5133ZUMbzDD3iqqACL9PdlgqiQR5hKZIn-D1zhw,228
|
|
465
466
|
sky/utils/cli_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -484,21 +485,21 @@ sky/utils/kubernetes/rsync_helper.sh,sha256=MT29sI5iD2QxYlXFwrN16oq0Er4TPFQVs4Z4
|
|
|
484
485
|
sky/utils/kubernetes/ssh-tunnel.sh,sha256=60eHKF7phJe9pFEkGlqdwWzI80tpog8QCkL7fAbIAic,12143
|
|
485
486
|
sky/utils/kubernetes/ssh_jump_lifecycle_manager.py,sha256=Kq1MDygF2IxFmu9FXpCxqucXLmeUrvs6OtRij6XTQbo,6554
|
|
486
487
|
sky/utils/kubernetes/ssh_utils.py,sha256=hPV2gU6j3j1aVf8kFvkux_KE88R5j8-JUDEopG6v70o,9046
|
|
487
|
-
sky/volumes/__init__.py,sha256=
|
|
488
|
-
sky/volumes/utils.py,sha256=
|
|
489
|
-
sky/volumes/volume.py,sha256=
|
|
488
|
+
sky/volumes/__init__.py,sha256=oy7JTgRXxkK2nOOF-OWivr0xeSL1-Syz703kZEuUnn0,241
|
|
489
|
+
sky/volumes/utils.py,sha256=5085ymeeQpzQAjXGm6LPn5-73hUR0biF7wlImeOa5P4,5680
|
|
490
|
+
sky/volumes/volume.py,sha256=XR316DX2vgKJr7Qw2HzjGboSBeI_wfeFv98rpHYOGSM,4389
|
|
490
491
|
sky/volumes/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
491
|
-
sky/volumes/client/sdk.py,sha256=
|
|
492
|
+
sky/volumes/client/sdk.py,sha256=5FrGSUTwHeVxs1e4SYhuADxiJVpG352wOQmfSfGR_cI,2627
|
|
492
493
|
sky/volumes/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
493
494
|
sky/volumes/server/core.py,sha256=CO-pgo7MNXo-5ZZ8aeGGxRr8Uye9rDhyK9y3xq-6XWI,8720
|
|
494
|
-
sky/volumes/server/server.py,sha256=
|
|
495
|
+
sky/volumes/server/server.py,sha256=MZaxWaowuRd-vMLWUZPDf9gI2V2DcWAyabP9Dbv7EyA,3026
|
|
495
496
|
sky/workspaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
496
497
|
sky/workspaces/core.py,sha256=MkQoVqWN67tf4VRq284U9vgAw4lwb_cpUfwHQT4V9Ow,16598
|
|
497
498
|
sky/workspaces/server.py,sha256=Box45DS54xXGHy7I3tGKGy-JP0a8G_z6IhfvGlEXtsA,3439
|
|
498
499
|
sky/workspaces/utils.py,sha256=IIAiFoS6sdb2t0X5YoX9AietpTanZUQNTK8cePun-sY,2143
|
|
499
|
-
skypilot_nightly-1.0.0.
|
|
500
|
-
skypilot_nightly-1.0.0.
|
|
501
|
-
skypilot_nightly-1.0.0.
|
|
502
|
-
skypilot_nightly-1.0.0.
|
|
503
|
-
skypilot_nightly-1.0.0.
|
|
504
|
-
skypilot_nightly-1.0.0.
|
|
500
|
+
skypilot_nightly-1.0.0.dev20250726.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
|
|
501
|
+
skypilot_nightly-1.0.0.dev20250726.dist-info/METADATA,sha256=Q2Vbq0xwpI46UJ1Rk2fvEHbztvkzaTXFenWcUkhVVyE,19691
|
|
502
|
+
skypilot_nightly-1.0.0.dev20250726.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
503
|
+
skypilot_nightly-1.0.0.dev20250726.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
|
|
504
|
+
skypilot_nightly-1.0.0.dev20250726.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
|
|
505
|
+
skypilot_nightly-1.0.0.dev20250726.dist-info/RECORD,,
|
/sky/dashboard/out/_next/static/{SiA7c33x_DqO42M373Okd → lVqpIJvikPZAX3dgsm6_q}/_buildManifest.js
RENAMED
|
File without changes
|
/sky/dashboard/out/_next/static/{SiA7c33x_DqO42M373Okd → lVqpIJvikPZAX3dgsm6_q}/_ssgManifest.js
RENAMED
|
File without changes
|
{skypilot_nightly-1.0.0.dev20250725.dist-info → skypilot_nightly-1.0.0.dev20250726.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|