skypilot-nightly 1.0.0.dev20251002__py3-none-any.whl → 1.0.0.dev20251004__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/authentication.py +19 -109
- sky/backends/cloud_vm_ray_backend.py +42 -27
- sky/client/cli/command.py +1 -11
- sky/clouds/cudo.py +1 -1
- sky/clouds/kubernetes.py +7 -19
- sky/dashboard/out/404.html +1 -1
- sky/dashboard/out/_next/static/{16g0-hgEgk6Db72hpE8MY → KL03GEega4QqDqTOMtA_w}/_buildManifest.js +1 -1
- sky/dashboard/out/_next/static/chunks/3015-8d748834fcc60b46.js +1 -0
- sky/dashboard/out/_next/static/chunks/8969-66237729cdf9749e.js +1 -0
- sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]/{[job]-ad77b12fc736dca3.js → [job]-72794fc3fcdd517a.js} +1 -1
- sky/dashboard/out/_next/static/chunks/{webpack-7340bc0f0dd8ae74.js → webpack-3286453d56f3c0a0.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/data/storage_utils.py +9 -0
- sky/execution.py +24 -2
- sky/global_user_state.py +16 -0
- sky/jobs/recovery_strategy.py +45 -0
- sky/jobs/server/core.py +60 -53
- sky/jobs/state.py +21 -1
- sky/jobs/utils.py +29 -11
- sky/provision/kubernetes/config.py +0 -42
- sky/provision/kubernetes/instance.py +1 -33
- sky/provision/kubernetes/manifests/fusermount-server-daemonset.yaml +1 -2
- sky/provision/kubernetes/network_utils.py +0 -21
- sky/provision/kubernetes/utils.py +136 -300
- sky/server/auth/loopback.py +38 -0
- sky/server/auth/oauth2_proxy.py +6 -0
- sky/server/server.py +6 -0
- sky/setup_files/dependencies.py +1 -0
- sky/templates/kubernetes-ray.yml.j2 +4 -13
- sky/utils/context.py +12 -7
- sky/utils/env_options.py +4 -0
- sky/utils/kubernetes_enums.py +2 -15
- sky/utils/schemas.py +17 -6
- {skypilot_nightly-1.0.0.dev20251002.dist-info → skypilot_nightly-1.0.0.dev20251004.dist-info}/METADATA +38 -37
- {skypilot_nightly-1.0.0.dev20251002.dist-info → skypilot_nightly-1.0.0.dev20251004.dist-info}/RECORD +55 -56
- sky/dashboard/out/_next/static/chunks/3015-88c7c8d69b0b6dba.js +0 -1
- sky/dashboard/out/_next/static/chunks/8969-d8bc3a2b9cf839a9.js +0 -1
- sky/templates/kubernetes-ssh-jump.yml.j2 +0 -94
- sky/utils/kubernetes/ssh_jump_lifecycle_manager.py +0 -191
- /sky/dashboard/out/_next/static/{16g0-hgEgk6Db72hpE8MY → KL03GEega4QqDqTOMtA_w}/_ssgManifest.js +0 -0
- {skypilot_nightly-1.0.0.dev20251002.dist-info → skypilot_nightly-1.0.0.dev20251004.dist-info}/WHEEL +0 -0
- {skypilot_nightly-1.0.0.dev20251002.dist-info → skypilot_nightly-1.0.0.dev20251004.dist-info}/entry_points.txt +0 -0
- {skypilot_nightly-1.0.0.dev20251002.dist-info → skypilot_nightly-1.0.0.dev20251004.dist-info}/licenses/LICENSE +0 -0
- {skypilot_nightly-1.0.0.dev20251002.dist-info → skypilot_nightly-1.0.0.dev20251004.dist-info}/top_level.txt +0 -0
sky/utils/context.py
CHANGED
|
@@ -205,7 +205,8 @@ class ContextualEnviron(MutableMapping[str, str]):
|
|
|
205
205
|
for key, value in ctx.env_overrides.items():
|
|
206
206
|
if value is None:
|
|
207
207
|
deleted_keys.add(key)
|
|
208
|
-
|
|
208
|
+
else:
|
|
209
|
+
yield key
|
|
209
210
|
for key in self._environ:
|
|
210
211
|
# Deduplicate the keys
|
|
211
212
|
if key not in ctx.env_overrides and key not in deleted_keys:
|
|
@@ -230,13 +231,17 @@ class ContextualEnviron(MutableMapping[str, str]):
|
|
|
230
231
|
def __delitem__(self, key: str) -> None:
|
|
231
232
|
ctx = get()
|
|
232
233
|
if ctx is not None:
|
|
233
|
-
if key in
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
#
|
|
237
|
-
#
|
|
238
|
-
#
|
|
234
|
+
if key in self._environ:
|
|
235
|
+
# If the key is set in the environ of the process, we mark it as
|
|
236
|
+
# deleted in the context by setting the value to None.
|
|
237
|
+
# Note: we must do this even if it was also set in the context,
|
|
238
|
+
# since it could be set in both, and deleting should delete it
|
|
239
|
+
# from both.
|
|
239
240
|
ctx.env_overrides[key] = None
|
|
241
|
+
elif key in ctx.env_overrides:
|
|
242
|
+
# If the key is set in the context, but not the original
|
|
243
|
+
# environ, we can just delete the override.
|
|
244
|
+
del ctx.env_overrides[key]
|
|
240
245
|
else:
|
|
241
246
|
# The key is not set in the context nor the process.
|
|
242
247
|
raise KeyError(key)
|
sky/utils/env_options.py
CHANGED
|
@@ -27,6 +27,10 @@ class Options(enum.Enum):
|
|
|
27
27
|
# Internal: This is used for testing to enable grpc for communication
|
|
28
28
|
# between the API server and the Skylet.
|
|
29
29
|
ENABLE_GRPC = ('SKYPILOT_ENABLE_GRPC', False)
|
|
30
|
+
# Allow all contexts for Kubernetes if allowed_contexts is not set in
|
|
31
|
+
# config.
|
|
32
|
+
ALLOW_ALL_KUBERNETES_CONTEXTS = ('SKYPILOT_ALLOW_ALL_KUBERNETES_CONTEXTS',
|
|
33
|
+
False)
|
|
30
34
|
|
|
31
35
|
def __init__(self, env_var: str, default: bool) -> None:
|
|
32
36
|
super().__init__()
|
sky/utils/kubernetes_enums.py
CHANGED
|
@@ -2,26 +2,13 @@
|
|
|
2
2
|
import enum
|
|
3
3
|
|
|
4
4
|
|
|
5
|
+
# TODO(kevin): Remove this enum in v0.13.0.
|
|
5
6
|
class KubernetesNetworkingMode(enum.Enum):
|
|
6
|
-
"""Enum for the different types of networking modes for accessing
|
|
7
|
-
jump pods.
|
|
7
|
+
"""Enum for the different types of networking modes for accessing pods.
|
|
8
8
|
"""
|
|
9
9
|
NODEPORT = 'nodeport'
|
|
10
10
|
PORTFORWARD = 'portforward'
|
|
11
11
|
|
|
12
|
-
@classmethod
|
|
13
|
-
def from_str(cls, mode: str) -> 'KubernetesNetworkingMode':
|
|
14
|
-
"""Returns the enum value for the given string."""
|
|
15
|
-
if mode.lower() == cls.NODEPORT.value:
|
|
16
|
-
return cls.NODEPORT
|
|
17
|
-
elif mode.lower() == cls.PORTFORWARD.value:
|
|
18
|
-
return cls.PORTFORWARD
|
|
19
|
-
else:
|
|
20
|
-
raise ValueError(f'Unsupported kubernetes networking mode: '
|
|
21
|
-
f'{mode}. The mode must be either '
|
|
22
|
-
f'\'{cls.PORTFORWARD.value}\' or '
|
|
23
|
-
f'\'{cls.NODEPORT.value}\'. ')
|
|
24
|
-
|
|
25
12
|
|
|
26
13
|
class KubernetesServiceType(enum.Enum):
|
|
27
14
|
"""Enum for the different types of services."""
|
sky/utils/schemas.py
CHANGED
|
@@ -1071,6 +1071,7 @@ _REMOTE_IDENTITY_SCHEMA_KUBERNETES = {
|
|
|
1071
1071
|
}
|
|
1072
1072
|
|
|
1073
1073
|
_CONTEXT_CONFIG_SCHEMA_KUBERNETES = {
|
|
1074
|
+
# TODO(kevin): Remove 'networking' in v0.13.0.
|
|
1074
1075
|
'networking': {
|
|
1075
1076
|
'type': 'string',
|
|
1076
1077
|
'case_insensitive_enum': [
|
|
@@ -1331,10 +1332,15 @@ def get_config_schema():
|
|
|
1331
1332
|
'additionalProperties': False,
|
|
1332
1333
|
'properties': {
|
|
1333
1334
|
'allowed_contexts': {
|
|
1334
|
-
'
|
|
1335
|
-
|
|
1335
|
+
'oneOf': [{
|
|
1336
|
+
'type': 'array',
|
|
1337
|
+
'items': {
|
|
1338
|
+
'type': 'string',
|
|
1339
|
+
},
|
|
1340
|
+
}, {
|
|
1336
1341
|
'type': 'string',
|
|
1337
|
-
|
|
1342
|
+
'pattern': '^all$'
|
|
1343
|
+
}]
|
|
1338
1344
|
},
|
|
1339
1345
|
'context_configs': {
|
|
1340
1346
|
'type': 'object',
|
|
@@ -1656,10 +1662,15 @@ def get_config_schema():
|
|
|
1656
1662
|
'required': [],
|
|
1657
1663
|
'properties': {
|
|
1658
1664
|
'allowed_contexts': {
|
|
1659
|
-
'
|
|
1660
|
-
|
|
1665
|
+
'oneOf': [{
|
|
1666
|
+
'type': 'array',
|
|
1667
|
+
'items': {
|
|
1668
|
+
'type': 'string',
|
|
1669
|
+
},
|
|
1670
|
+
}, {
|
|
1661
1671
|
'type': 'string',
|
|
1662
|
-
|
|
1672
|
+
'pattern': '^all$'
|
|
1673
|
+
}]
|
|
1663
1674
|
},
|
|
1664
1675
|
'disabled': {
|
|
1665
1676
|
'type': 'boolean'
|
|
@@ -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.dev20251004
|
|
4
4
|
Summary: SkyPilot: Run AI on Any Infra — Unified, Faster, Cheaper.
|
|
5
5
|
Author: SkyPilot Team
|
|
6
6
|
License: Apache 2.0
|
|
@@ -43,6 +43,7 @@ Requires-Dist: packaging
|
|
|
43
43
|
Requires-Dist: psutil
|
|
44
44
|
Requires-Dist: pulp
|
|
45
45
|
Requires-Dist: pyyaml!=5.4.*,>3.13
|
|
46
|
+
Requires-Dist: ijson
|
|
46
47
|
Requires-Dist: requests
|
|
47
48
|
Requires-Dist: uvicorn[standard]<0.36.0,>=0.33.0
|
|
48
49
|
Requires-Dist: fastapi
|
|
@@ -154,51 +155,51 @@ Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "server"
|
|
|
154
155
|
Requires-Dist: aiosqlite; extra == "server"
|
|
155
156
|
Requires-Dist: greenlet; extra == "server"
|
|
156
157
|
Provides-Extra: all
|
|
157
|
-
Requires-Dist:
|
|
158
|
+
Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
|
|
159
|
+
Requires-Dist: cudo-compute>=0.1.10; extra == "all"
|
|
160
|
+
Requires-Dist: python-dateutil; extra == "all"
|
|
161
|
+
Requires-Dist: passlib; extra == "all"
|
|
162
|
+
Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "all"
|
|
163
|
+
Requires-Dist: azure-cli>=2.65.0; extra == "all"
|
|
164
|
+
Requires-Dist: aiosqlite; extra == "all"
|
|
165
|
+
Requires-Dist: msgraph-sdk; extra == "all"
|
|
166
|
+
Requires-Dist: docker; extra == "all"
|
|
167
|
+
Requires-Dist: awscli>=1.27.10; extra == "all"
|
|
168
|
+
Requires-Dist: boto3>=1.26.1; extra == "all"
|
|
169
|
+
Requires-Dist: azure-core>=1.24.0; extra == "all"
|
|
170
|
+
Requires-Dist: pyjwt; extra == "all"
|
|
171
|
+
Requires-Dist: ecsapi>=0.2.0; extra == "all"
|
|
172
|
+
Requires-Dist: ibm-cos-sdk; extra == "all"
|
|
173
|
+
Requires-Dist: colorama<0.4.5; extra == "all"
|
|
174
|
+
Requires-Dist: botocore>=1.29.10; extra == "all"
|
|
175
|
+
Requires-Dist: tomli; python_version < "3.11" and extra == "all"
|
|
158
176
|
Requires-Dist: azure-core>=1.31.0; extra == "all"
|
|
177
|
+
Requires-Dist: msrestazure; extra == "all"
|
|
178
|
+
Requires-Dist: casbin; extra == "all"
|
|
179
|
+
Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
|
|
180
|
+
Requires-Dist: ibm-cloud-sdk-core; extra == "all"
|
|
181
|
+
Requires-Dist: greenlet; extra == "all"
|
|
182
|
+
Requires-Dist: websockets; extra == "all"
|
|
183
|
+
Requires-Dist: nebius>=0.2.47; extra == "all"
|
|
184
|
+
Requires-Dist: anyio; extra == "all"
|
|
159
185
|
Requires-Dist: azure-identity>=1.19.0; extra == "all"
|
|
186
|
+
Requires-Dist: pyopenssl<24.3.0,>=23.2.0; extra == "all"
|
|
187
|
+
Requires-Dist: aiohttp; extra == "all"
|
|
188
|
+
Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
|
|
189
|
+
Requires-Dist: protobuf<7.0.0,>=5.26.1; extra == "all"
|
|
190
|
+
Requires-Dist: pydo>=0.3.0; extra == "all"
|
|
160
191
|
Requires-Dist: ray[default]>=2.6.1; extra == "all"
|
|
192
|
+
Requires-Dist: oci; extra == "all"
|
|
161
193
|
Requires-Dist: vastai-sdk>=0.1.12; extra == "all"
|
|
162
|
-
Requires-Dist:
|
|
163
|
-
Requires-Dist:
|
|
164
|
-
Requires-Dist:
|
|
194
|
+
Requires-Dist: sqlalchemy_adapter; extra == "all"
|
|
195
|
+
Requires-Dist: grpcio>=1.63.0; extra == "all"
|
|
196
|
+
Requires-Dist: ibm-vpc; extra == "all"
|
|
165
197
|
Requires-Dist: google-api-python-client>=2.69.0; extra == "all"
|
|
166
|
-
Requires-Dist: tomli; python_version < "3.11" and extra == "all"
|
|
167
|
-
Requires-Dist: ibm-platform-services>=0.48.0; extra == "all"
|
|
168
198
|
Requires-Dist: runpod>=1.6.1; extra == "all"
|
|
169
199
|
Requires-Dist: azure-mgmt-compute>=33.0.0; extra == "all"
|
|
170
|
-
Requires-Dist:
|
|
171
|
-
Requires-Dist: oci; extra == "all"
|
|
172
|
-
Requires-Dist: botocore>=1.29.10; extra == "all"
|
|
173
|
-
Requires-Dist: websockets; extra == "all"
|
|
174
|
-
Requires-Dist: pyopenssl<24.3.0,>=23.2.0; extra == "all"
|
|
175
|
-
Requires-Dist: msrestazure; extra == "all"
|
|
200
|
+
Requires-Dist: google-cloud-storage; extra == "all"
|
|
176
201
|
Requires-Dist: azure-common; extra == "all"
|
|
177
|
-
Requires-Dist: azure-mgmt-network>=27.0.0; extra == "all"
|
|
178
202
|
Requires-Dist: azure-storage-blob>=12.23.1; extra == "all"
|
|
179
|
-
Requires-Dist: sqlalchemy_adapter; extra == "all"
|
|
180
|
-
Requires-Dist: ibm-cos-sdk; extra == "all"
|
|
181
|
-
Requires-Dist: aiosqlite; extra == "all"
|
|
182
|
-
Requires-Dist: cudo-compute>=0.1.10; extra == "all"
|
|
183
|
-
Requires-Dist: ecsapi>=0.2.0; extra == "all"
|
|
184
|
-
Requires-Dist: awscli>=1.27.10; extra == "all"
|
|
185
|
-
Requires-Dist: pyjwt; extra == "all"
|
|
186
|
-
Requires-Dist: docker; extra == "all"
|
|
187
|
-
Requires-Dist: azure-core>=1.24.0; extra == "all"
|
|
188
|
-
Requires-Dist: aiohttp; extra == "all"
|
|
189
|
-
Requires-Dist: boto3>=1.26.1; extra == "all"
|
|
190
|
-
Requires-Dist: ibm-cloud-sdk-core; extra == "all"
|
|
191
|
-
Requires-Dist: google-cloud-storage; extra == "all"
|
|
192
|
-
Requires-Dist: ibm-vpc; extra == "all"
|
|
193
|
-
Requires-Dist: azure-cli>=2.65.0; extra == "all"
|
|
194
|
-
Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
|
|
195
|
-
Requires-Dist: anyio; extra == "all"
|
|
196
|
-
Requires-Dist: greenlet; extra == "all"
|
|
197
|
-
Requires-Dist: python-dateutil; extra == "all"
|
|
198
|
-
Requires-Dist: colorama<0.4.5; extra == "all"
|
|
199
|
-
Requires-Dist: grpcio>=1.63.0; extra == "all"
|
|
200
|
-
Requires-Dist: kubernetes!=32.0.0,>=20.0.0; extra == "all"
|
|
201
|
-
Requires-Dist: msgraph-sdk; extra == "all"
|
|
202
203
|
Dynamic: author
|
|
203
204
|
Dynamic: classifier
|
|
204
205
|
Dynamic: description
|
{skypilot_nightly-1.0.0.dev20251002.dist-info → skypilot_nightly-1.0.0.dev20251004.dist-info}/RECORD
RENAMED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
sky/__init__.py,sha256=
|
|
1
|
+
sky/__init__.py,sha256=L0yBv8PaJvH2AzggpxVD8al0C3HcGKgC1llP_LsiVcM,6713
|
|
2
2
|
sky/admin_policy.py,sha256=XdcJnYqmude-LGGop-8U-FeiJcqtfYsYtIy4rmoCJnM,9799
|
|
3
|
-
sky/authentication.py,sha256=
|
|
3
|
+
sky/authentication.py,sha256=P-bysZXiM4SBEnTcU-UqYoKSTX7Ylyij0DlitlCFBD8,24223
|
|
4
4
|
sky/check.py,sha256=hBDTkiADC3HFfO6brZV819FVWcdOs3aiuhB6x6mY4Q4,29728
|
|
5
5
|
sky/cli.py,sha256=VXIZryeTtJPYpPTBKymVPmuOCyh8knfWrq-qnkr6R-4,178
|
|
6
6
|
sky/cloud_stores.py,sha256=Ln5GBpel-sEs7rVx7bBrMkfLwA_bctI05Rox2uoz7Lo,26388
|
|
7
7
|
sky/core.py,sha256=VTHly9kJmwtmdiKwkrSrzuJ_8V8t-aI9weADd0SqDWA,58305
|
|
8
8
|
sky/dag.py,sha256=0ZpAEDXuIFo1SP7YJpF9vXiFxpRwqP8od-UXMg95td8,3929
|
|
9
9
|
sky/exceptions.py,sha256=IprWNwo6z5cHE-vTuQ5bMcjCfE2kgwZ3PRuawLPucXY,20466
|
|
10
|
-
sky/execution.py,sha256=
|
|
11
|
-
sky/global_user_state.py,sha256
|
|
10
|
+
sky/execution.py,sha256=fC5cX9ooO0aOLwUnIciWRxFH4xvpkVYqssrUaPVRU2M,36247
|
|
11
|
+
sky/global_user_state.py,sha256=-niIwLLe_hQYb3OvWYbkGLtyrvoYx16HMVeFR6IYnZs,103080
|
|
12
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
|
|
@@ -38,7 +38,7 @@ sky/adaptors/vsphere.py,sha256=zJP9SeObEoLrpgHW2VHvZE48EhgVf8GfAEIwBeaDMfM,2129
|
|
|
38
38
|
sky/backends/__init__.py,sha256=l1xXpkzPFMma0ZkT4GzVMu7uvgS3AsECg6zLc0S3JHQ,702
|
|
39
39
|
sky/backends/backend.py,sha256=6bvW1K1hVgxWiD4B8NiBD8OJ9ihfEdhyY5p60-3aQf4,8433
|
|
40
40
|
sky/backends/backend_utils.py,sha256=qbewVFNHQlinc4Wvn6ewocv3nash0X6RuDPOgyLXvFY,177499
|
|
41
|
-
sky/backends/cloud_vm_ray_backend.py,sha256=
|
|
41
|
+
sky/backends/cloud_vm_ray_backend.py,sha256=ljDqA_gaLJbRGn-5IVG8ZHwoRVf18usnNZQ60H8abXY,308039
|
|
42
42
|
sky/backends/docker_utils.py,sha256=_EhM6NStZDAwcegppQqExaB5iuSn1qL4xFFUqXAz2Uk,8392
|
|
43
43
|
sky/backends/local_docker_backend.py,sha256=EyLYwJSihhOEOwpgzXVtykjByEJuZOrqEr9N0cta3k4,17563
|
|
44
44
|
sky/backends/wheel_utils.py,sha256=DE71Muq5qLRhGpCVg1Rb6YOI7S_BzT8Hak27Pz8L4yw,12486
|
|
@@ -87,7 +87,7 @@ sky/client/sdk.py,sha256=IwdheaffnHmmjEDzvqhrDuH8jPBlCYMrBjLYa4RL2O0,107259
|
|
|
87
87
|
sky/client/sdk_async.py,sha256=8G_E9Dn4d80rV-wxRH4zZUXZGAm6rLw3C8PI07fXwwQ,31106
|
|
88
88
|
sky/client/service_account_auth.py,sha256=5jXk0G6ufuW-SHCO7BEHQeTO0_2a8KfFmA63auXFRj4,1529
|
|
89
89
|
sky/client/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
90
|
-
sky/client/cli/command.py,sha256=
|
|
90
|
+
sky/client/cli/command.py,sha256=d5KNHUG6ej8GwQb89WqiRi6T61FXdI6Rt-ovA-Z3CI0,250301
|
|
91
91
|
sky/client/cli/deprecation_utils.py,sha256=H_d5UyF2CekEoThduAzt5cihBO8hwKYMu0-Wqfbjv5E,3370
|
|
92
92
|
sky/client/cli/flags.py,sha256=lLXHooU4HEslbHJuGAiCrKYkJZx99hAKaJbstw7s1bc,12136
|
|
93
93
|
sky/client/cli/table_utils.py,sha256=HT_y__9_tZLKJ0aJu-hh67cu3NXfWDoiHir5fTmWaDw,10156
|
|
@@ -95,13 +95,13 @@ sky/clouds/__init__.py,sha256=hX6oZM4U6WuXQclg9-8mP2OAeFbzTbaVuPzJxqudKIc,1750
|
|
|
95
95
|
sky/clouds/aws.py,sha256=PrvbWuSAkPC18HsLVHx8NBJQiduz32NpDm1XXr6NPLo,63737
|
|
96
96
|
sky/clouds/azure.py,sha256=qnabVjfS3em-TvxOIqZ6mMiipnt51MBVf7R0pnyB7bo,33233
|
|
97
97
|
sky/clouds/cloud.py,sha256=2GlEvP8L1GueV8K_02zHWVTkA0A7sOmn1t6iMlEUSus,40160
|
|
98
|
-
sky/clouds/cudo.py,sha256=
|
|
98
|
+
sky/clouds/cudo.py,sha256=s1rvATmLCIqSIXCZNTM7sazJDSXWHZWZY161_n-WX18,14113
|
|
99
99
|
sky/clouds/do.py,sha256=a3Lk3nKLaYt97AV9cA1v50pNfKUTJF0rDg16rnnqYqQ,12618
|
|
100
100
|
sky/clouds/fluidstack.py,sha256=AbVYW2iwVVebIn0dWdSSsdItILHRLG3VVU3N2-n1I9c,13601
|
|
101
101
|
sky/clouds/gcp.py,sha256=LteGFf8kxmVoWyzM1YTNDh3xOrsuVJFB2-E7KNJ_Yz8,68861
|
|
102
102
|
sky/clouds/hyperbolic.py,sha256=bmV4NFpUPgzR0ownavHHVqyw26EtOgQ_ZB6SlxlgmJw,11999
|
|
103
103
|
sky/clouds/ibm.py,sha256=qMbOkTMJzPn2HDH9cie9zERvukRZbZoueLIaufCECAw,22860
|
|
104
|
-
sky/clouds/kubernetes.py,sha256=
|
|
104
|
+
sky/clouds/kubernetes.py,sha256=AWMc9doP4sgR-_LGrxWlQeidK04gsowSck9beHMlvbc,56154
|
|
105
105
|
sky/clouds/lambda_cloud.py,sha256=aRW4GwLjaFFR6_bPbBr9o8z-SKHtuP18BAVwoPuDtBE,13553
|
|
106
106
|
sky/clouds/nebius.py,sha256=onEFMQEKfgFEzaeGkejlOEDR6hcBPQaxDO5rrtQ7WFU,21663
|
|
107
107
|
sky/clouds/oci.py,sha256=Is9MP3EBoZ3zvqNTzcb57dXRinpSMp_R_CiazEu7rYM,28557
|
|
@@ -119,25 +119,25 @@ sky/clouds/utils/azure_utils.py,sha256=NToRBnhEyuUvb-nBnsKTxjhOBRkMcrelL8LK4w6s4
|
|
|
119
119
|
sky/clouds/utils/gcp_utils.py,sha256=09MF4Vx0EW7S-GXGpyxpl2aQlHrqeu9ioV0nyionAyk,9890
|
|
120
120
|
sky/clouds/utils/oci_utils.py,sha256=TFqAqRLggg4Z0bhxrrq8nouSSomZy-ub1frHXEkud2M,7302
|
|
121
121
|
sky/clouds/utils/scp_utils.py,sha256=VGuccVO5uFGr8-yolWSoYrgr11z6cIeDBGcqkBzAyOs,18409
|
|
122
|
-
sky/dashboard/out/404.html,sha256=
|
|
123
|
-
sky/dashboard/out/clusters.html,sha256=
|
|
124
|
-
sky/dashboard/out/config.html,sha256=
|
|
122
|
+
sky/dashboard/out/404.html,sha256=635si3SprNcg6Yoi5xqu4xu3zQwSJUw42LvweTC1VDM,1423
|
|
123
|
+
sky/dashboard/out/clusters.html,sha256=Zb81kEfi3vFXRDahGu92Y6rfHX5e-Ko6Gsngq5f8VR4,1418
|
|
124
|
+
sky/dashboard/out/config.html,sha256=i1wEuYxNHtMX84N0NuC2K7QBzk-iZtxlSC6j0z7r72Y,1414
|
|
125
125
|
sky/dashboard/out/favicon.ico,sha256=XilUZZglAl_1zRsg85QsbQgmQAzGPQjcUIJ-A3AzYn8,93590
|
|
126
|
-
sky/dashboard/out/index.html,sha256=
|
|
127
|
-
sky/dashboard/out/infra.html,sha256=
|
|
128
|
-
sky/dashboard/out/jobs.html,sha256=
|
|
126
|
+
sky/dashboard/out/index.html,sha256=_bId_gqYGpYJdNFyh2QJ0PjHzVha2xASIJc_VRZSbMA,1407
|
|
127
|
+
sky/dashboard/out/infra.html,sha256=cTLx-yP-PI_H4iv6NTNmA61uH8QMQJ7obSUHExLqsLk,1412
|
|
128
|
+
sky/dashboard/out/jobs.html,sha256=O6A2Xn1ZLr5YbYee2qNVJLVb9jsM_bxCqURX0pM_XQQ,1410
|
|
129
129
|
sky/dashboard/out/skypilot.svg,sha256=c0iRtlfLlaUm2p0rG9NFmo5FN0Qhf3pq5Xph-AeMPJw,5064
|
|
130
|
-
sky/dashboard/out/users.html,sha256=
|
|
131
|
-
sky/dashboard/out/volumes.html,sha256=
|
|
132
|
-
sky/dashboard/out/workspaces.html,sha256=
|
|
133
|
-
sky/dashboard/out/_next/static/
|
|
134
|
-
sky/dashboard/out/_next/static/
|
|
130
|
+
sky/dashboard/out/users.html,sha256=r_ogD1QI2ih8RQBLnf6kDGgGCn2rnAwlEAlpHZN6hqg,1412
|
|
131
|
+
sky/dashboard/out/volumes.html,sha256=1oUN4a0WPo6VgKiAO9uvArcJvKGuWWFF5AdvfWPPptc,1416
|
|
132
|
+
sky/dashboard/out/workspaces.html,sha256=xFi-LsWJUNqxxMCPPOKZjBCmQH6McA3gTJMstxM1gxM,1422
|
|
133
|
+
sky/dashboard/out/_next/static/KL03GEega4QqDqTOMtA_w/_buildManifest.js,sha256=fU6juI23eV2o12c76krAvb_jtylYA6BZxZI6dTzZ_Es,2428
|
|
134
|
+
sky/dashboard/out/_next/static/KL03GEega4QqDqTOMtA_w/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
|
135
135
|
sky/dashboard/out/_next/static/chunks/1121-d0782b9251f0fcd3.js,sha256=jIvnDxaTleAz3HdZK9-RScSB0ZMg8-D63KQmn8avaHI,8883
|
|
136
136
|
sky/dashboard/out/_next/static/chunks/1141-159df2d4c441a9d1.js,sha256=kdYh_Ek9hdib5emC7Iezojh3qASBnOIUHH5zX_ScR0U,17355
|
|
137
137
|
sky/dashboard/out/_next/static/chunks/1272-1ef0bf0237faccdb.js,sha256=VJ6y-Z6Eg2T93hQIRfWAbjAkQ7nQhglmIaVbEpKSILY,38451
|
|
138
138
|
sky/dashboard/out/_next/static/chunks/1836-37fede578e2da5f8.js,sha256=2ibdKVUjO2N62T4dtfY0xsRFwG-IJh41sK450Dv0_48,10554
|
|
139
139
|
sky/dashboard/out/_next/static/chunks/2350.fab69e61bac57b23.js,sha256=TQCHO4AUL9MZo1e_8GOiL8y6vjQpj5tdXZ8oCKwM1LA,271
|
|
140
|
-
sky/dashboard/out/_next/static/chunks/3015-
|
|
140
|
+
sky/dashboard/out/_next/static/chunks/3015-8d748834fcc60b46.js,sha256=tj3H7To9B1N0JYiKiOjl-9n6BxWftbuDIuN7kKPtzrg,39407
|
|
141
141
|
sky/dashboard/out/_next/static/chunks/3294.93d9336bdc032b3a.js,sha256=x3dU97W3J2NHFar0SLASawUOTFcMAA7-l37BP7CQF_Y,43099
|
|
142
142
|
sky/dashboard/out/_next/static/chunks/3785.0fa442e16dd3f00e.js,sha256=4jP00x0jORTUAIGFUlQu_Ut-T07_OmfH46D5Nut_crQ,4438
|
|
143
143
|
sky/dashboard/out/_next/static/chunks/3850-ff4a9a69d978632b.js,sha256=XphBY9psNzmvGD28zgDunQEb-TX0_eOVaElmcuOjD1g,7455
|
|
@@ -159,7 +159,7 @@ sky/dashboard/out/_next/static/chunks/7325.b4bc99ce0892dcd5.js,sha256=5x42A-PEZA
|
|
|
159
159
|
sky/dashboard/out/_next/static/chunks/7411-b15471acd2cba716.js,sha256=Dnmr9e-yZQbnkjwzqIZU3aK-3u1Tqr8STF-ODYWLkaw,13304
|
|
160
160
|
sky/dashboard/out/_next/static/chunks/754-d0da8ab45f9509e9.js,sha256=R6UUmK1P1PfVx9zOU0jlBsVSk5ZchuPwWObAeVkkhU0,785694
|
|
161
161
|
sky/dashboard/out/_next/static/chunks/7669.1f5d9a402bf5cc42.js,sha256=FbppLXkHKPxzVKrJg15FwCoqLU18yn5jBgYgDkjqDGM,52179
|
|
162
|
-
sky/dashboard/out/_next/static/chunks/8969-
|
|
162
|
+
sky/dashboard/out/_next/static/chunks/8969-66237729cdf9749e.js,sha256=roQUWHfOmYlOYM3DTfaMCjFmm8QQWQx7sN1VodZFeso,13915
|
|
163
163
|
sky/dashboard/out/_next/static/chunks/9025.c12318fb6a1a9093.js,sha256=1Txv8nMuBYtB0UoWdwmFbkA2iB85jgKB1EJJrE1ETDo,10605
|
|
164
164
|
sky/dashboard/out/_next/static/chunks/9037-d0c00018a5ba198c.js,sha256=6P21MKO405fAX4VTgiwOI6OMzey3HW2TfPvOMUMmUVQ,19843
|
|
165
165
|
sky/dashboard/out/_next/static/chunks/fd9d1056-86323a29a8f7e46a.js,sha256=2lquiZSfbI-gX4j4TW4JSMLL_D5ShqwydgWpFyXrTy8,172834
|
|
@@ -167,7 +167,7 @@ sky/dashboard/out/_next/static/chunks/framework-cf60a09ccd051a10.js,sha256=_Qbam
|
|
|
167
167
|
sky/dashboard/out/_next/static/chunks/main-app-587214043926b3cc.js,sha256=t7glRfataAjNw691Wni-ZU4a3BsygRzPKoI8NOm-lsY,116244
|
|
168
168
|
sky/dashboard/out/_next/static/chunks/main-f15ccb73239a3bf1.js,sha256=jxOPLDVX3rkMc_jvGx2a-N2v6mvfOa8O6V0o-sLT0tI,110208
|
|
169
169
|
sky/dashboard/out/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js,sha256=6QPOwdWeAVe8x-SsiDrm-Ga6u2DkqgG5SFqglrlyIgA,91381
|
|
170
|
-
sky/dashboard/out/_next/static/chunks/webpack-
|
|
170
|
+
sky/dashboard/out/_next/static/chunks/webpack-3286453d56f3c0a0.js,sha256=72ni9jqp5FlgH5VNyLyd1bcuo5siUa3kZe3w02tswSg,4742
|
|
171
171
|
sky/dashboard/out/_next/static/chunks/pages/_app-ce361c6959bc2001.js,sha256=mllo4Yasw61zRtEO49uE_MrAutg9josSJShD0DNSjf0,95518
|
|
172
172
|
sky/dashboard/out/_next/static/chunks/pages/_error-c66a4e8afc46f17b.js,sha256=vjERjtMAbVk-19LyPf1Jc-H6TMcrSznSz6brzNqbqf8,253
|
|
173
173
|
sky/dashboard/out/_next/static/chunks/pages/clusters-469814d711d63b1b.js,sha256=p8CQtv5n745WbV7QdyCapmglI2s_2UBB-f_KZE4RAZg,879
|
|
@@ -179,39 +179,39 @@ sky/dashboard/out/_next/static/chunks/pages/users-018bf31cda52e11b.js,sha256=mZu
|
|
|
179
179
|
sky/dashboard/out/_next/static/chunks/pages/volumes-739726d6b823f532.js,sha256=URJ4PMHh15XCXB6os2a7ymR3mG3MfTNrKyizYEhW2OE,836
|
|
180
180
|
sky/dashboard/out/_next/static/chunks/pages/workspaces-7528cc0ef8c522c5.js,sha256=y_qEXM9YPRja20D8IVLj8mgIEHQPQr2Le733bVrsXJw,863
|
|
181
181
|
sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]-e052384df65ef200.js,sha256=i9XnmK5y5f83bYYZIAdMHPsPixB5FcTgOPKtIl3ADFM,19942
|
|
182
|
-
sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]/[job]-
|
|
182
|
+
sky/dashboard/out/_next/static/chunks/pages/clusters/[cluster]/[job]-72794fc3fcdd517a.js,sha256=4_DRvO8RVWAEVGMp2CXJTqPcxzHcSt-cDa0Ay_9ntdE,26590
|
|
183
183
|
sky/dashboard/out/_next/static/chunks/pages/infra/[context]-6563820e094f68ca.js,sha256=P3fWbG3DX-Q1SusyuaCuJILvs9suIxNsdo1SRAenZpc,847
|
|
184
184
|
sky/dashboard/out/_next/static/chunks/pages/jobs/[job]-dd64309c3fe67ed2.js,sha256=pDCMgJauG-gMgWzCSTF3CBcc_WduZw75NhuyRBbm8bg,29203
|
|
185
185
|
sky/dashboard/out/_next/static/chunks/pages/jobs/pools/[pool]-509b2977a6373bf6.js,sha256=mCtSCJGhIG3YzwZnne61lhyfTy-Cmy80wTX0GThDWNo,25754
|
|
186
186
|
sky/dashboard/out/_next/static/chunks/pages/workspace/new-3f88a1c7e86a3f86.js,sha256=83s5N5CZwIaRcmYMfqn2we60n2VRmgFw6Tbx18b8-e0,762
|
|
187
187
|
sky/dashboard/out/_next/static/chunks/pages/workspaces/[name]-af76bb06dbb3954f.js,sha256=cGCpDszMI6ckUHVelwAh9ZVk1erfz_UXSLz9GCqGUAE,1495
|
|
188
188
|
sky/dashboard/out/_next/static/css/4614e06482d7309e.css,sha256=nk6GriyGVd1aGXrLd7BcMibnN4v0z-Q_mXGxrHFWqrE,56126
|
|
189
|
-
sky/dashboard/out/clusters/[cluster].html,sha256=
|
|
190
|
-
sky/dashboard/out/clusters/[cluster]/[job].html,sha256=
|
|
191
|
-
sky/dashboard/out/infra/[context].html,sha256=
|
|
192
|
-
sky/dashboard/out/jobs/[job].html,sha256=
|
|
193
|
-
sky/dashboard/out/jobs/pools/[pool].html,sha256=
|
|
189
|
+
sky/dashboard/out/clusters/[cluster].html,sha256=KHAlLKMIe2wbe6ucmhH3LXrj_ImIKlfNGk7R-4Pt0zs,2936
|
|
190
|
+
sky/dashboard/out/clusters/[cluster]/[job].html,sha256=0ZiEHodzad8oGbacKtHnIQAz9na8dT6t6csVVPpZUJc,2073
|
|
191
|
+
sky/dashboard/out/infra/[context].html,sha256=pL3sDPP4Obcy7U25w5UW0dUIi5Xn_7LfyuOIAhjvLXk,1436
|
|
192
|
+
sky/dashboard/out/jobs/[job].html,sha256=lgNy9zvHJ0IZFKRxBTsbgBzMlpt20cP8sOnXPW8WzKw,2304
|
|
193
|
+
sky/dashboard/out/jobs/pools/[pool].html,sha256=eqT7g5S9G2Sff1u4wp8McAvmCrsi8x1FA2T5h99djLQ,2142
|
|
194
194
|
sky/dashboard/out/videos/cursor-small.mp4,sha256=8tRdp1vjawOrXUar1cfjOc-nkaKmcwCPZx_LO0XlCvQ,203285
|
|
195
|
-
sky/dashboard/out/workspace/new.html,sha256=
|
|
196
|
-
sky/dashboard/out/workspaces/[name].html,sha256=
|
|
195
|
+
sky/dashboard/out/workspace/new.html,sha256=HibeRI1CAtJsV6ZfJz39RYQmb8VWfYyisCruHkT1goc,1428
|
|
196
|
+
sky/dashboard/out/workspaces/[name].html,sha256=E-ec2bCuX7-6QDPb2HwhkP5SX8MXFe2ACjgISXLSX-A,2759
|
|
197
197
|
sky/data/__init__.py,sha256=Nhaf1NURisXpZuwWANa2IuCyppIuc720FRwqSE2oEwY,184
|
|
198
198
|
sky/data/data_transfer.py,sha256=N8b0CQebDuHieXjvEVwlYmK6DbQxUGG1RQJEyTbh3dU,12040
|
|
199
199
|
sky/data/data_utils.py,sha256=AjEA_JRjo9NBMlv-Lq5iV4lBED_YZ1VqBR9pG6fGVWE,35179
|
|
200
200
|
sky/data/mounting_utils.py,sha256=QZjcSNB3HiQgzIodbx0I-IyKaW_XUzUuNTpgJAZAfEk,24594
|
|
201
201
|
sky/data/storage.py,sha256=y6cIgfmhgL8ldjHR7whg2q71TzFQ3Lxiyv6d3anC62I,209290
|
|
202
|
-
sky/data/storage_utils.py,sha256=
|
|
202
|
+
sky/data/storage_utils.py,sha256=bqCE7WQVOpFMxqVRkxee4oLn-iImh4ZL8qB5IicXh0w,14230
|
|
203
203
|
sky/jobs/__init__.py,sha256=BiABNdlab7xZDOv4C34kc1XuxG6C_Ip7Q96mT2iCnIg,1686
|
|
204
204
|
sky/jobs/constants.py,sha256=74kv_hCMbzDCYIXqa8Tc2BmECweNZIO2s5mP0IDunmg,3500
|
|
205
205
|
sky/jobs/controller.py,sha256=SymwS24D0nLuVJ_yBgF6055TQptglDiOdssCPNWHy-g,57020
|
|
206
|
-
sky/jobs/recovery_strategy.py,sha256=
|
|
206
|
+
sky/jobs/recovery_strategy.py,sha256=beCgK7eiqs4RUhMFrRfTsE18OsG0f_W7ds7kzhvQSUI,39398
|
|
207
207
|
sky/jobs/scheduler.py,sha256=rUait5vQoIxAMuxWDRkR6DtFpmmVqQHxECHyhhrY9HI,16564
|
|
208
|
-
sky/jobs/state.py,sha256=
|
|
209
|
-
sky/jobs/utils.py,sha256=
|
|
208
|
+
sky/jobs/state.py,sha256=GarWqeMip2dCHXDLPCTDpXnfrS5kiOanJ3wi8gpo6MA,85229
|
|
209
|
+
sky/jobs/utils.py,sha256=qdwW8KomRaZS3d4FjU7gMkRULfcDT64BbpzUKap-tQs,94601
|
|
210
210
|
sky/jobs/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
211
211
|
sky/jobs/client/sdk.py,sha256=HQdnZtK-yWXvOX5XEVZU145vIzfCvYZFtL6uzQEm6-c,17133
|
|
212
212
|
sky/jobs/client/sdk_async.py,sha256=hsyPshdpbKG0RUzw2ntDeAJAkOIl-O9WDoSREV_km3o,4875
|
|
213
213
|
sky/jobs/server/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
214
|
-
sky/jobs/server/core.py,sha256=
|
|
214
|
+
sky/jobs/server/core.py,sha256=ldGh0b_jx1Jw-KTUdQ84RWsTxEDhgbWTp_a_8OCwiwk,48079
|
|
215
215
|
sky/jobs/server/server.py,sha256=oCFOE58oSXspgxIj4BaPIkqTrH0SUzgH0c__OG4Wc60,8894
|
|
216
216
|
sky/jobs/server/utils.py,sha256=rI_fVyEJhHjuapcB6JefkKgRuT_VeLiubAixsPo5jj0,5023
|
|
217
217
|
sky/logs/__init__.py,sha256=zW4gAEvWDz5S53FlLp3krAuKrmTSJ0e3kZDnhxSbW4E,722
|
|
@@ -263,14 +263,14 @@ sky/provision/hyperbolic/config.py,sha256=N7ekDE57bc8GPQc4zabQ1f9y95syadpADRRH6g
|
|
|
263
263
|
sky/provision/hyperbolic/instance.py,sha256=reVLEEnzxD4NGpRIf1MOOs0vr7cFO7rJVRMCn7LBiAg,17307
|
|
264
264
|
sky/provision/hyperbolic/utils.py,sha256=NCa3ULvIi64-YHYoOnPd3SShlJ6VuQsEwaTBqHFrqpg,14953
|
|
265
265
|
sky/provision/kubernetes/__init__.py,sha256=xUHCbN5fkbnM5_E1trFHHOndTsvEwBdi-8qvvpK92io,1030
|
|
266
|
-
sky/provision/kubernetes/config.py,sha256=
|
|
266
|
+
sky/provision/kubernetes/config.py,sha256=iY6WfgmRK_z5mzHGe_8hQS2Op3qKmZ18UY2MgArIGRE,27782
|
|
267
267
|
sky/provision/kubernetes/constants.py,sha256=vZJQsAVjAgwsOskB48tIFSXtNw7IFnJOQE_H6N-vOYQ,1130
|
|
268
|
-
sky/provision/kubernetes/instance.py,sha256=
|
|
268
|
+
sky/provision/kubernetes/instance.py,sha256=Ii-aeRoXKrscmeGfS_AZcMaaA74vJ2aKvD1rBaTowIg,76175
|
|
269
269
|
sky/provision/kubernetes/network.py,sha256=Dgj8u7IQBHKHt-mSDhYzue1wfDk96FR_8fO89TwuZ2E,12846
|
|
270
|
-
sky/provision/kubernetes/network_utils.py,sha256=
|
|
271
|
-
sky/provision/kubernetes/utils.py,sha256=
|
|
270
|
+
sky/provision/kubernetes/network_utils.py,sha256=qFiACDq4S1WKMyVbxhGax-K2SJM-4viC8CyEzwvXt6c,11480
|
|
271
|
+
sky/provision/kubernetes/utils.py,sha256=4MC-PlpezlngMOxS3JXkwP7vd1rn8rSsnOC25rbSTOk,151930
|
|
272
272
|
sky/provision/kubernetes/volume.py,sha256=b5mozvUCw9rsGxiUS9LxR-MyELK-EQHYglJkGTFNobY,11473
|
|
273
|
-
sky/provision/kubernetes/manifests/fusermount-server-daemonset.yaml,sha256=
|
|
273
|
+
sky/provision/kubernetes/manifests/fusermount-server-daemonset.yaml,sha256=5oDGZUsDpO1B9E9JZptkakdIy7LWVR_CqHFFZpMulJE,1270
|
|
274
274
|
sky/provision/lambda_cloud/__init__.py,sha256=6EEvSgtUeEiup9ivIFevHmgv0GqleroO2X0K7TRa2nE,612
|
|
275
275
|
sky/provision/lambda_cloud/config.py,sha256=jq1iLzp4Up61r4JGxvtpVbJlgXnea3LHYQhCQyyl7ik,272
|
|
276
276
|
sky/provision/lambda_cloud/instance.py,sha256=DVHeA1jVKJmcDa64TywbJsXNehsl5Vm9es1l0wnEsfY,12977
|
|
@@ -387,14 +387,15 @@ sky/server/constants.py,sha256=9hLNn1FsBegnMxoQzYfgHIVPIqon7KufzG4G9yqhS-o,2456
|
|
|
387
387
|
sky/server/daemons.py,sha256=XQdqRMVyxyqS9fY2HLqW_cxVR6qgqoQ7irPvRYWvG7E,9092
|
|
388
388
|
sky/server/metrics.py,sha256=Aa7ZIPGpK3IZXicliX32_EIjY6ejcR_kr8C1p1yvuC8,5696
|
|
389
389
|
sky/server/rest.py,sha256=295lCvmAJhGTaal2P00ab6z0fxGj4KfxdI94E-2AhQA,14414
|
|
390
|
-
sky/server/server.py,sha256=
|
|
390
|
+
sky/server/server.py,sha256=t99AzU0BWFGoOsDjh2dWVvi_eR3wzEhVhjHF_ufHp-8,83127
|
|
391
391
|
sky/server/state.py,sha256=YbVOMJ1JipQQv17gLIGyiGN7MKfnP83qlUa5MB1z0Yk,747
|
|
392
392
|
sky/server/stream_utils.py,sha256=b8gdWTsvxTnm779mMSdgb1LR_giVP9peKJIn8KIPJKU,10673
|
|
393
393
|
sky/server/uvicorn.py,sha256=lJROnpJqoZr59zGwYa_pUniV7rEwmZn0PV4t-YYY-yo,11832
|
|
394
394
|
sky/server/versions.py,sha256=3atZzUa7y1XeKNcrfVxKWAo_5ZyCOnbY7DKpIqed7Do,10011
|
|
395
395
|
sky/server/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
396
396
|
sky/server/auth/authn.py,sha256=zvabLsEAf9Ql6AbXJuWZ54uaiOr1mwFGGvQn84v66H4,2037
|
|
397
|
-
sky/server/auth/
|
|
397
|
+
sky/server/auth/loopback.py,sha256=Vk8iaatXBrXJLBsng9StK9kgwcJnMFqbc35exX5Aikc,1069
|
|
398
|
+
sky/server/auth/oauth2_proxy.py,sha256=4iRhSfJuvjb4gDXk3xNIHFrgTPLkZo61znX5YRRkOC0,9374
|
|
398
399
|
sky/server/html/log.html,sha256=TSGZktua9Ysl_ysg3w60rjxAxhH61AJnsYDHdtqrjmI,6929
|
|
399
400
|
sky/server/html/token_page.html,sha256=eUndS5u1foL9vaWGPRTLMt7lCzD1g0wYJ2v_EeeFzlc,7046
|
|
400
401
|
sky/server/requests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -412,7 +413,7 @@ sky/server/requests/serializers/decoders.py,sha256=4V3muIPH_QU_CfGyoHD99IXuJbKZK
|
|
|
412
413
|
sky/server/requests/serializers/encoders.py,sha256=kEGUqUDx5mpc2DBxhzcGrSP325R1aMPg5NXUVScXfUs,8425
|
|
413
414
|
sky/setup_files/MANIFEST.in,sha256=4gbgHHwSdP6BbMJv5XOt-2K6wUVWF_T9CGsdESvh918,776
|
|
414
415
|
sky/setup_files/alembic.ini,sha256=854_UKvCaFmZ8vI16tSHbGgP9IMFQ42Td6c9Zmn2Oxs,5079
|
|
415
|
-
sky/setup_files/dependencies.py,sha256=
|
|
416
|
+
sky/setup_files/dependencies.py,sha256=cmVNmYvorzuw2yyOeWQe7Sco7JDky6hYbcKgbKQbosU,8901
|
|
416
417
|
sky/setup_files/setup.py,sha256=4M8u9Y4wwmFCJk-EfsnMWtpNq7ynzqbjdVTKW3w5GXA,7820
|
|
417
418
|
sky/skylet/LICENSE,sha256=BnFrJSvUFpMUoH5mOpWnEvaC5R6Uux8W6WXgrte8iYg,12381
|
|
418
419
|
sky/skylet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -463,8 +464,7 @@ sky/templates/jobs-controller.yaml.j2,sha256=Yif85ihH1Q7YziQ55-KkLaBkkbZUrtE5lmQ
|
|
|
463
464
|
sky/templates/kubernetes-ingress.yml.j2,sha256=73iDklVDWBMbItg0IexCa6_ClXPJOxw7PWz3leku4nE,1340
|
|
464
465
|
sky/templates/kubernetes-loadbalancer.yml.j2,sha256=Dc44sC_-EwDG69eZoD4pkLKQjzxH_qrlhd-rZ2gePJc,804
|
|
465
466
|
sky/templates/kubernetes-port-forward-proxy-command.sh,sha256=iw7mypHszg6Ggq9MbyiYMFOkSlXaQZulaxqC5IWYGCc,3381
|
|
466
|
-
sky/templates/kubernetes-ray.yml.j2,sha256=
|
|
467
|
-
sky/templates/kubernetes-ssh-jump.yml.j2,sha256=k5W5sOIMppU7dDkJMwPlqsUcb92y7L5_TVG3hkgMy8M,2747
|
|
467
|
+
sky/templates/kubernetes-ray.yml.j2,sha256=BJZFjOtSagK3us7D0uqtqmfPGHhmPGfsFnxTMIk2PSk,64381
|
|
468
468
|
sky/templates/lambda-ray.yml.j2,sha256=PbUjxrGhyxhXxL2cmONAI_PRsua3I3Xr5V8yoEy7H6c,4760
|
|
469
469
|
sky/templates/local-ray.yml.j2,sha256=FNHeyHF6nW9nU9QLIZceUWfvrFTTcO51KqhTnYCEFaA,1185
|
|
470
470
|
sky/templates/nebius-ray.yml.j2,sha256=W1y4Mcg3yrBiaKFoKKCO_T2tU3DTqes216vKX4dspyk,6782
|
|
@@ -500,17 +500,17 @@ sky/utils/command_runner.pyi,sha256=FE8lFyxsh6528uSeSS38yk9Yu9HSJ8LFJT0ylMWNR6k,
|
|
|
500
500
|
sky/utils/common.py,sha256=yJc110y8rwcBIKEJgb8kUD4e1OeolFEVtonwmqtAxCM,2729
|
|
501
501
|
sky/utils/common_utils.py,sha256=5_dNGrFtvylmi38HTMLSgxHLbeBgNCr9UH8BDSUbQeI,39053
|
|
502
502
|
sky/utils/config_utils.py,sha256=agfDWJi79DH5XKD_GBvUwhRwmB0-ZkYbKCjcEgV6gP4,13861
|
|
503
|
-
sky/utils/context.py,sha256=
|
|
503
|
+
sky/utils/context.py,sha256=N_kxD3NXBGRqzb8QsSkrGLvqBt_dD7bIkyerGIOJEcE,13394
|
|
504
504
|
sky/utils/context_utils.py,sha256=mnJvU65Z-GYZ3G_m-bRGZ7vVExt1MbMwVLwUCfR1Z1Y,7035
|
|
505
505
|
sky/utils/control_master_utils.py,sha256=iD4M0onjYOdZ2RuxjwMBl4KhafHXJzuHjvqlBUnu-VE,1450
|
|
506
506
|
sky/utils/controller_utils.py,sha256=Ci8kA00qvBsjeKxTyFcxPhamf1e7F9S0LuggBA6to0o,59951
|
|
507
507
|
sky/utils/dag_utils.py,sha256=kPakbl9CVo1RECow7QHnp8Am-qLiTUWEcIPIUBKN1JQ,8563
|
|
508
508
|
sky/utils/directory_utils.py,sha256=hpvl7i5AFMffbg9TuIu1iRO8RqtLXMbSU_COkSf1Exc,327
|
|
509
|
-
sky/utils/env_options.py,sha256=
|
|
509
|
+
sky/utils/env_options.py,sha256=AhC3WEHGwOhW7YYpL1klm3wFChp_YMBAg52KHCZhAs0,2302
|
|
510
510
|
sky/utils/git.py,sha256=6TcTSHF7ZKkvY6hWfaoBxYNhhgwPbzjLzsAZMDyPQ5M,22526
|
|
511
511
|
sky/utils/git_clone.sh,sha256=hXOz7i1MCYl2IwMdKnFYhinhh8Jaf5a1Qwd65cePQYc,17790
|
|
512
512
|
sky/utils/infra_utils.py,sha256=WkkB4Hj6CX-3eV029fPYqydNVyFZ8ZwRAVA_GCLJ9QU,6981
|
|
513
|
-
sky/utils/kubernetes_enums.py,sha256=
|
|
513
|
+
sky/utils/kubernetes_enums.py,sha256=C2AZLqUvYOUg9ligoV2IV8xIvKa34p3ZaoM_1HIWdRs,1053
|
|
514
514
|
sky/utils/lock_events.py,sha256=qX4-Nlzm4S9bTD4e2eg2Vgn4AOlTjy7rhzLS_0B1IdA,2827
|
|
515
515
|
sky/utils/locks.py,sha256=qGxjEJXOyobhiHkeEn1LEFM2mBDhkWUhleLvWMoYb2A,12144
|
|
516
516
|
sky/utils/log_utils.py,sha256=RB5n58CAWmVepd_RAf-mjL2EViBFbtkPtSB5jJT6pLY,29684
|
|
@@ -521,7 +521,7 @@ sky/utils/resource_checker.py,sha256=uM6erLKU73k_tfuldh_kCj9gxhjuy0khI4TMSC6aCes
|
|
|
521
521
|
sky/utils/resources_utils.py,sha256=3wnzmSIldFS5NmHTx6r2viS8zaP1q20noQolgQqucUU,16722
|
|
522
522
|
sky/utils/rich_console_utils.py,sha256=wPvAlshaFHuMZSjiDnaK3OSBppZLBjAn-lj7AvxNBQk,553
|
|
523
523
|
sky/utils/rich_utils.py,sha256=Zb48ZeOX58WG2me48XYk2VO4N_BXL154xJwqlHu0zw8,20031
|
|
524
|
-
sky/utils/schemas.py,sha256=
|
|
524
|
+
sky/utils/schemas.py,sha256=dtyKZjv1-t010khv6yf6ckJ_JaOzbfUXhE6eUTBrsrM,58042
|
|
525
525
|
sky/utils/serialize_utils.py,sha256=nn2x-8cTZeiVr5cgaBpLOGGpSFtms62QAJFyxs_bodI,630
|
|
526
526
|
sky/utils/status_lib.py,sha256=QGkd6COD1GX1h30Mk9RMUdyeUOMJs5971GkxTcFgdsU,1705
|
|
527
527
|
sky/utils/subprocess_utils.py,sha256=0EcUxvHHUdGQS7HBVtDg_vibMbZRjC8oH_M08wEmHpY,15991
|
|
@@ -553,7 +553,6 @@ sky/utils/kubernetes/k8s_gpu_labeler_setup.yaml,sha256=VLKT2KKimZu1GDg_4AIlIt488
|
|
|
553
553
|
sky/utils/kubernetes/kubernetes_deploy_utils.py,sha256=B8pjaEl1JE9uAEmIqY1kfVj7vbuztWPa8Xacdbp58sU,22142
|
|
554
554
|
sky/utils/kubernetes/rsync_helper.sh,sha256=MT29sI5iD2QxYlXFwrN16oq0Er4TPFQVs4Z4A3U4a7Q,2483
|
|
555
555
|
sky/utils/kubernetes/ssh-tunnel.sh,sha256=60eHKF7phJe9pFEkGlqdwWzI80tpog8QCkL7fAbIAic,12143
|
|
556
|
-
sky/utils/kubernetes/ssh_jump_lifecycle_manager.py,sha256=Kq1MDygF2IxFmu9FXpCxqucXLmeUrvs6OtRij6XTQbo,6554
|
|
557
556
|
sky/utils/kubernetes/ssh_utils.py,sha256=hPV2gU6j3j1aVf8kFvkux_KE88R5j8-JUDEopG6v70o,9046
|
|
558
557
|
sky/volumes/__init__.py,sha256=oy7JTgRXxkK2nOOF-OWivr0xeSL1-Syz703kZEuUnn0,241
|
|
559
558
|
sky/volumes/volume.py,sha256=8K0EfriVslXmVnbIj0FJEv0TAoCvUpls9pSrdLAMujc,7842
|
|
@@ -566,9 +565,9 @@ sky/workspaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
566
565
|
sky/workspaces/core.py,sha256=kRrdh-8MhX1953pML1B_DoStnDuNrsmHcZlnWoAxVo0,27218
|
|
567
566
|
sky/workspaces/server.py,sha256=Box45DS54xXGHy7I3tGKGy-JP0a8G_z6IhfvGlEXtsA,3439
|
|
568
567
|
sky/workspaces/utils.py,sha256=IIAiFoS6sdb2t0X5YoX9AietpTanZUQNTK8cePun-sY,2143
|
|
569
|
-
skypilot_nightly-1.0.0.
|
|
570
|
-
skypilot_nightly-1.0.0.
|
|
571
|
-
skypilot_nightly-1.0.0.
|
|
572
|
-
skypilot_nightly-1.0.0.
|
|
573
|
-
skypilot_nightly-1.0.0.
|
|
574
|
-
skypilot_nightly-1.0.0.
|
|
568
|
+
skypilot_nightly-1.0.0.dev20251004.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
|
|
569
|
+
skypilot_nightly-1.0.0.dev20251004.dist-info/METADATA,sha256=pKTYpMaYMGog6EL7-801o42Kum8yk4yjeUMyDhrPXhA,20454
|
|
570
|
+
skypilot_nightly-1.0.0.dev20251004.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
571
|
+
skypilot_nightly-1.0.0.dev20251004.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
|
|
572
|
+
skypilot_nightly-1.0.0.dev20251004.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
|
|
573
|
+
skypilot_nightly-1.0.0.dev20251004.dist-info/RECORD,,
|