skypilot-nightly 1.0.0.dev20250905__py3-none-any.whl → 1.0.0.dev20250907__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/adaptors/common.py +24 -1
- sky/adaptors/do.py +8 -2
- sky/backends/backend_utils.py +46 -0
- sky/catalog/__init__.py +1 -0
- sky/clouds/aws.py +4 -6
- sky/clouds/azure.py +12 -13
- sky/clouds/cudo.py +4 -8
- sky/clouds/do.py +5 -6
- sky/clouds/nebius.py +4 -1
- sky/clouds/oci.py +7 -7
- sky/clouds/runpod.py +59 -18
- sky/clouds/vast.py +21 -22
- sky/clouds/vsphere.py +10 -15
- sky/dashboard/out/404.html +1 -1
- sky/dashboard/out/_next/static/chunks/{webpack-4fe903277b57b523.js → webpack-6f5f27e9d7900777.js} +1 -1
- sky/dashboard/out/_next/static/{mS-4qZPSkRuA1u-g2wQhg → i60KpqkwvB9QVScj-NeKo}/_buildManifest.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/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/daemons.py +2 -0
- sky/server/requests/executor.py +10 -0
- sky/server/requests/payloads.py +5 -0
- sky/templates/nebius-ray.yml.j2 +1 -0
- sky/utils/common_utils.py +18 -0
- sky/utils/schemas.py +7 -1
- sky/volumes/server/core.py +25 -2
- {skypilot_nightly-1.0.0.dev20250905.dist-info → skypilot_nightly-1.0.0.dev20250907.dist-info}/METADATA +31 -31
- {skypilot_nightly-1.0.0.dev20250905.dist-info → skypilot_nightly-1.0.0.dev20250907.dist-info}/RECORD +54 -54
- /sky/dashboard/out/_next/static/chunks/{6856-dca7962af4814e1b.js → 6856-6e2bc8a6fd0867af.js} +0 -0
- /sky/dashboard/out/_next/static/{mS-4qZPSkRuA1u-g2wQhg → i60KpqkwvB9QVScj-NeKo}/_ssgManifest.js +0 -0
- {skypilot_nightly-1.0.0.dev20250905.dist-info → skypilot_nightly-1.0.0.dev20250907.dist-info}/WHEEL +0 -0
- {skypilot_nightly-1.0.0.dev20250905.dist-info → skypilot_nightly-1.0.0.dev20250907.dist-info}/entry_points.txt +0 -0
- {skypilot_nightly-1.0.0.dev20250905.dist-info → skypilot_nightly-1.0.0.dev20250907.dist-info}/licenses/LICENSE +0 -0
- {skypilot_nightly-1.0.0.dev20250905.dist-info → skypilot_nightly-1.0.0.dev20250907.dist-info}/top_level.txt +0 -0
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.dev20250907
|
|
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-
|
|
150
|
-
Requires-Dist:
|
|
151
|
-
Requires-Dist:
|
|
148
|
+
Requires-Dist: azure-common; extra == "all"
|
|
149
|
+
Requires-Dist: azure-identity>=1.19.0; extra == "all"
|
|
150
|
+
Requires-Dist: nebius>=0.2.47; extra == "all"
|
|
151
|
+
Requires-Dist: azure-core>=1.24.0; extra == "all"
|
|
152
|
+
Requires-Dist: python-dateutil; extra == "all"
|
|
153
|
+
Requires-Dist: cudo-compute>=0.1.10; extra == "all"
|
|
152
154
|
Requires-Dist: colorama<0.4.5; extra == "all"
|
|
153
|
-
Requires-Dist:
|
|
154
|
-
Requires-Dist:
|
|
155
|
+
Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
|
|
156
|
+
Requires-Dist: pydo>=0.3.0; extra == "all"
|
|
155
157
|
Requires-Dist: aiosqlite; extra == "all"
|
|
156
|
-
Requires-Dist: ibm-cos-sdk; extra == "all"
|
|
157
158
|
Requires-Dist: pyopenssl<24.3.0,>=23.2.0; extra == "all"
|
|
158
|
-
Requires-Dist:
|
|
159
|
-
Requires-Dist: awscli>=1.27.10; extra == "all"
|
|
160
|
-
Requires-Dist: boto3>=1.26.1; extra == "all"
|
|
161
|
-
Requires-Dist: pydo>=0.3.0; extra == "all"
|
|
159
|
+
Requires-Dist: azure-core>=1.31.0; extra == "all"
|
|
162
160
|
Requires-Dist: google-cloud-storage; extra == "all"
|
|
163
|
-
Requires-Dist:
|
|
164
|
-
Requires-Dist: azure-core>=1.24.0; extra == "all"
|
|
165
|
-
Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
|
|
161
|
+
Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "all"
|
|
166
162
|
Requires-Dist: casbin; extra == "all"
|
|
163
|
+
Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "all"
|
|
164
|
+
Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
|
|
165
|
+
Requires-Dist: ibm-cloud-sdk-core; extra == "all"
|
|
166
|
+
Requires-Dist: aiohttp; extra == "all"
|
|
167
|
+
Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
|
|
168
|
+
Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
|
|
169
|
+
Requires-Dist: vastai-sdk>=0.1.12; extra == "all"
|
|
167
170
|
Requires-Dist: docker; extra == "all"
|
|
168
|
-
Requires-Dist: passlib; extra == "all"
|
|
169
|
-
Requires-Dist: ibm-vpc; extra == "all"
|
|
170
171
|
Requires-Dist: oci; extra == "all"
|
|
172
|
+
Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
|
|
173
|
+
Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "all"
|
|
174
|
+
Requires-Dist: ibm-cos-sdk; extra == "all"
|
|
171
175
|
Requires-Dist: azure-cli>=2.65.0; extra == "all"
|
|
172
|
-
Requires-Dist:
|
|
173
|
-
Requires-Dist:
|
|
174
|
-
Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "all"
|
|
175
|
-
Requires-Dist: azure-identity>=1.19.0; extra == "all"
|
|
176
|
+
Requires-Dist: awscli>=1.27.10; extra == "all"
|
|
177
|
+
Requires-Dist: msgraph-sdk; extra == "all"
|
|
176
178
|
Requires-Dist: botocore>=1.29.10; extra == "all"
|
|
177
|
-
Requires-Dist:
|
|
178
|
-
Requires-Dist:
|
|
179
|
+
Requires-Dist: boto3>=1.26.1; extra == "all"
|
|
180
|
+
Requires-Dist: websockets; extra == "all"
|
|
179
181
|
Requires-Dist: ray[default]!=2.6.0,>=2.2.0; extra == "all"
|
|
180
|
-
Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "all"
|
|
181
|
-
Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
|
|
182
|
-
Requires-Dist: msgraph-sdk; extra == "all"
|
|
183
|
-
Requires-Dist: msrestazure; extra == "all"
|
|
184
182
|
Requires-Dist: pyjwt; extra == "all"
|
|
185
|
-
Requires-Dist:
|
|
183
|
+
Requires-Dist: passlib; extra == "all"
|
|
184
|
+
Requires-Dist: grpcio>=1.63.0; extra == "all"
|
|
185
|
+
Requires-Dist: ibm-vpc; extra == "all"
|
|
186
186
|
Requires-Dist: runpod>=1.6.1; extra == "all"
|
|
187
|
-
Requires-Dist: azure-common; extra == "all"
|
|
188
|
-
Requires-Dist: vastai-sdk>=0.1.12; extra == "all"
|
|
189
187
|
Requires-Dist: anyio; extra == "all"
|
|
188
|
+
Requires-Dist: msrestazure; extra == "all"
|
|
189
|
+
Requires-Dist: sqlalchemy_adapter; extra == "all"
|
|
190
190
|
Dynamic: author
|
|
191
191
|
Dynamic: classifier
|
|
192
192
|
Dynamic: description
|
|
@@ -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.dev20250905.dist-info → skypilot_nightly-1.0.0.dev20250907.dist-info}/RECORD
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
sky/__init__.py,sha256=
|
|
1
|
+
sky/__init__.py,sha256=kY3WA_M02kYceQ-C975LU6XuyDucMKMjLY1oKrdr7FA,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
|
|
@@ -20,9 +20,9 @@ sky/adaptors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
20
20
|
sky/adaptors/aws.py,sha256=4caUTO5nxZQyDVPyQdoPljaF-Lz_Fa6NEnu3FfmLZd4,8633
|
|
21
21
|
sky/adaptors/azure.py,sha256=7l5jobSTsTUcTo3ptrgOpRgngHY92U64eQBPxvDe1HA,21986
|
|
22
22
|
sky/adaptors/cloudflare.py,sha256=8XFjBKMusnR7EmteEGAsAAQUG4J0lDlqk7lkaum_5-4,8276
|
|
23
|
-
sky/adaptors/common.py,sha256
|
|
23
|
+
sky/adaptors/common.py,sha256=D4PE2l4zSJxKboVYgvHcEBvwkT-dyBMn2uA-v_Ee7dk,3771
|
|
24
24
|
sky/adaptors/cudo.py,sha256=WGvIQrlzJkGDe02Ve7pygA56tHwUc4kwS3XHW8kMFAA,239
|
|
25
|
-
sky/adaptors/do.py,sha256=
|
|
25
|
+
sky/adaptors/do.py,sha256=vR5zddoWtSUTuOBeRobY1WAvb_ueaOlBzsnR_gwgBMM,1026
|
|
26
26
|
sky/adaptors/docker.py,sha256=_kzpZ0fkWHqqQAVVl0llTsCE31KYz3Sjn8psTBQHVkA,468
|
|
27
27
|
sky/adaptors/gcp.py,sha256=oEb9jClEtApw6PQnxdxDYxOCYsedvM3aiko1EW1FDVo,3501
|
|
28
28
|
sky/adaptors/hyperbolic.py,sha256=iyHDmtLFVTK9QajpAmObk0XO2OZnnO_1LbvDffPpt68,245
|
|
@@ -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=
|
|
38
|
+
sky/backends/backend_utils.py,sha256=t8qhTFWxnVNrhW55V2msx9j6tyXbuXpIcP9NS60dLUc,164035
|
|
39
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
|
|
@@ -87,42 +87,42 @@ sky/client/cli/deprecation_utils.py,sha256=H_d5UyF2CekEoThduAzt5cihBO8hwKYMu0-Wq
|
|
|
87
87
|
sky/client/cli/flags.py,sha256=lLXHooU4HEslbHJuGAiCrKYkJZx99hAKaJbstw7s1bc,12136
|
|
88
88
|
sky/client/cli/git.py,sha256=dqSaJI1Ndv6RfKJa6HT6ednXr0j_pVlwSdh3XiQzB60,22018
|
|
89
89
|
sky/clouds/__init__.py,sha256=tC9_Vi6GvVceWUi6uZvm7vXzBa0uH3CjRQ-QCYqdJMw,1624
|
|
90
|
-
sky/clouds/aws.py,sha256=
|
|
91
|
-
sky/clouds/azure.py,sha256=
|
|
90
|
+
sky/clouds/aws.py,sha256=Bkp6z72PpNYZsiVxZFR1U2OFqu_1AWfhehty2qiz4Qg,62787
|
|
91
|
+
sky/clouds/azure.py,sha256=qnabVjfS3em-TvxOIqZ6mMiipnt51MBVf7R0pnyB7bo,33233
|
|
92
92
|
sky/clouds/cloud.py,sha256=z3ViXzRh08sYwPiy5LlzodohBGESHJnl1usSXDH9ZSQ,39945
|
|
93
|
-
sky/clouds/cudo.py,sha256=
|
|
94
|
-
sky/clouds/do.py,sha256=
|
|
93
|
+
sky/clouds/cudo.py,sha256=il2C91LV9yWD3fE3fY8sabFPCyaMO8QJ1HMSJP-H4lU,14109
|
|
94
|
+
sky/clouds/do.py,sha256=a3Lk3nKLaYt97AV9cA1v50pNfKUTJF0rDg16rnnqYqQ,12618
|
|
95
95
|
sky/clouds/fluidstack.py,sha256=AbVYW2iwVVebIn0dWdSSsdItILHRLG3VVU3N2-n1I9c,13601
|
|
96
96
|
sky/clouds/gcp.py,sha256=LteGFf8kxmVoWyzM1YTNDh3xOrsuVJFB2-E7KNJ_Yz8,68861
|
|
97
97
|
sky/clouds/hyperbolic.py,sha256=bmV4NFpUPgzR0ownavHHVqyw26EtOgQ_ZB6SlxlgmJw,11999
|
|
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=
|
|
102
|
-
sky/clouds/oci.py,sha256=
|
|
101
|
+
sky/clouds/nebius.py,sha256=onEFMQEKfgFEzaeGkejlOEDR6hcBPQaxDO5rrtQ7WFU,21663
|
|
102
|
+
sky/clouds/oci.py,sha256=Is9MP3EBoZ3zvqNTzcb57dXRinpSMp_R_CiazEu7rYM,28557
|
|
103
103
|
sky/clouds/paperspace.py,sha256=-wvFUsUGaOlFYfe3jCdEB3_mwDmK4R66hJy8nX9822o,12010
|
|
104
|
-
sky/clouds/runpod.py,sha256=
|
|
104
|
+
sky/clouds/runpod.py,sha256=j04EiwzT3V1pPAXCOVA_TCFTf8KkJ6BBaUvUAWhOn0Q,15875
|
|
105
105
|
sky/clouds/scp.py,sha256=zXHxLKfe8B90eHNbawNiXxsGsoBDXW5InvM2E7CaRSw,16116
|
|
106
106
|
sky/clouds/ssh.py,sha256=-wnX0ea9nHV1hAiHw3sdbFmXrz6XrP-mSEgFE6JWxX0,9996
|
|
107
|
-
sky/clouds/vast.py,sha256=
|
|
108
|
-
sky/clouds/vsphere.py,sha256=
|
|
107
|
+
sky/clouds/vast.py,sha256=kibPy_zH4KHBdbqIw6I15yd_gDl5tgrT5NC--rBlrOI,12266
|
|
108
|
+
sky/clouds/vsphere.py,sha256=pIMSh7eI-3RbTDUOnFl6lzbRWRtG9KYOsLHg-bdZJ2c,13159
|
|
109
109
|
sky/clouds/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
110
110
|
sky/clouds/utils/aws_utils.py,sha256=eT1GUR-OAfKS9CM0ZOARkhAYQ779GEGwPs9OXm6lwt0,2146
|
|
111
111
|
sky/clouds/utils/azure_utils.py,sha256=NToRBnhEyuUvb-nBnsKTxjhOBRkMcrelL8LK4w6s4t8,3555
|
|
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=-5nixEf8-is4z7duz7bXdHxRQsLAW9NvkTZSVY-GIn8,1423
|
|
116
|
+
sky/dashboard/out/clusters.html,sha256=Th5OofF3tuPiENTwFb8IwVQgYXA14QC9NoiJ_hj6K54,1418
|
|
117
|
+
sky/dashboard/out/config.html,sha256=8iL3UtfjAhtOWPdCls73mKKPh_EtqSHwwzQwppsGEOY,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=pK3_4Gb4xUsRRJMhpVScf9yGGZuO5G4x7Y4Do12Rg6E,1407
|
|
120
|
+
sky/dashboard/out/infra.html,sha256=K-WSNlgI0sO_webrKSwrLceyaYOQKgsgu6KCuw2bNUc,1412
|
|
121
|
+
sky/dashboard/out/jobs.html,sha256=91AUVGYOJIKWmM5Ugzc6PAGeZr-gmBEkCX84dnURQ5M,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=PM4shJ-3Bc2TqGL_e2BIkXPr2BlLT1VqYFJzWAaTfRg,1412
|
|
124
|
+
sky/dashboard/out/volumes.html,sha256=d0KMmtwab1S3bNjaM9NlVup6ulzVbTBtPmc4cT1N8Bs,1416
|
|
125
|
+
sky/dashboard/out/workspaces.html,sha256=rpijymGfq3LZBLDU4f2QJny6chUkX46OMYJl_JzLMys,1422
|
|
126
126
|
sky/dashboard/out/_next/static/chunks/1121-408ed10b2f9fce17.js,sha256=WRuwuuT4OiOBZc-c8VIS-vO9wtyRdKvGN51obQLfxwA,8596
|
|
127
127
|
sky/dashboard/out/_next/static/chunks/1141-943efc7aff0f0c06.js,sha256=tUOoU0nIEShZeD5pBiOWrl8-czHc6PpnxxJilnDplHM,17330
|
|
128
128
|
sky/dashboard/out/_next/static/chunks/1272-1ef0bf0237faccdb.js,sha256=VJ6y-Z6Eg2T93hQIRfWAbjAkQ7nQhglmIaVbEpKSILY,38451
|
|
@@ -143,7 +143,7 @@ sky/dashboard/out/_next/static/chunks/6135-4b4d5e824b7f9d3c.js,sha256=OLvQvfyMwh
|
|
|
143
143
|
sky/dashboard/out/_next/static/chunks/616-3d59f75e2ccf9321.js,sha256=UQxIbEZseq4ore8Y1Tm5OT3Re7fU8ZZKjQQWk4JPvK4,179393
|
|
144
144
|
sky/dashboard/out/_next/static/chunks/649.b9d7f7d10c1b8c53.js,sha256=wUdmzEiSknP_LP1jtpaNdiDRrF8dtxaC7Z_bWNRC8sM,11946
|
|
145
145
|
sky/dashboard/out/_next/static/chunks/6601-06114c982db410b6.js,sha256=coh7shL8L5Vp2MsibBTx-xxNq_BI-zp0jAl7f6eVmUQ,9659
|
|
146
|
-
sky/dashboard/out/_next/static/chunks/6856-
|
|
146
|
+
sky/dashboard/out/_next/static/chunks/6856-6e2bc8a6fd0867af.js,sha256=Olh21LZ02M_afwA4okyHBgZd85IyiSozzPaFUCaAlFY,16110
|
|
147
147
|
sky/dashboard/out/_next/static/chunks/6989-01359c57e018caa4.js,sha256=iIEGQp3dsChOsDxd7QH_ShGczWhvigMfIT35CSsZjjY,11873
|
|
148
148
|
sky/dashboard/out/_next/static/chunks/6990-08b2a1cae076a943.js,sha256=fWdN6V7HMAPhUGCaejOrETv_O1D7atMOpnMiE6LIsc8,16117
|
|
149
149
|
sky/dashboard/out/_next/static/chunks/7325.b4bc99ce0892dcd5.js,sha256=5x42A-PEZANeHAcNDbcnJ21uQF48yTrP3XeW5L4RH1g,495
|
|
@@ -158,7 +158,7 @@ sky/dashboard/out/_next/static/chunks/framework-cf60a09ccd051a10.js,sha256=_Qbam
|
|
|
158
158
|
sky/dashboard/out/_next/static/chunks/main-app-587214043926b3cc.js,sha256=t7glRfataAjNw691Wni-ZU4a3BsygRzPKoI8NOm-lsY,116244
|
|
159
159
|
sky/dashboard/out/_next/static/chunks/main-f15ccb73239a3bf1.js,sha256=jxOPLDVX3rkMc_jvGx2a-N2v6mvfOa8O6V0o-sLT0tI,110208
|
|
160
160
|
sky/dashboard/out/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js,sha256=6QPOwdWeAVe8x-SsiDrm-Ga6u2DkqgG5SFqglrlyIgA,91381
|
|
161
|
-
sky/dashboard/out/_next/static/chunks/webpack-
|
|
161
|
+
sky/dashboard/out/_next/static/chunks/webpack-6f5f27e9d7900777.js,sha256=ApPe6VC9MxamBNNIq-r5C6TsW07JmYtbpuHhdcaof5s,4742
|
|
162
162
|
sky/dashboard/out/_next/static/chunks/pages/_app-ce361c6959bc2001.js,sha256=mllo4Yasw61zRtEO49uE_MrAutg9josSJShD0DNSjf0,95518
|
|
163
163
|
sky/dashboard/out/_next/static/chunks/pages/_error-c66a4e8afc46f17b.js,sha256=vjERjtMAbVk-19LyPf1Jc-H6TMcrSznSz6brzNqbqf8,253
|
|
164
164
|
sky/dashboard/out/_next/static/chunks/pages/clusters-469814d711d63b1b.js,sha256=p8CQtv5n745WbV7QdyCapmglI2s_2UBB-f_KZE4RAZg,879
|
|
@@ -177,16 +177,16 @@ sky/dashboard/out/_next/static/chunks/pages/jobs/pools/[pool]-07349868f7905d37.j
|
|
|
177
177
|
sky/dashboard/out/_next/static/chunks/pages/workspace/new-3f88a1c7e86a3f86.js,sha256=83s5N5CZwIaRcmYMfqn2we60n2VRmgFw6Tbx18b8-e0,762
|
|
178
178
|
sky/dashboard/out/_next/static/chunks/pages/workspaces/[name]-af76bb06dbb3954f.js,sha256=cGCpDszMI6ckUHVelwAh9ZVk1erfz_UXSLz9GCqGUAE,1495
|
|
179
179
|
sky/dashboard/out/_next/static/css/4614e06482d7309e.css,sha256=nk6GriyGVd1aGXrLd7BcMibnN4v0z-Q_mXGxrHFWqrE,56126
|
|
180
|
-
sky/dashboard/out/_next/static/
|
|
181
|
-
sky/dashboard/out/_next/static/
|
|
182
|
-
sky/dashboard/out/clusters/[cluster].html,sha256=
|
|
183
|
-
sky/dashboard/out/clusters/[cluster]/[job].html,sha256=
|
|
184
|
-
sky/dashboard/out/infra/[context].html,sha256=
|
|
185
|
-
sky/dashboard/out/jobs/[job].html,sha256=
|
|
186
|
-
sky/dashboard/out/jobs/pools/[pool].html,sha256=
|
|
180
|
+
sky/dashboard/out/_next/static/i60KpqkwvB9QVScj-NeKo/_buildManifest.js,sha256=Pvhr9Bwcc1m2lvV4irQGV1agk9EuhOz-ZAJ0ILvukmc,2428
|
|
181
|
+
sky/dashboard/out/_next/static/i60KpqkwvB9QVScj-NeKo/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
|
182
|
+
sky/dashboard/out/clusters/[cluster].html,sha256=FGQ9JSq54IuIPkaWV_mPfur7eunpH-gCPol4euWhNg0,2936
|
|
183
|
+
sky/dashboard/out/clusters/[cluster]/[job].html,sha256=NfyfbnERHOP7qUI45eiHeMqj90-Uvac5Oz7N1Bsu0d4,2073
|
|
184
|
+
sky/dashboard/out/infra/[context].html,sha256=7hwnsldYhOcUyvYMajt6HVaH0eiXiFTa7joSvz_ecAs,1436
|
|
185
|
+
sky/dashboard/out/jobs/[job].html,sha256=G3BeYMD-axQgY_RKtwhAWOPp4OOOPPz7JnO-RzS2tw4,2304
|
|
186
|
+
sky/dashboard/out/jobs/pools/[pool].html,sha256=cTUb3eMLJljNwD54CXS6nC4CowZmY5fJ9_2NmXB3F0k,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=oo1olw9X57Hjs4xig1B1J1K0bOa-Sbx4lnbRUyzPZ_o,1428
|
|
189
|
+
sky/dashboard/out/workspaces/[name].html,sha256=sxBTnCocuo5k39QuyE6bpgN9soL1jxjrWqweSeKWzik,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
|
|
@@ -358,7 +358,7 @@ sky/server/__init__.py,sha256=MPPBqFzXz6Jv5QSk6td_IcvnfXfNErDZVcizu4MLRow,27
|
|
|
358
358
|
sky/server/common.py,sha256=0sXjJqrAg1G1oZKg3492RzYuBjzCgXp8JXqyRIf3ysk,39410
|
|
359
359
|
sky/server/config.py,sha256=lWggVysR8dFn5gxk1Xab9abyCyDBcA6kehEWFmWU97I,9916
|
|
360
360
|
sky/server/constants.py,sha256=yjX8t73w6gj3_SDSP4vBFdNdiOqq7dnlXT2pw3yo0jM,2321
|
|
361
|
-
sky/server/daemons.py,sha256=
|
|
361
|
+
sky/server/daemons.py,sha256=ig0AAJzDdq7lOq5psyfk1yQ8GFl0XQFnKd0qKzzGxY4,9287
|
|
362
362
|
sky/server/metrics.py,sha256=G9HMhioPmx9ppbyrPAk-pyVe5yUw6LBuXD5aRqqsEfM,6140
|
|
363
363
|
sky/server/rest.py,sha256=6Qcn6fjypP3j9UHdKRgvt2-PU1LKz2VU2aVQEA1D6EI,14354
|
|
364
364
|
sky/server/server.py,sha256=ZCCtVsDV6uHYLEXHn9rsKFnmHfaGpDPDuNpjcw5qvZ8,81027
|
|
@@ -373,8 +373,8 @@ 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=y0QEqK3bcrgqPSYcsn4SmIGfInACTnDrs-9ZfbHxzJ8,28599
|
|
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
380
|
sky/server/requests/requests.py,sha256=T6-cYE5h3qGiPadt7jQV8t0UTQXAEGK1Ejx5XThEYIE,30147
|
|
@@ -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
|
|
@@ -470,7 +470,7 @@ sky/utils/cluster_utils.py,sha256=S8qjky9x1vkLAN4fhLkA8atJVtjdpvueqnZLEiuD5YQ,14
|
|
|
470
470
|
sky/utils/command_runner.py,sha256=nLOynQUqKpxqpxHcqEw34X5P24e8parWlluvziRFx2A,48779
|
|
471
471
|
sky/utils/command_runner.pyi,sha256=IS3qeCTgWys94KhaHx3S2Pty8qDWn_zFht7bgDLJFcw,9593
|
|
472
472
|
sky/utils/common.py,sha256=yJc110y8rwcBIKEJgb8kUD4e1OeolFEVtonwmqtAxCM,2729
|
|
473
|
-
sky/utils/common_utils.py,sha256=
|
|
473
|
+
sky/utils/common_utils.py,sha256=Z4QI9nYsZSb1K_3pbREx8-j1e7SpWdlupofZprMdNU8,38535
|
|
474
474
|
sky/utils/config_utils.py,sha256=agfDWJi79DH5XKD_GBvUwhRwmB0-ZkYbKCjcEgV6gP4,13861
|
|
475
475
|
sky/utils/context.py,sha256=yEGvcKr9fKEeoAnNKiXDiky7dlLOChFdZYXGr0EeQ9g,9997
|
|
476
476
|
sky/utils/context_utils.py,sha256=cby-QPmnGObjIE4K7eZ_dkWZdUo7YJUmnJr5oKf_v54,6712
|
|
@@ -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
|
|
@@ -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.dev20250907.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
|
|
543
|
+
skypilot_nightly-1.0.0.dev20250907.dist-info/METADATA,sha256=TiGKM3CZMX_wbAcKCUdyBWgm8qeWTz5H2O3mAth8tKs,19793
|
|
544
|
+
skypilot_nightly-1.0.0.dev20250907.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
545
|
+
skypilot_nightly-1.0.0.dev20250907.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
|
|
546
|
+
skypilot_nightly-1.0.0.dev20250907.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
|
|
547
|
+
skypilot_nightly-1.0.0.dev20250907.dist-info/RECORD,,
|
/sky/dashboard/out/_next/static/chunks/{6856-dca7962af4814e1b.js → 6856-6e2bc8a6fd0867af.js}
RENAMED
|
File without changes
|
/sky/dashboard/out/_next/static/{mS-4qZPSkRuA1u-g2wQhg → i60KpqkwvB9QVScj-NeKo}/_ssgManifest.js
RENAMED
|
File without changes
|
{skypilot_nightly-1.0.0.dev20250905.dist-info → skypilot_nightly-1.0.0.dev20250907.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|