skypilot-nightly 1.0.0.dev20250331__py3-none-any.whl → 1.0.0.dev20250402__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sky/__init__.py +2 -2
- sky/adaptors/kubernetes.py +7 -0
- sky/backends/cloud_vm_ray_backend.py +58 -13
- sky/check.py +2 -2
- sky/cli.py +7 -3
- sky/client/cli.py +7 -3
- sky/cloud_stores.py +8 -10
- sky/data/data_utils.py +178 -90
- sky/data/mounting_utils.py +79 -22
- sky/data/storage.py +95 -30
- sky/global_user_state.py +5 -0
- sky/models.py +4 -1
- sky/server/requests/payloads.py +4 -4
- sky/server/server.py +8 -1
- sky/skylet/constants.py +8 -2
- sky/task.py +2 -2
- sky/utils/controller_utils.py +2 -2
- sky/utils/kubernetes/gpu_labeler.py +35 -42
- {skypilot_nightly-1.0.0.dev20250331.dist-info → skypilot_nightly-1.0.0.dev20250402.dist-info}/METADATA +1 -5
- {skypilot_nightly-1.0.0.dev20250331.dist-info → skypilot_nightly-1.0.0.dev20250402.dist-info}/RECORD +24 -24
- {skypilot_nightly-1.0.0.dev20250331.dist-info → skypilot_nightly-1.0.0.dev20250402.dist-info}/WHEEL +0 -0
- {skypilot_nightly-1.0.0.dev20250331.dist-info → skypilot_nightly-1.0.0.dev20250402.dist-info}/entry_points.txt +0 -0
- {skypilot_nightly-1.0.0.dev20250331.dist-info → skypilot_nightly-1.0.0.dev20250402.dist-info}/licenses/LICENSE +0 -0
- {skypilot_nightly-1.0.0.dev20250331.dist-info → skypilot_nightly-1.0.0.dev20250402.dist-info}/top_level.txt +0 -0
@@ -3,35 +3,17 @@ import argparse
|
|
3
3
|
import hashlib
|
4
4
|
import os
|
5
5
|
import subprocess
|
6
|
-
from typing import Tuple
|
6
|
+
from typing import Optional, Tuple
|
7
7
|
|
8
|
-
from kubernetes import client
|
9
|
-
from kubernetes import config
|
10
8
|
import yaml
|
11
9
|
|
12
10
|
import sky
|
11
|
+
from sky.adaptors import kubernetes
|
13
12
|
from sky.provision.kubernetes import utils as kubernetes_utils
|
14
13
|
from sky.utils import rich_utils
|
15
14
|
|
16
15
|
|
17
|
-
def
|
18
|
-
"""Checks if kubectl is installed and kubeconfig is set up"""
|
19
|
-
reason = ''
|
20
|
-
prereq_ok = False
|
21
|
-
try:
|
22
|
-
subprocess.run(['kubectl', 'get', 'pods'],
|
23
|
-
check=True,
|
24
|
-
capture_output=True)
|
25
|
-
prereq_ok = True
|
26
|
-
except FileNotFoundError:
|
27
|
-
reason = 'kubectl not found. Please install kubectl and try again.'
|
28
|
-
except subprocess.CalledProcessError as e:
|
29
|
-
output = e.output.decode('utf-8')
|
30
|
-
reason = 'Error running kubectl: ' + output
|
31
|
-
return prereq_ok, reason
|
32
|
-
|
33
|
-
|
34
|
-
def cleanup() -> Tuple[bool, str]:
|
16
|
+
def cleanup(context: Optional[str] = None) -> Tuple[bool, str]:
|
35
17
|
"""Deletes all Kubernetes resources created by this script
|
36
18
|
|
37
19
|
Used to provide idempotency when the script is run multiple times. Also
|
@@ -42,7 +24,8 @@ def cleanup() -> Tuple[bool, str]:
|
|
42
24
|
'replicasets,configmaps,secrets,pv,pvc,clusterrole,'
|
43
25
|
'serviceaccount,clusterrolebinding -n kube-system '
|
44
26
|
'-l job=sky-gpu-labeler')
|
45
|
-
|
27
|
+
if context:
|
28
|
+
del_command += f' --context {context}'
|
46
29
|
success = False
|
47
30
|
reason = ''
|
48
31
|
with rich_utils.client_status('Cleaning up existing GPU labeling '
|
@@ -62,8 +45,8 @@ def get_node_hash(node_name: str):
|
|
62
45
|
return md5_hash[:32]
|
63
46
|
|
64
47
|
|
65
|
-
def label():
|
66
|
-
deletion_success, reason = cleanup()
|
48
|
+
def label(context: Optional[str] = None):
|
49
|
+
deletion_success, reason = cleanup(context=context)
|
67
50
|
if not deletion_success:
|
68
51
|
print(reason)
|
69
52
|
return
|
@@ -76,18 +59,17 @@ def label():
|
|
76
59
|
rbac_manifest_path = os.path.join(manifest_dir,
|
77
60
|
'k8s_gpu_labeler_setup.yaml')
|
78
61
|
try:
|
79
|
-
|
80
|
-
|
62
|
+
apply_command = ['kubectl', 'apply', '-f', rbac_manifest_path]
|
63
|
+
if context:
|
64
|
+
apply_command += ['--context', context]
|
65
|
+
subprocess.check_output(apply_command)
|
81
66
|
except subprocess.CalledProcessError as e:
|
82
67
|
output = e.output.decode('utf-8')
|
83
68
|
print('Error setting up GPU labeling: ' + output)
|
84
69
|
return
|
85
70
|
|
86
71
|
with rich_utils.client_status('Creating GPU labeler jobs'):
|
87
|
-
|
88
|
-
|
89
|
-
v1 = client.CoreV1Api()
|
90
|
-
batch_v1 = client.BatchV1Api()
|
72
|
+
batch_v1 = kubernetes.batch_api(context=context)
|
91
73
|
# Load the job manifest
|
92
74
|
job_manifest_path = os.path.join(manifest_dir,
|
93
75
|
'k8s_gpu_labeler_job.yaml')
|
@@ -96,7 +78,7 @@ def label():
|
|
96
78
|
job_manifest = yaml.safe_load(file)
|
97
79
|
|
98
80
|
# Iterate over nodes
|
99
|
-
nodes =
|
81
|
+
nodes = kubernetes_utils.get_kubernetes_nodes(context=context)
|
100
82
|
|
101
83
|
# Get the list of nodes with GPUs
|
102
84
|
gpu_nodes = []
|
@@ -104,11 +86,12 @@ def label():
|
|
104
86
|
if kubernetes_utils.get_gpu_resource_key() in node.status.capacity:
|
105
87
|
gpu_nodes.append(node)
|
106
88
|
|
107
|
-
print(f'Found {len(gpu_nodes)} GPU
|
89
|
+
print(f'Found {len(gpu_nodes)} GPU node(s) in the cluster')
|
108
90
|
|
109
91
|
# Check if the 'nvidia' RuntimeClass exists
|
110
92
|
try:
|
111
|
-
nvidia_exists = kubernetes_utils.check_nvidia_runtime_class(
|
93
|
+
nvidia_exists = kubernetes_utils.check_nvidia_runtime_class(
|
94
|
+
context=context)
|
112
95
|
except Exception as e: # pylint: disable=broad-except
|
113
96
|
print('Error occurred while checking for nvidia RuntimeClass: '
|
114
97
|
f'{str(e)}')
|
@@ -144,12 +127,16 @@ def label():
|
|
144
127
|
'please ensure that they have the label '
|
145
128
|
f'`{kubernetes_utils.get_gpu_resource_key()}: <number of GPUs>`')
|
146
129
|
else:
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
130
|
+
context_str = f' --context {context}' if context else ''
|
131
|
+
print(
|
132
|
+
f'GPU labeling started - this may take 10 min or more to complete.'
|
133
|
+
'\nTo check the status of GPU labeling jobs, run '
|
134
|
+
f'`kubectl get jobs -n kube-system '
|
135
|
+
f'-l job=sky-gpu-labeler{context_str}`'
|
136
|
+
'\nYou can check if nodes have been labeled by running '
|
137
|
+
f'`kubectl describe nodes{context_str}` '
|
138
|
+
'and looking for labels of the format '
|
139
|
+
'`skypilot.co/accelerator: <gpu_name>`. ')
|
153
140
|
|
154
141
|
|
155
142
|
def main():
|
@@ -165,18 +152,24 @@ def main():
|
|
165
152
|
action='store_true',
|
166
153
|
help='delete all GPU labeler resources in the '
|
167
154
|
'Kubernetes cluster.')
|
155
|
+
parser.add_argument('--context',
|
156
|
+
type=str,
|
157
|
+
help='the context to use for the Kubernetes cluster.')
|
168
158
|
args = parser.parse_args()
|
159
|
+
context = None
|
160
|
+
if args.context:
|
161
|
+
context = args.context
|
169
162
|
|
170
163
|
# Check if kubectl is installed and kubeconfig is set up
|
171
|
-
prereq_ok, reason =
|
164
|
+
prereq_ok, reason = kubernetes_utils.check_credentials(context=context)
|
172
165
|
if not prereq_ok:
|
173
166
|
print(reason)
|
174
167
|
return
|
175
168
|
|
176
169
|
if args.cleanup:
|
177
|
-
cleanup()
|
170
|
+
cleanup(context=context)
|
178
171
|
else:
|
179
|
-
label()
|
172
|
+
label(context=context)
|
180
173
|
|
181
174
|
|
182
175
|
if __name__ == '__main__':
|
@@ -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.dev20250402
|
4
4
|
Summary: SkyPilot: An intercloud broker for the clouds
|
5
5
|
Author: SkyPilot Team
|
6
6
|
License: Apache 2.0
|
@@ -193,10 +193,6 @@ Dynamic: summary
|
|
193
193
|
<img alt="Downloads" src="https://img.shields.io/pypi/dm/skypilot">
|
194
194
|
</a>
|
195
195
|
|
196
|
-
<a href="https://buildkite.com/skypilot-1/full-smoke-tests-run">
|
197
|
-
<img alt="Smoke Tests" src="https://badge.buildkite.com/d3aa9d2370e4a9ac4fb5e210381f955082a63a9a46673b197a.svg?theme=github&branch=master">
|
198
|
-
</a>
|
199
|
-
|
200
196
|
</p>
|
201
197
|
|
202
198
|
<h3 align="center">
|
{skypilot_nightly-1.0.0.dev20250331.dist-info → skypilot_nightly-1.0.0.dev20250402.dist-info}/RECORD
RENAMED
@@ -1,20 +1,20 @@
|
|
1
|
-
sky/__init__.py,sha256=
|
1
|
+
sky/__init__.py,sha256=RCyN48gsf7Sx7Y7utA4xGJ1RIMT8wt5rMyEh62L6l-I,6428
|
2
2
|
sky/admin_policy.py,sha256=hPo02f_A32gCqhUueF0QYy1fMSSKqRwYEg_9FxScN_s,3248
|
3
3
|
sky/authentication.py,sha256=ND011K_-Ud1dVZF37A9KrwYir_ihJXcHc7iDWmuBc8Q,22872
|
4
|
-
sky/check.py,sha256=
|
5
|
-
sky/cli.py,sha256=
|
6
|
-
sky/cloud_stores.py,sha256=
|
4
|
+
sky/check.py,sha256=oktScSPsHIyO7ZrVHy3QaybB6-s_D6eMEjmICAiUtDo,15902
|
5
|
+
sky/cli.py,sha256=Zcio2ak6zX_5_N_lshDUqCvoV6NEOmGS6Tp6AgS9VAk,222446
|
6
|
+
sky/cloud_stores.py,sha256=cmKdSoB4bmwrd-Z1NCZBFb6IIJt0jKVxkGPoX86280s,26606
|
7
7
|
sky/core.py,sha256=G3n6z0dyvoU4FJVGnnTu3kFdu_EtQC1l57er5voRAX0,47926
|
8
8
|
sky/dag.py,sha256=Yl7Ry26Vql5cv4YMz8g9kOUgtoCihJnw7c8NgZYakMY,3242
|
9
9
|
sky/exceptions.py,sha256=EodMj6P0x0JYBiioLNuPoFMj12HzlQTQpfXNX6zHBoA,16837
|
10
10
|
sky/execution.py,sha256=9L8NFOXNphtabnsL7mHGPJeGdw4n6gIIUEOzjW7CEHw,28294
|
11
|
-
sky/global_user_state.py,sha256=
|
12
|
-
sky/models.py,sha256=
|
11
|
+
sky/global_user_state.py,sha256=7HADn0mY-0omf5RbpmAZ88bjySzqKcmiD1MEmkrCoNU,33754
|
12
|
+
sky/models.py,sha256=4Hq_JNpeQyvRlde_mf1T8H5iDS362TRORYXjtk2nmT4,735
|
13
13
|
sky/optimizer.py,sha256=uutziDwxyq-f5n31YXgCF9fmqx5vndIU8g_avvGWuGc,58532
|
14
14
|
sky/resources.py,sha256=2qc5U09MFDaJjI1dHcThcRodpMGY7HyXzQn8eC4lvbE,72402
|
15
15
|
sky/sky_logging.py,sha256=pID2RINjH62n7SZpv70DuN8BSFYdCfTJ2ScGQpVmugg,5725
|
16
16
|
sky/skypilot_config.py,sha256=CdaIbPL_7ECG5laOARca4p9df_6NLhT-bO8WnalxZAY,8839
|
17
|
-
sky/task.py,sha256=
|
17
|
+
sky/task.py,sha256=zKKdD918VNGVFI3hgN2NT3N2zNUfTp2SdluSN83Xlf4,55697
|
18
18
|
sky/adaptors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
19
|
sky/adaptors/aws.py,sha256=iH55Cm6eXWwufAG0Dgk7LTQcADawNa3ELrBH1m6yuSY,7617
|
20
20
|
sky/adaptors/azure.py,sha256=r8xkjRgZZQfsSExNdguFa6c5fCLcUhZrFV8zs62VExo,21986
|
@@ -25,7 +25,7 @@ sky/adaptors/do.py,sha256=dJ0BYbkQoUWVu6_9Pxq3fOu6PngjZyyCQzgjnODXLCA,777
|
|
25
25
|
sky/adaptors/docker.py,sha256=_kzpZ0fkWHqqQAVVl0llTsCE31KYz3Sjn8psTBQHVkA,468
|
26
26
|
sky/adaptors/gcp.py,sha256=oEb9jClEtApw6PQnxdxDYxOCYsedvM3aiko1EW1FDVo,3501
|
27
27
|
sky/adaptors/ibm.py,sha256=7YbHrWbYcZsJDgxMBNZr1yBI03mjs_C3pnCTCz-MNtQ,5068
|
28
|
-
sky/adaptors/kubernetes.py,sha256=
|
28
|
+
sky/adaptors/kubernetes.py,sha256=pbrMAO_jaHFPdIKryNALY0jvXujC3nUKnYlq0Sj6I2M,6884
|
29
29
|
sky/adaptors/nebius.py,sha256=B3KxPYhTJA3zjQ7x9k8_sqFTAkPYXldnM7PAuwy02gA,7512
|
30
30
|
sky/adaptors/oci.py,sha256=LfMSFUmkkNT6Yoz9FZHNl6UFSg4X1lJO4-x4ZbDdXTs,2831
|
31
31
|
sky/adaptors/runpod.py,sha256=4Nt_BfZhJAKQNA3wO8cxvvNI8x4NsDGHu_4EhRDlGYQ,225
|
@@ -34,7 +34,7 @@ sky/adaptors/vsphere.py,sha256=zJP9SeObEoLrpgHW2VHvZE48EhgVf8GfAEIwBeaDMfM,2129
|
|
34
34
|
sky/backends/__init__.py,sha256=UDjwbUgpTRApbPJnNfR786GadUuwgRk3vsWoVu5RB_c,536
|
35
35
|
sky/backends/backend.py,sha256=4BOqKZ-bwBTpjNnZF4JAHX2m2Iga7EmEn8Ao3tEivaM,7527
|
36
36
|
sky/backends/backend_utils.py,sha256=ndY4IPs1F9QovyiKAnB1FNYGWm52_ylwf_K7wY50cv0,134922
|
37
|
-
sky/backends/cloud_vm_ray_backend.py,sha256=
|
37
|
+
sky/backends/cloud_vm_ray_backend.py,sha256=uRz6XUvrTHGsF6LYIuSjFBUP51BSD5_yTj4R5-3DLo0,251922
|
38
38
|
sky/backends/docker_utils.py,sha256=Hyw1YY20EyghhEbYx6O2FIMDcGkNzBzV9TM7LFynei8,8358
|
39
39
|
sky/backends/local_docker_backend.py,sha256=nSYCjms3HOPjPNOrcCqsUKm1WV3AAovRFjEQ7hcEXW4,17021
|
40
40
|
sky/backends/wheel_utils.py,sha256=meypuMaygSXXjGdXfq6dhWl-OrpAybg9KVRoup4D0wU,9098
|
@@ -43,7 +43,7 @@ sky/benchmark/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
43
|
sky/benchmark/benchmark_state.py,sha256=X8CXmuU9KgsDRhKedhFgjeRMUFWtQsjFs1qECvPG2yg,8723
|
44
44
|
sky/benchmark/benchmark_utils.py,sha256=7rf-iHt6RXZ_pnBBWOMwcdodHQW69x27xNyx0yVog1U,26385
|
45
45
|
sky/client/__init__.py,sha256=pz6xvVSd9X-gwqbsDL0E9QOojYqM0KAD0j-NCyCIF1k,38
|
46
|
-
sky/client/cli.py,sha256=
|
46
|
+
sky/client/cli.py,sha256=Zcio2ak6zX_5_N_lshDUqCvoV6NEOmGS6Tp6AgS9VAk,222446
|
47
47
|
sky/client/common.py,sha256=YMgYoSYlV3B_scfCIJRKHvDq6JKvnSvRZDhlRjRmzu0,14780
|
48
48
|
sky/client/sdk.py,sha256=36tvJou2IaG8H5lrqMicv-gSJn6VUDHUtB7V20t4lA8,68620
|
49
49
|
sky/clouds/__init__.py,sha256=OW6mJ-9hpJSBORCgt2LippLQEYZHNfnBW1mooRNNvxo,1416
|
@@ -103,9 +103,9 @@ sky/clouds/utils/oci_utils.py,sha256=KbmwTWlEO3stcjM4jN2agSFi2w9WNc2NYA9Gr5jMAvE
|
|
103
103
|
sky/clouds/utils/scp_utils.py,sha256=MqawUhhFHHxVnn29nOI4gJ_nF665ich4Po7bsy1afsA,15948
|
104
104
|
sky/data/__init__.py,sha256=Nhaf1NURisXpZuwWANa2IuCyppIuc720FRwqSE2oEwY,184
|
105
105
|
sky/data/data_transfer.py,sha256=-JcnVa_LT0kQejcSCnBwYtxhuuaNDPf_Q5oz62p186c,11973
|
106
|
-
sky/data/data_utils.py,sha256=
|
107
|
-
sky/data/mounting_utils.py,sha256=
|
108
|
-
sky/data/storage.py,sha256=
|
106
|
+
sky/data/data_utils.py,sha256=ryKUPgNBdeDmGIttqK-J7AKdfc70INTuYH5GOWm3C9g,33581
|
107
|
+
sky/data/mounting_utils.py,sha256=ph2p8cYB28FODgxK5ibiD4B4iMD7T3or99zNQaD9HLs,20162
|
108
|
+
sky/data/storage.py,sha256=ifNAvrzjS4jFkQHT6sWlATb_lVTQHkgvg9nFcWLq2k4,236674
|
109
109
|
sky/data/storage_utils.py,sha256=0r0_I4pCnRYK2vf7syGtvIVyuSeI8w_gPnyxfYGEbcU,12698
|
110
110
|
sky/jobs/__init__.py,sha256=qoI53-xXE0-SOkrLWigvhgFXjk7dWE0OTqGPYIk-kmM,1458
|
111
111
|
sky/jobs/constants.py,sha256=1XiIqdR5dEgGgepLKWkZCRT3MYSsMBR-dO7N4RTsjwg,3088
|
@@ -232,14 +232,14 @@ sky/serve/server/server.py,sha256=gQGVU9nHYdGbaLhGjIUNIYn4xwKjRASRJkiiTL5AI1Y,32
|
|
232
232
|
sky/server/__init__.py,sha256=MPPBqFzXz6Jv5QSk6td_IcvnfXfNErDZVcizu4MLRow,27
|
233
233
|
sky/server/common.py,sha256=6FQ-2X4AagshuXNxKxjgFRKT_mtgTGh7kG1GOJ2tZIM,19185
|
234
234
|
sky/server/constants.py,sha256=_ZNrxYh8vmgbf3DmkGDduxjvO2y43ZSPTkH5rCNsVjU,770
|
235
|
-
sky/server/server.py,sha256=
|
235
|
+
sky/server/server.py,sha256=7aK3Nv_aHIYX2ZB_NFy-5Cn-DbSxUPMeiWaDY_2DLXE,44674
|
236
236
|
sky/server/stream_utils.py,sha256=4JMHgtoXPpCT8JwtqyUcDQ9IdZFir9om0JaCRr8rvbQ,5849
|
237
237
|
sky/server/uvicorn.py,sha256=wajwPHJ3IEEP3GMNOCc0S81-1v2qT5F-ejUkLFVhUzk,2953
|
238
238
|
sky/server/html/log.html,sha256=TSGZktua9Ysl_ysg3w60rjxAxhH61AJnsYDHdtqrjmI,6929
|
239
239
|
sky/server/requests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
240
240
|
sky/server/requests/event_loop.py,sha256=OhpPbuce65bbjpGRlcJa78AVnYSm08SzFKt70ypCUuQ,1211
|
241
241
|
sky/server/requests/executor.py,sha256=wW-8s8APEakYRJKNiWIhHg2vrn2UUteseUTsqm9q3Fg,21693
|
242
|
-
sky/server/requests/payloads.py,sha256=
|
242
|
+
sky/server/requests/payloads.py,sha256=3sF36Z9_PLzpEncW0AplJtOz-_nsn5PJaM5lS-3Y8bw,16558
|
243
243
|
sky/server/requests/preconditions.py,sha256=ipxIb_3JXG6S3-ymcOdqQNb7VDvoPqADxu9ZK7-nQWc,7179
|
244
244
|
sky/server/requests/requests.py,sha256=9ovdQE-zv_Mvc6IbGATHVyQlOxSKjg_OankZbgDVGeE,21338
|
245
245
|
sky/server/requests/queues/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -255,7 +255,7 @@ sky/skylet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
255
255
|
sky/skylet/attempt_skylet.py,sha256=GZ6ITjjA0m-da3IxXXfoHR6n4pjp3X3TOXUqVvSrV0k,2136
|
256
256
|
sky/skylet/autostop_lib.py,sha256=kGUnHm-jpF4zl3UJfB-4pnoldWpnVeR96WwYGSw7em0,4630
|
257
257
|
sky/skylet/configs.py,sha256=UtnpmEL0F9hH6PSjhsps7xgjGZ6qzPOfW1p2yj9tSng,1887
|
258
|
-
sky/skylet/constants.py,sha256=
|
258
|
+
sky/skylet/constants.py,sha256=uGhQdxdxO42rwQyu_gg0aeiSFIXxUK2jPoDOaGaMb2M,18550
|
259
259
|
sky/skylet/events.py,sha256=pnV3ZiwWhXqTHpU5B5Y9Xwam_7FQDI6IrxgSx7X_NVA,12743
|
260
260
|
sky/skylet/job_lib.py,sha256=FUpaCSg5yl4ptFb3_GOeUunHTz4qJvwJJjeqrpiRUTk,44470
|
261
261
|
sky/skylet/log_lib.py,sha256=DzOrgY8C7RdEMLC9O9kEKV-iLMb9wVMPSnDha8eMx28,20900
|
@@ -318,7 +318,7 @@ sky/utils/common.py,sha256=P4oVXFATUYgkruHX92cN12SJBtfb8DiOOYZtbN1kvP0,1927
|
|
318
318
|
sky/utils/common_utils.py,sha256=s5YIo9wtFCwWLfLRW7fCjlC9BzqQKPGatWQjrEyYqpc,31680
|
319
319
|
sky/utils/config_utils.py,sha256=VQ2E3DQ2XysD-kul-diSrxn_pXWsDMfKAev91OiJQ1Q,9041
|
320
320
|
sky/utils/control_master_utils.py,sha256=iD4M0onjYOdZ2RuxjwMBl4KhafHXJzuHjvqlBUnu-VE,1450
|
321
|
-
sky/utils/controller_utils.py,sha256=
|
321
|
+
sky/utils/controller_utils.py,sha256=QUG3CVYLnN5F_Q1Jdbir0Oh9FxImXkdbMI9WanluSLA,49802
|
322
322
|
sky/utils/dag_utils.py,sha256=sAus0aL1wtuuFZSDnpO4LY-6WK4u5iJY952oWQzHo3Y,7532
|
323
323
|
sky/utils/db_utils.py,sha256=K2-OHPg0FeHCarevMdWe0IWzm6wWumViEeYeJuGoFUE,3747
|
324
324
|
sky/utils/env_options.py,sha256=aaD6GoYK0LaZIqjOEZ-R7eccQuiRriW3EuLWtOI5En8,1578
|
@@ -344,15 +344,15 @@ sky/utils/kubernetes/deploy_remote_cluster.sh,sha256=EQMBC0VUqe3UaiYvwkNq4P6U9bk
|
|
344
344
|
sky/utils/kubernetes/exec_kubeconfig_converter.py,sha256=fE1SnteoxI05EaugnWeV82hXwZTVHmbXsh1aaZAgF3c,2548
|
345
345
|
sky/utils/kubernetes/generate_kind_config.py,sha256=_TNLnifA_r7-CRq083IP1xjelYqiLjzQX9ohuqYpDH8,3187
|
346
346
|
sky/utils/kubernetes/generate_kubeconfig.sh,sha256=MBvXJio0PeujZSCXiRKE_pa6HCTiU9qBzR1WrXccVSY,10477
|
347
|
-
sky/utils/kubernetes/gpu_labeler.py,sha256=
|
347
|
+
sky/utils/kubernetes/gpu_labeler.py,sha256=1Mblw9pIWgmI5Kob29k5EEuPmip_JXYLD9Hztq6X4v0,7069
|
348
348
|
sky/utils/kubernetes/k8s_gpu_labeler_job.yaml,sha256=k0TBoQ4zgf79-sVkixKSGYFHQ7ZWF5gdVIZPupCCo9A,1224
|
349
349
|
sky/utils/kubernetes/k8s_gpu_labeler_setup.yaml,sha256=VLKT2KKimZu1GDg_4AIlIt488oMQvhRZWwsj9vBbPUg,3812
|
350
350
|
sky/utils/kubernetes/kubernetes_deploy_utils.py,sha256=HPVgNt-wbCVPd9dpDFiA7t2mzQLpjXHJ61eiwRbEr-c,10378
|
351
351
|
sky/utils/kubernetes/rsync_helper.sh,sha256=h4YwrPFf9727CACnMJvF3EyK_0OeOYKKt4su_daKekw,1256
|
352
352
|
sky/utils/kubernetes/ssh_jump_lifecycle_manager.py,sha256=Kq1MDygF2IxFmu9FXpCxqucXLmeUrvs6OtRij6XTQbo,6554
|
353
|
-
skypilot_nightly-1.0.0.
|
354
|
-
skypilot_nightly-1.0.0.
|
355
|
-
skypilot_nightly-1.0.0.
|
356
|
-
skypilot_nightly-1.0.0.
|
357
|
-
skypilot_nightly-1.0.0.
|
358
|
-
skypilot_nightly-1.0.0.
|
353
|
+
skypilot_nightly-1.0.0.dev20250402.dist-info/licenses/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
|
354
|
+
skypilot_nightly-1.0.0.dev20250402.dist-info/METADATA,sha256=bXDuFvGHbo-NYrZxLyYxZ8OLwzvAttIz0x_fAQwsW_g,18552
|
355
|
+
skypilot_nightly-1.0.0.dev20250402.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
356
|
+
skypilot_nightly-1.0.0.dev20250402.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
|
357
|
+
skypilot_nightly-1.0.0.dev20250402.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
|
358
|
+
skypilot_nightly-1.0.0.dev20250402.dist-info/RECORD,,
|
{skypilot_nightly-1.0.0.dev20250331.dist-info → skypilot_nightly-1.0.0.dev20250402.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|