skypilot-nightly 1.0.0.dev20241202__py3-none-any.whl → 1.0.0.dev20241204__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.
@@ -25,7 +25,9 @@ from sky.jobs import constants as managed_job_constants
25
25
  from sky.jobs import utils as managed_job_utils
26
26
  from sky.serve import constants as serve_constants
27
27
  from sky.serve import serve_utils
28
+ from sky.setup_files import dependencies
28
29
  from sky.skylet import constants
30
+ from sky.skylet import log_lib
29
31
  from sky.utils import common_utils
30
32
  from sky.utils import env_options
31
33
  from sky.utils import rich_utils
@@ -187,79 +189,49 @@ class Controllers(enum.Enum):
187
189
 
188
190
  # Install cli dependencies. Not using SkyPilot wheels because the wheel
189
191
  # can be cleaned up by another process.
190
- # TODO(zhwu): Keep the dependencies align with the ones in setup.py
191
192
  def _get_cloud_dependencies_installation_commands(
192
193
  controller: Controllers) -> List[str]:
193
- # TODO(tian): Make dependency installation command a method of cloud
194
- # class and get all installation command for enabled clouds.
195
- commands = []
196
194
  # We use <step>/<total> instead of strong formatting, as we need to update
197
195
  # the <total> at the end of the for loop, and python does not support
198
196
  # partial string formatting.
199
197
  prefix_str = ('[<step>/<total>] Check & install cloud dependencies '
200
198
  'on controller: ')
199
+ commands: List[str] = []
201
200
  # This is to make sure the shorter checking message does not have junk
202
201
  # characters from the previous message.
203
- empty_str = ' ' * 10
204
- aws_dependencies_installation = (
205
- 'pip list | grep boto3 > /dev/null 2>&1 || pip install '
206
- 'botocore>=1.29.10 boto3>=1.26.1; '
207
- # Need to separate the installation of awscli from above because some
208
- # other clouds will install boto3 but not awscli.
209
- 'pip list | grep awscli> /dev/null 2>&1 || pip install "urllib3<2" '
210
- 'awscli>=1.27.10 "colorama<0.4.5" > /dev/null 2>&1')
211
- setup_clouds: List[str] = []
202
+ empty_str = ' ' * 20
203
+
204
+ # All python dependencies will be accumulated and then installed in one
205
+ # command at the end. This is very fast if the packages are already
206
+ # installed, so we don't check that.
207
+ python_packages: Set[str] = set()
208
+
209
+ step_prefix = prefix_str.replace('<step>', str(len(commands) + 1))
210
+ commands.append(f'echo -en "\\r{step_prefix}uv{empty_str}" &&'
211
+ f'{constants.SKY_UV_INSTALL_CMD} >/dev/null 2>&1')
212
+
212
213
  for cloud in sky_check.get_cached_enabled_clouds_or_refresh():
213
- if isinstance(
214
- clouds,
215
- (clouds.Lambda, clouds.SCP, clouds.Fluidstack, clouds.Paperspace)):
216
- # no need to install any cloud dependencies for lambda, scp,
217
- # fluidstack and paperspace
218
- continue
219
- if isinstance(cloud, clouds.AWS):
220
- step_prefix = prefix_str.replace('<step>',
221
- str(len(setup_clouds) + 1))
222
- commands.append(f'echo -en "\\r{step_prefix}AWS{empty_str}" && ' +
223
- aws_dependencies_installation)
224
- setup_clouds.append(str(cloud))
225
- elif isinstance(cloud, clouds.Azure):
226
- step_prefix = prefix_str.replace('<step>',
227
- str(len(setup_clouds) + 1))
228
- commands.append(
229
- f'echo -en "\\r{step_prefix}Azure{empty_str}" && '
230
- 'pip list | grep azure-cli > /dev/null 2>&1 || '
231
- 'pip install "azure-cli>=2.31.0" azure-core '
232
- '"azure-identity>=1.13.0" azure-mgmt-network > /dev/null 2>&1')
233
- # Have to separate this installation of az blob storage from above
234
- # because this is newly-introduced and not part of azure-cli. We
235
- # need a separate installed check for this.
214
+ cloud_python_dependencies: List[str] = dependencies.extras_require[
215
+ cloud.canonical_name()]
216
+
217
+ if isinstance(cloud, clouds.Azure):
218
+ # azure-cli cannot be normally installed by uv.
219
+ # See comments in sky/skylet/constants.py.
220
+ cloud_python_dependencies.remove(dependencies.AZURE_CLI)
221
+
222
+ step_prefix = prefix_str.replace('<step>', str(len(commands) + 1))
236
223
  commands.append(
237
- 'pip list | grep azure-storage-blob > /dev/null 2>&1 || '
238
- 'pip install azure-storage-blob msgraph-sdk > /dev/null 2>&1')
239
- setup_clouds.append(str(cloud))
224
+ f'echo -en "\\r{step_prefix}azure-cli{empty_str}" &&'
225
+ f'{constants.SKY_UV_PIP_CMD} install --prerelease=allow '
226
+ f'"{dependencies.AZURE_CLI}" > /dev/null 2>&1')
240
227
  elif isinstance(cloud, clouds.GCP):
241
- step_prefix = prefix_str.replace('<step>',
242
- str(len(setup_clouds) + 1))
243
- commands.append(
244
- f'echo -en "\\r{step_prefix}GCP{empty_str}" && '
245
- 'pip list | grep google-api-python-client > /dev/null 2>&1 || '
246
- 'pip install "google-api-python-client>=2.69.0" '
247
- '> /dev/null 2>&1')
248
- # Have to separate the installation of google-cloud-storage from
249
- # above because for a VM launched on GCP, the VM may have
250
- # google-api-python-client installed alone.
251
- commands.append(
252
- 'pip list | grep google-cloud-storage > /dev/null 2>&1 || '
253
- 'pip install google-cloud-storage > /dev/null 2>&1')
254
- commands.append(f'{gcp.GOOGLE_SDK_INSTALLATION_COMMAND}')
255
- setup_clouds.append(str(cloud))
228
+ step_prefix = prefix_str.replace('<step>', str(len(commands) + 1))
229
+ commands.append(f'echo -en "\\r{step_prefix}GCP SDK{empty_str}" &&'
230
+ f'{gcp.GOOGLE_SDK_INSTALLATION_COMMAND}')
256
231
  elif isinstance(cloud, clouds.Kubernetes):
257
- step_prefix = prefix_str.replace('<step>',
258
- str(len(setup_clouds) + 1))
232
+ step_prefix = prefix_str.replace('<step>', str(len(commands) + 1))
259
233
  commands.append(
260
234
  f'echo -en "\\r{step_prefix}Kubernetes{empty_str}" && '
261
- 'pip list | grep kubernetes > /dev/null 2>&1 || '
262
- 'pip install "kubernetes>=20.0.0" > /dev/null 2>&1 &&'
263
235
  # Install k8s + skypilot dependencies
264
236
  'sudo bash -c "if '
265
237
  '! command -v curl &> /dev/null || '
@@ -275,54 +247,36 @@ def _get_cloud_dependencies_installation_commands(
275
247
  '/bin/linux/amd64/kubectl" && '
276
248
  'sudo install -o root -g root -m 0755 '
277
249
  'kubectl /usr/local/bin/kubectl))')
278
- setup_clouds.append(str(cloud))
279
250
  elif isinstance(cloud, clouds.Cudo):
280
- step_prefix = prefix_str.replace('<step>',
281
- str(len(setup_clouds) + 1))
251
+ step_prefix = prefix_str.replace('<step>', str(len(commands) + 1))
282
252
  commands.append(
283
- f'echo -en "\\r{step_prefix}Cudo{empty_str}" && '
284
- 'pip list | grep cudo-compute > /dev/null 2>&1 || '
285
- 'pip install "cudo-compute>=0.1.10" > /dev/null 2>&1 && '
253
+ f'echo -en "\\r{step_prefix}cudoctl{empty_str}" && '
286
254
  'wget https://download.cudo.org/compute/cudoctl-0.3.2-amd64.deb -O ~/cudoctl.deb > /dev/null 2>&1 && ' # pylint: disable=line-too-long
287
255
  'sudo dpkg -i ~/cudoctl.deb > /dev/null 2>&1')
288
- setup_clouds.append(str(cloud))
289
- elif isinstance(cloud, clouds.RunPod):
290
- step_prefix = prefix_str.replace('<step>',
291
- str(len(setup_clouds) + 1))
292
- commands.append(f'echo -en "\\r{step_prefix}RunPod{empty_str}" && '
293
- 'pip list | grep runpod > /dev/null 2>&1 || '
294
- 'pip install "runpod>=1.5.1" > /dev/null 2>&1')
295
- setup_clouds.append(str(cloud))
296
- elif isinstance(cloud, clouds.OCI):
297
- step_prefix = prefix_str.replace('<step>',
298
- str(len(setup_clouds) + 1))
299
- commands.append(f'echo -en "\\r{prefix_str}OCI{empty_str}" && '
300
- 'pip list | grep oci > /dev/null 2>&1 || '
301
- 'pip install oci > /dev/null 2>&1')
302
- setup_clouds.append(str(cloud))
303
- if controller == Controllers.JOBS_CONTROLLER:
304
- if isinstance(cloud, clouds.IBM):
305
- step_prefix = prefix_str.replace('<step>',
306
- str(len(setup_clouds) + 1))
307
- commands.append(
308
- f'echo -en "\\r{step_prefix}IBM{empty_str}" '
309
- '&& pip list | grep ibm-cloud-sdk-core > /dev/null 2>&1 || '
310
- 'pip install ibm-cloud-sdk-core ibm-vpc '
311
- 'ibm-platform-services ibm-cos-sdk > /dev/null 2>&1')
312
- setup_clouds.append(str(cloud))
256
+ elif isinstance(cloud, clouds.IBM):
257
+ if controller != Controllers.JOBS_CONTROLLER:
258
+ # We only need IBM deps on the jobs controller.
259
+ cloud_python_dependencies = []
260
+
261
+ python_packages.update(cloud_python_dependencies)
262
+
313
263
  if (cloudflare.NAME
314
264
  in storage_lib.get_cached_enabled_storage_clouds_or_refresh()):
315
- step_prefix = prefix_str.replace('<step>', str(len(setup_clouds) + 1))
316
- commands.append(
317
- f'echo -en "\\r{step_prefix}Cloudflare{empty_str}" && ' +
318
- aws_dependencies_installation)
319
- setup_clouds.append(cloudflare.NAME)
265
+ python_packages.update(dependencies.extras_require['cloudflare'])
320
266
 
267
+ packages_string = ' '.join([f'"{package}"' for package in python_packages])
268
+ step_prefix = prefix_str.replace('<step>', str(len(commands) + 1))
269
+ commands.append(
270
+ f'echo -en "\\r{step_prefix}cloud python packages{empty_str}" && '
271
+ f'{constants.SKY_UV_PIP_CMD} install {packages_string} > /dev/null 2>&1'
272
+ )
273
+
274
+ total_commands = len(commands)
321
275
  finish_prefix = prefix_str.replace('[<step>/<total>] ', ' ')
322
276
  commands.append(f'echo -e "\\r{finish_prefix}done.{empty_str}"')
277
+
323
278
  commands = [
324
- command.replace('<total>', str(len(setup_clouds)))
325
- for command in commands
279
+ command.replace('<total>', str(total_commands)) for command in commands
326
280
  ]
327
281
  return commands
328
282
 
@@ -380,11 +334,19 @@ def download_and_stream_latest_job_log(
380
334
  else:
381
335
  log_dir = list(log_dirs.values())[0]
382
336
  log_file = os.path.join(log_dir, 'run.log')
383
-
384
337
  # Print the logs to the console.
338
+ # TODO(zhwu): refactor this into log_utils, along with the
339
+ # refactoring for the log_lib.tail_logs.
385
340
  try:
386
341
  with open(log_file, 'r', encoding='utf-8') as f:
387
- print(f.read())
342
+ # Stream the logs to the console without reading the whole
343
+ # file into memory.
344
+ start_streaming = False
345
+ for line in f:
346
+ if log_lib.LOG_FILE_START_STREAMING_AT in line:
347
+ start_streaming = True
348
+ if start_streaming:
349
+ print(line, end='', flush=True)
388
350
  except FileNotFoundError:
389
351
  logger.error('Failed to find the logs for the user '
390
352
  f'program at {log_file}.')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: skypilot-nightly
3
- Version: 1.0.0.dev20241202
3
+ Version: 1.0.0.dev20241204
4
4
  Summary: SkyPilot: An intercloud broker for the clouds
5
5
  Author: SkyPilot Team
6
6
  License: Apache 2.0
@@ -291,10 +291,11 @@ SkyPilot then performs the heavy-lifting for you, including:
291
291
  Refer to [Quickstart](https://skypilot.readthedocs.io/en/latest/getting-started/quickstart.html) to get started with SkyPilot.
292
292
 
293
293
  ## More Information
294
- To learn more, see our [documentation](https://skypilot.readthedocs.io/en/latest/), [blog](https://blog.skypilot.co/), and [community integrations](https://blog.skypilot.co/community/).
294
+ To learn more, see [Concept: Sky Computing](https://docs.skypilot.co/en/latest/sky-computing.html), [SkyPilot docs](https://skypilot.readthedocs.io/en/latest/), and [SkyPilot blog](https://blog.skypilot.co/).
295
295
 
296
296
  <!-- Keep this section in sync with index.rst in SkyPilot Docs -->
297
297
  Runnable examples:
298
+ - [**AI Gallery**](https://docs.skypilot.co/en/latest/gallery/index.html)
298
299
  - LLMs on SkyPilot
299
300
  - [Llama 3.2: lightweight and vision models](./llm/llama-3_2/)
300
301
  - [Pixtral](./llm/pixtral/)
@@ -1,13 +1,13 @@
1
- sky/__init__.py,sha256=MXh6GW5O0r2ISb8ZJNZmn-akLy04Xn6F8KII5fWff6w,5882
1
+ sky/__init__.py,sha256=afOTjEqjrwCfeXE8by4UnxSq97QuqIh4k4ConZim4kE,5944
2
2
  sky/admin_policy.py,sha256=hPo02f_A32gCqhUueF0QYy1fMSSKqRwYEg_9FxScN_s,3248
3
3
  sky/authentication.py,sha256=kACHmiZgWgRpYd1wx1ofbXRMErfMcFmWrkw4a9NxYrY,20988
4
4
  sky/check.py,sha256=D3Y3saIFAYVvPxuBHnVgJEO0fUVDxgjwuMBaO-D778k,9472
5
- sky/cli.py,sha256=0sLOr7lBg2eKeFOgkW2ZS4RYb-hDccM78pVNVnXu_Gs,213764
5
+ sky/cli.py,sha256=UQCEEHEvMVWvrVtdsMiBNQdkQdDpyeTI6VuXKCbafRo,214009
6
6
  sky/cloud_stores.py,sha256=RjFgmRhUh1Kk__f6g3KxzLp9s7dA0pFK4W1AukEuUaw,21153
7
- sky/core.py,sha256=0-4W_DKJZgbwXuzNZKQ2R_qJxqxbqqNfyi0U0PQBKvQ,38230
7
+ sky/core.py,sha256=TQnSe7-bod1qmOwBArk9a2PVCWFlJZX9Ahn2FUHt7M8,38615
8
8
  sky/dag.py,sha256=f3sJlkH4bE6Uuz3ozNtsMhcBpRx7KmC9Sa4seDKt4hU,3104
9
- sky/exceptions.py,sha256=E3C2Ejcc8RUDAUQn7ar_Jr97C_AxD2rKKMmJOfLJ9d0,8965
10
- sky/execution.py,sha256=RsVYs_Fkt8OJUJemz49mJLKE5iZaOvNHCTPcnQ_ngNQ,27522
9
+ sky/exceptions.py,sha256=rUi_au7QBNn3_wvwa8Y_MSHN3QDRpVLry8Mfa56LyGk,9197
10
+ sky/execution.py,sha256=2C4-4HifnJrK0qSAMt8f5iJlVAhmldhnEcQbq1hladM,27589
11
11
  sky/global_user_state.py,sha256=ob3jvtG_yMPGvLlVScgeJ9pqk3FP4jhfEixw8WzFwho,29682
12
12
  sky/optimizer.py,sha256=GjvKQIBtY3NlULzau_9tfa7V2KYVJRrmNrjKVIWCPIQ,59753
13
13
  sky/resources.py,sha256=4T-zQK0OSLC1z5-sLFluEQJ_Y8CAJX3jb4ZSPedwy1s,70352
@@ -30,8 +30,8 @@ sky/adaptors/runpod.py,sha256=4Nt_BfZhJAKQNA3wO8cxvvNI8x4NsDGHu_4EhRDlGYQ,225
30
30
  sky/adaptors/vsphere.py,sha256=zJP9SeObEoLrpgHW2VHvZE48EhgVf8GfAEIwBeaDMfM,2129
31
31
  sky/backends/__init__.py,sha256=UDjwbUgpTRApbPJnNfR786GadUuwgRk3vsWoVu5RB_c,536
32
32
  sky/backends/backend.py,sha256=wwfbrxPhjMPs6PSyy3tAHI8WJhl-xhgzWBsAZjmJJ6g,6249
33
- sky/backends/backend_utils.py,sha256=tqlpVx7KuQH1LMewPZ9KkkMIR_0mUbrrzJ72kzXMXBk,126294
34
- sky/backends/cloud_vm_ray_backend.py,sha256=BDpruXsj-u4wc3WYscLhIbSjjsNZ85iI7fkb-T8f2Bs,233321
33
+ sky/backends/backend_utils.py,sha256=wrv25PXXG8TiLI71_06nHL3pOWcIlu7PfleiDC5QRbM,126391
34
+ sky/backends/cloud_vm_ray_backend.py,sha256=rNXbA9iRhyTSGi4ZF-dhLWv9tMQ4umQnRwoWAshhHZQ,234503
35
35
  sky/backends/docker_utils.py,sha256=Hyw1YY20EyghhEbYx6O2FIMDcGkNzBzV9TM7LFynei8,8358
36
36
  sky/backends/local_docker_backend.py,sha256=0JL5m0YUgOmOL4aWEUe4tmt89dsxjk4_WXkPwgEKEis,16801
37
37
  sky/backends/wheel_utils.py,sha256=CUVOwlBtQjOMv-RSDGx2jMQ0M1D0w9ZPm0TDafJwBDI,8180
@@ -65,7 +65,7 @@ sky/clouds/service_catalog/cudo_catalog.py,sha256=V_takvL6dWTGQaTLCEvjKIotCDPnMu
65
65
  sky/clouds/service_catalog/fluidstack_catalog.py,sha256=21-cvrYEYTIi7n3ZNF2e7_0QX-PF4BkhlVJUWQOvKrY,5059
66
66
  sky/clouds/service_catalog/gcp_catalog.py,sha256=v_5fsB3dB9oD8U7lBKnCe5ii6AUWEOiQjNarMnU_qLA,24379
67
67
  sky/clouds/service_catalog/ibm_catalog.py,sha256=1iK0KvbI82U7sySb7chr-qm_16x3tTnZ6nIo7o76ouc,4493
68
- sky/clouds/service_catalog/kubernetes_catalog.py,sha256=4MsPXyzpwncwiBmndnbYAMpf2yAP2xINeurM6AaVV2k,12335
68
+ sky/clouds/service_catalog/kubernetes_catalog.py,sha256=WW00o0PK5vEcEjeQy9WHoVWPQlNpbspYQJSKsS49LuY,12272
69
69
  sky/clouds/service_catalog/lambda_catalog.py,sha256=2R-ccu63BbdvO6X80MtxiniA-jLewXb6I0Ye1rYD9fY,5302
70
70
  sky/clouds/service_catalog/oci_catalog.py,sha256=cyA6ZqwHGOKuPxUl_dKmFGdeWdQGMrvl_-o2MtyF998,8580
71
71
  sky/clouds/service_catalog/paperspace_catalog.py,sha256=MOlfoGRChjEwMzu4nRAho8DrIwwUJ3QlRzrMA1RLqvE,3789
@@ -95,11 +95,11 @@ sky/data/storage.py,sha256=OQ_kznF-P50Jq0feO5FBqm97QGhfbsZ2dX-Ar3sVWr4,163903
95
95
  sky/data/storage_utils.py,sha256=cM3kxlffYE7PnJySDu8huyUsMX_JYsf9uer8r5OYsjo,9556
96
96
  sky/jobs/__init__.py,sha256=yucibSB_ZimtJMvOhMxn6ZqwBIYNfcwmc6pSXtCqmNQ,1483
97
97
  sky/jobs/constants.py,sha256=YLgcCg_RHSYr_rfsI_4UIdXk78KKKOK29Oem88t5j8I,1350
98
- sky/jobs/controller.py,sha256=sirpi730_GfKfPZeZ2PvCXnJWger0r6AyLSOx2sLd6A,27368
99
- sky/jobs/core.py,sha256=iFoqY0NzviiqC3qCCRe0OiH-oRmcUI1N90P8Zw-FfVc,17326
100
- sky/jobs/recovery_strategy.py,sha256=O_DouAfWx8FNdQxXsr2msMwlKCIodS99cW6V4Lf1vMo,27219
101
- sky/jobs/state.py,sha256=DE02bCZc9bPbbuayb3Zml553mb4pEV7Z8t1pt8IGbYM,25252
102
- sky/jobs/utils.py,sha256=JVSCQ_uYqJut3aFtkRELOgRvsbrnFEu2vPsf7kYoflI,37993
98
+ sky/jobs/controller.py,sha256=DDt92Sa0TV3VULnEyM5QopUowciH6PE9u0yTDumFatM,28538
99
+ sky/jobs/core.py,sha256=iOPH4QNeQPncV7Ss6_hDr-q3nmqUp3eo96U7PP9j4vI,18237
100
+ sky/jobs/recovery_strategy.py,sha256=eP9CLy5qiNTyMJTWWzAxdQ4YolUZWL1g3cLMH7tw8Es,27312
101
+ sky/jobs/state.py,sha256=wMh2fMK4HQY32FPFCXaeIY26CL1KDQ_ZId7GiQLolGo,26507
102
+ sky/jobs/utils.py,sha256=GOc9rXy12vAGLpglf7VjWOWdAWPj2mOBpzxXP5q8yAg,38703
103
103
  sky/jobs/dashboard/dashboard.py,sha256=KMSarpVcfnc-ELPFvy1M9_I1k4kSeXubTk3ibQC67Tg,3219
104
104
  sky/jobs/dashboard/static/favicon.ico,sha256=uYlvgxSM7gjBmXpZ8wydvZUPAbJiiix-rc2Xe5mma9s,15086
105
105
  sky/jobs/dashboard/templates/index.html,sha256=su1tqgcsXNl1lGl9hfIR6ig1f531OO57x1Tc2mNDK7U,11139
@@ -188,17 +188,18 @@ sky/serve/serve_utils.py,sha256=FYJdXaNvoMJFFt7x5Jua9PT-hLRL9J9nKI1BkkBtdxw,3945
188
188
  sky/serve/service.py,sha256=gVem2vX8XuR_1wTqwrzbszQAbjzjDP2ddd787aynT9g,12017
189
189
  sky/serve/service_spec.py,sha256=34dMQ37INHltBzWaxHl3y_o9X3wLOCWA5jUhmhH1II4,14740
190
190
  sky/setup_files/MANIFEST.in,sha256=WF0T89NLichHxZDDSQzvSpiONtAEFyur2MPmGczgTIo,555
191
- sky/setup_files/setup.py,sha256=G767GNB-jXqyC8MR-IdiojnnI2E6tP4gMYenKU14ZGA,12156
191
+ sky/setup_files/dependencies.py,sha256=-_9ekkrmrU9vF7I9cqz_xP55qaSZ-qz2KfGVgQDQTTY,5903
192
+ sky/setup_files/setup.py,sha256=xqWH9DE7bpTjHjrkp5GDpiBv-hmu6xgucs6z9kO_TZ0,7434
192
193
  sky/skylet/LICENSE,sha256=BnFrJSvUFpMUoH5mOpWnEvaC5R6Uux8W6WXgrte8iYg,12381
193
194
  sky/skylet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
195
  sky/skylet/attempt_skylet.py,sha256=GZ6ITjjA0m-da3IxXXfoHR6n4pjp3X3TOXUqVvSrV0k,2136
195
196
  sky/skylet/autostop_lib.py,sha256=JPDHmByuhoNYXSUHl-OnyeJUkOFWn7gDM1FrS7Kr3E8,4478
196
197
  sky/skylet/configs.py,sha256=UtnpmEL0F9hH6PSjhsps7xgjGZ6qzPOfW1p2yj9tSng,1887
197
- sky/skylet/constants.py,sha256=2zCJpJAZMsqBUMeNtarJYe5768hiAC4EXJti0ENt24A,14539
198
+ sky/skylet/constants.py,sha256=CkqTIz9hYrb3jhuI_v13Fo5ATpNM073iEV7UtfQcpiw,15921
198
199
  sky/skylet/events.py,sha256=A09E7LmmwzcGrSG0n8K7d3EZ1ZJr1mmmzoGyhnArYJA,12303
199
200
  sky/skylet/job_lib.py,sha256=Lfk3h-NLoi9mLo5-BPur43fUHVKMpa2hR5wEOCZGsB4,43846
200
- sky/skylet/log_lib.py,sha256=tFJXRb-DClFhUh6wQ45cSBNtBkdOZCGlVfwDnqKFRgE,20394
201
- sky/skylet/log_lib.pyi,sha256=AHMkW2DGK2erFovb3ToZWxRiYaATlzkxKb5J9pkgF2Y,4295
201
+ sky/skylet/log_lib.py,sha256=fcQzEe4OK8exsNVBhbdYe4uIq2cdSHszsKZTtX8a3-Q,20453
202
+ sky/skylet/log_lib.pyi,sha256=VpA_VoL970Noj-YrBkKqLxFi34JVMY7KLrOQ3o4AqEI,4336
202
203
  sky/skylet/skylet.py,sha256=U9plr5hmhD9-Nyy0LMCymlE8DWtRXTFXQvfbFsS746Y,1153
203
204
  sky/skylet/subprocess_daemon.py,sha256=gcL-_Hea7-SrBUyZfAbo40RBFbaeuBmPCW0dm4YYkPo,3537
204
205
  sky/skylet/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -228,7 +229,7 @@ sky/templates/jobs-controller.yaml.j2,sha256=Gu3ogFxFYr09VEXP-6zEbrCUOFo1aYxWEjA
228
229
  sky/templates/kubernetes-ingress.yml.j2,sha256=73iDklVDWBMbItg0IexCa6_ClXPJOxw7PWz3leku4nE,1340
229
230
  sky/templates/kubernetes-loadbalancer.yml.j2,sha256=IxrNYM366N01bbkJEbZ_UPYxUP8wyVEbRNFHRsBuLsw,626
230
231
  sky/templates/kubernetes-port-forward-proxy-command.sh,sha256=iw7mypHszg6Ggq9MbyiYMFOkSlXaQZulaxqC5IWYGCc,3381
231
- sky/templates/kubernetes-ray.yml.j2,sha256=cK2XAkodjHThv94ITddzJwkePQYf0uCYHZo_1BwCw5U,28728
232
+ sky/templates/kubernetes-ray.yml.j2,sha256=6jBNxCAvFZDqvJJxbPjgHICvSdu6XhwafLR0UXqluKQ,28742
232
233
  sky/templates/kubernetes-ssh-jump.yml.j2,sha256=k5W5sOIMppU7dDkJMwPlqsUcb92y7L5_TVG3hkgMy8M,2747
233
234
  sky/templates/lambda-ray.yml.j2,sha256=HyvO_tX2vxwSsc4IFVSqGuIbjLMk0bevP9bcxb8ZQII,4498
234
235
  sky/templates/local-ray.yml.j2,sha256=FNHeyHF6nW9nU9QLIZceUWfvrFTTcO51KqhTnYCEFaA,1185
@@ -249,7 +250,7 @@ sky/utils/command_runner.py,sha256=ewDjFxcCOv0OeG2aUOIfVWmTls65up9DvSnAXURvGfM,3
249
250
  sky/utils/command_runner.pyi,sha256=mJOzCgcYZAfHwnY_6Wf1YwlTEJGb9ihzc2f0rE0Kw98,7751
250
251
  sky/utils/common_utils.py,sha256=Qy25LuIoTT0qg391EWyT9i5D6fwk1S4OdFwRpCTZ9Vk,24657
251
252
  sky/utils/control_master_utils.py,sha256=90hnxiAUP20gbJ9e3MERh7rb04ZO_I3LsljNjR26H5I,1416
252
- sky/utils/controller_utils.py,sha256=pTbltNc9DKdx8zcILPXzCoUUNPXU9hNvqL5TjAGDbeU,43338
253
+ sky/utils/controller_utils.py,sha256=u-dSFwjP8AR941AbGfLSROuwsAYOUch3hoPPeIEdBq0,40683
253
254
  sky/utils/dag_utils.py,sha256=pVX3lGDDcYTcGoH_1jEWzl9767Y4mwlIEYIzoyHO6gM,6105
254
255
  sky/utils/db_utils.py,sha256=AOvMmBEN9cF4I7CoXihPCtus4mU2VDGjBQSVMMgzKlA,2786
255
256
  sky/utils/env_options.py,sha256=3oAaUPxowL6vI2XmxXrH56V7Myj9IJWsL-MXFmRFVdI,1294
@@ -275,9 +276,9 @@ sky/utils/kubernetes/k8s_gpu_labeler_job.yaml,sha256=k0TBoQ4zgf79-sVkixKSGYFHQ7Z
275
276
  sky/utils/kubernetes/k8s_gpu_labeler_setup.yaml,sha256=VLKT2KKimZu1GDg_4AIlIt488oMQvhRZWwsj9vBbPUg,3812
276
277
  sky/utils/kubernetes/rsync_helper.sh,sha256=h4YwrPFf9727CACnMJvF3EyK_0OeOYKKt4su_daKekw,1256
277
278
  sky/utils/kubernetes/ssh_jump_lifecycle_manager.py,sha256=RFLJ3k7MR5UN4SKHykQ0lV9SgXumoULpKYIAt1vh-HU,6560
278
- skypilot_nightly-1.0.0.dev20241202.dist-info/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
279
- skypilot_nightly-1.0.0.dev20241202.dist-info/METADATA,sha256=DNYvDcjf2ydtfqrr3aGvSi1G83tgApBQJzvXbJit1-c,20222
280
- skypilot_nightly-1.0.0.dev20241202.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
281
- skypilot_nightly-1.0.0.dev20241202.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
282
- skypilot_nightly-1.0.0.dev20241202.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
283
- skypilot_nightly-1.0.0.dev20241202.dist-info/RECORD,,
279
+ skypilot_nightly-1.0.0.dev20241204.dist-info/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
280
+ skypilot_nightly-1.0.0.dev20241204.dist-info/METADATA,sha256=m7IZpYN1SsDVHOKYDLPgxmBZI4e6bU4qHPU-9K7TBD8,20319
281
+ skypilot_nightly-1.0.0.dev20241204.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
282
+ skypilot_nightly-1.0.0.dev20241204.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
283
+ skypilot_nightly-1.0.0.dev20241204.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
284
+ skypilot_nightly-1.0.0.dev20241204.dist-info/RECORD,,