skypilot-nightly 1.0.0.dev20241218__py3-none-any.whl → 1.0.0.dev20241219__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/cloudflare.py +1 -1
- sky/adaptors/oci.py +7 -0
- sky/backends/cloud_vm_ray_backend.py +2 -3
- sky/check.py +1 -1
- sky/clouds/aws.py +1 -1
- sky/clouds/cudo.py +2 -4
- sky/clouds/gcp.py +3 -3
- sky/clouds/kubernetes.py +1 -1
- sky/clouds/oci.py +1 -1
- sky/clouds/paperspace.py +1 -1
- sky/clouds/runpod.py +1 -1
- sky/clouds/service_catalog/common.py +1 -1
- sky/clouds/vsphere.py +1 -1
- sky/data/storage.py +4 -4
- sky/provision/gcp/constants.py +1 -1
- sky/provision/kubernetes/instance.py +8 -6
- sky/provision/kubernetes/utils.py +21 -5
- sky/setup_files/setup.py +1 -1
- sky/skypilot_config.py +1 -1
- sky/utils/kubernetes/deploy_remote_cluster.sh +1 -1
- sky/utils/kubernetes/gpu_labeler.py +3 -3
- {skypilot_nightly-1.0.0.dev20241218.dist-info → skypilot_nightly-1.0.0.dev20241219.dist-info}/METADATA +19 -19
- {skypilot_nightly-1.0.0.dev20241218.dist-info → skypilot_nightly-1.0.0.dev20241219.dist-info}/RECORD +28 -28
- {skypilot_nightly-1.0.0.dev20241218.dist-info → skypilot_nightly-1.0.0.dev20241219.dist-info}/LICENSE +0 -0
- {skypilot_nightly-1.0.0.dev20241218.dist-info → skypilot_nightly-1.0.0.dev20241219.dist-info}/WHEEL +0 -0
- {skypilot_nightly-1.0.0.dev20241218.dist-info → skypilot_nightly-1.0.0.dev20241219.dist-info}/entry_points.txt +0 -0
- {skypilot_nightly-1.0.0.dev20241218.dist-info → skypilot_nightly-1.0.0.dev20241219.dist-info}/top_level.txt +0 -0
sky/__init__.py
CHANGED
@@ -5,7 +5,7 @@ from typing import Optional
|
|
5
5
|
import urllib.request
|
6
6
|
|
7
7
|
# Replaced with the current commit when building the wheels.
|
8
|
-
_SKYPILOT_COMMIT_SHA = '
|
8
|
+
_SKYPILOT_COMMIT_SHA = 'a73a9cb37152c5f05d06bd1afe29a685ef86f85c'
|
9
9
|
|
10
10
|
|
11
11
|
def _get_git_commit():
|
@@ -35,7 +35,7 @@ def _get_git_commit():
|
|
35
35
|
|
36
36
|
|
37
37
|
__commit__ = _get_git_commit()
|
38
|
-
__version__ = '1.0.0.
|
38
|
+
__version__ = '1.0.0.dev20241219'
|
39
39
|
__root_dir__ = os.path.dirname(os.path.abspath(__file__))
|
40
40
|
|
41
41
|
|
sky/adaptors/cloudflare.py
CHANGED
@@ -177,7 +177,7 @@ def check_credentials() -> Tuple[bool, Optional[str]]:
|
|
177
177
|
hints += f'\n{_INDENT_PREFIX} $ mkdir -p ~/.cloudflare'
|
178
178
|
hints += f'\n{_INDENT_PREFIX} $ echo <YOUR_ACCOUNT_ID_HERE> > ~/.cloudflare/accountid' # pylint: disable=line-too-long
|
179
179
|
hints += f'\n{_INDENT_PREFIX}For more info: '
|
180
|
-
hints += 'https://skypilot.
|
180
|
+
hints += 'https://docs.skypilot.co/en/latest/getting-started/installation.html#cloudflare-r2' # pylint: disable=line-too-long
|
181
181
|
|
182
182
|
return (False, hints) if hints else (True, hints)
|
183
183
|
|
sky/adaptors/oci.py
CHANGED
@@ -1,9 +1,16 @@
|
|
1
1
|
"""Oracle OCI cloud adaptor"""
|
2
2
|
|
3
|
+
import logging
|
3
4
|
import os
|
4
5
|
|
5
6
|
from sky.adaptors import common
|
6
7
|
|
8
|
+
# Suppress OCI circuit breaker logging before lazy import, because
|
9
|
+
# oci modules prints additional message during imports, i.e., the
|
10
|
+
# set_logger in the LazyImport called after imports will not take
|
11
|
+
# effect.
|
12
|
+
logging.getLogger('oci.circuit_breaker').setLevel(logging.WARNING)
|
13
|
+
|
7
14
|
CONFIG_PATH = '~/.oci/config'
|
8
15
|
ENV_VAR_OCI_CONFIG = 'OCI_CONFIG'
|
9
16
|
|
@@ -1092,7 +1092,7 @@ class FailoverCloudErrorHandlerV2:
|
|
1092
1092
|
'having the required permissions and the user '
|
1093
1093
|
'account does not have enough permission to '
|
1094
1094
|
'update it. Please contact your administrator and '
|
1095
|
-
'check out: https://skypilot.
|
1095
|
+
'check out: https://docs.skypilot.co/en/latest/cloud-setup/cloud-permissions/gcp.html\n' # pylint: disable=line-too-long
|
1096
1096
|
f'Details: {message}')
|
1097
1097
|
_add_to_blocked_resources(
|
1098
1098
|
blocked_resources,
|
@@ -1389,8 +1389,7 @@ class RetryingVmProvisioner(object):
|
|
1389
1389
|
f'in {to_provision.cloud}. '
|
1390
1390
|
f'{colorama.Style.RESET_ALL}'
|
1391
1391
|
f'To request quotas, check the instruction: '
|
1392
|
-
f'https://skypilot.
|
1393
|
-
)
|
1392
|
+
f'https://docs.skypilot.co/en/latest/cloud-setup/quota.html.')
|
1394
1393
|
|
1395
1394
|
for zones in self._yield_zones(to_provision, num_nodes, cluster_name,
|
1396
1395
|
prev_cluster_status,
|
sky/check.py
CHANGED
@@ -146,7 +146,7 @@ def check(
|
|
146
146
|
dim=True) + click.style(f'sky check{clouds_arg}', bold=True) +
|
147
147
|
'\n' + click.style(
|
148
148
|
'If any problems remain, refer to detailed docs at: '
|
149
|
-
'https://skypilot.
|
149
|
+
'https://docs.skypilot.co/en/latest/getting-started/installation.html', # pylint: disable=line-too-long
|
150
150
|
dim=True))
|
151
151
|
|
152
152
|
if disallowed_clouds_hint:
|
sky/clouds/aws.py
CHANGED
@@ -617,7 +617,7 @@ class AWS(clouds.Cloud):
|
|
617
617
|
'Failed to fetch the availability zones for the account '
|
618
618
|
f'{identity_str}. It is likely due to permission issues, please'
|
619
619
|
' check the minimal permission required for AWS: '
|
620
|
-
'https://skypilot.
|
620
|
+
'https://docs.skypilot.co/en/latest/cloud-setup/cloud-permissions/aws.html' # pylint: disable=
|
621
621
|
f'\n{cls._INDENT_PREFIX}Details: '
|
622
622
|
f'{common_utils.format_exception(e, use_bracket=True)}')
|
623
623
|
return True, hints
|
sky/clouds/cudo.py
CHANGED
@@ -42,8 +42,7 @@ class Cudo(clouds.Cloud):
|
|
42
42
|
f'{_INDENT_PREFIX} $ cudoctl init\n'
|
43
43
|
f'{_INDENT_PREFIX}For more info: '
|
44
44
|
# pylint: disable=line-too-long
|
45
|
-
'https://skypilot.
|
46
|
-
)
|
45
|
+
'https://docs.skypilot.co/en/latest/getting-started/installation.html')
|
47
46
|
|
48
47
|
_PROJECT_HINT = (
|
49
48
|
'Create a project and then set it as the default project,:\n'
|
@@ -51,8 +50,7 @@ class Cudo(clouds.Cloud):
|
|
51
50
|
f'{_INDENT_PREFIX} $ cudoctl init\n'
|
52
51
|
f'{_INDENT_PREFIX}For more info: '
|
53
52
|
# pylint: disable=line-too-long
|
54
|
-
'https://skypilot.
|
55
|
-
)
|
53
|
+
'https://docs.skypilot.co/en/latest/getting-started/installation.html')
|
56
54
|
|
57
55
|
_CLOUD_UNSUPPORTED_FEATURES = {
|
58
56
|
clouds.CloudImplementationFeatures.STOP: 'Stopping not supported.',
|
sky/clouds/gcp.py
CHANGED
@@ -167,7 +167,7 @@ class GCP(clouds.Cloud):
|
|
167
167
|
# ~/.config/gcloud/application_default_credentials.json.
|
168
168
|
f'{_INDENT_PREFIX} $ gcloud auth application-default login\n'
|
169
169
|
f'{_INDENT_PREFIX}For more info: '
|
170
|
-
'https://skypilot.
|
170
|
+
'https://docs.skypilot.co/en/latest/getting-started/installation.html#google-cloud-platform-gcp' # pylint: disable=line-too-long
|
171
171
|
)
|
172
172
|
_APPLICATION_CREDENTIAL_HINT = (
|
173
173
|
'Run the following commands:\n'
|
@@ -175,7 +175,7 @@ class GCP(clouds.Cloud):
|
|
175
175
|
f'{_INDENT_PREFIX}Or set the environment variable GOOGLE_APPLICATION_CREDENTIALS '
|
176
176
|
'to the path of your service account key file.\n'
|
177
177
|
f'{_INDENT_PREFIX}For more info: '
|
178
|
-
'https://skypilot.
|
178
|
+
'https://docs.skypilot.co/en/latest/getting-started/installation.html#google-cloud-platform-gcp' # pylint: disable=line-too-long
|
179
179
|
)
|
180
180
|
|
181
181
|
_SUPPORTED_DISK_TIERS = set(resources_utils.DiskTier)
|
@@ -836,7 +836,7 @@ class GCP(clouds.Cloud):
|
|
836
836
|
'The following permissions are not enabled for the current '
|
837
837
|
f'GCP identity ({identity_str}):\n '
|
838
838
|
f'{diffs}\n '
|
839
|
-
'For more details, visit: https://skypilot.
|
839
|
+
'For more details, visit: https://docs.skypilot.co/en/latest/cloud-setup/cloud-permissions/gcp.html') # pylint: disable=line-too-long
|
840
840
|
return True, None
|
841
841
|
|
842
842
|
def get_credential_file_mounts(self) -> Dict[str, str]:
|
sky/clouds/kubernetes.py
CHANGED
@@ -395,7 +395,7 @@ class Kubernetes(clouds.Cloud):
|
|
395
395
|
tpu_requested = True
|
396
396
|
k8s_resource_key = kubernetes_utils.TPU_RESOURCE_KEY
|
397
397
|
else:
|
398
|
-
k8s_resource_key = kubernetes_utils.
|
398
|
+
k8s_resource_key = kubernetes_utils.get_gpu_resource_key()
|
399
399
|
|
400
400
|
port_mode = network_utils.get_port_mode(None)
|
401
401
|
|
sky/clouds/oci.py
CHANGED
@@ -390,7 +390,7 @@ class OCI(clouds.Cloud):
|
|
390
390
|
short_credential_help_str = (
|
391
391
|
'For more details, refer to: '
|
392
392
|
# pylint: disable=line-too-long
|
393
|
-
'https://skypilot.
|
393
|
+
'https://docs.skypilot.co/en/latest/getting-started/installation.html#oracle-cloud-infrastructure-oci'
|
394
394
|
)
|
395
395
|
credential_help_str = (
|
396
396
|
'To configure credentials, go to: '
|
sky/clouds/paperspace.py
CHANGED
@@ -258,7 +258,7 @@ class Paperspace(clouds.Cloud):
|
|
258
258
|
return False, (
|
259
259
|
'Failed to access Paperspace Cloud with credentials.\n '
|
260
260
|
'To configure credentials, follow the instructions at: '
|
261
|
-
'https://skypilot.
|
261
|
+
'https://docs.skypilot.co/en/latest/getting-started/installation.html#paperspace\n '
|
262
262
|
'Generate API key and create a json at `~/.paperspace/config.json` with \n '
|
263
263
|
' {"apiKey": "[YOUR API KEY]"}\n '
|
264
264
|
f'Reason: {str(e)}')
|
sky/clouds/runpod.py
CHANGED
@@ -253,7 +253,7 @@ class RunPod(clouds.Cloud):
|
|
253
253
|
' Credentials can be set up by running: \n'
|
254
254
|
f' $ pip install runpod \n'
|
255
255
|
f' $ runpod config\n'
|
256
|
-
' For more information, see https://skypilot.
|
256
|
+
' For more information, see https://docs.skypilot.co/en/latest/getting-started/installation.html#runpod' # pylint: disable=line-too-long
|
257
257
|
)
|
258
258
|
|
259
259
|
return True, None
|
@@ -296,7 +296,7 @@ def validate_region_zone_impl(
|
|
296
296
|
faq_msg = (
|
297
297
|
'\nIf a region is not included in the following '
|
298
298
|
'list, please check the FAQ docs for how to fetch '
|
299
|
-
'its catalog info.\nhttps://skypilot.
|
299
|
+
'its catalog info.\nhttps://docs.skypilot.co'
|
300
300
|
'/en/latest/reference/faq.html#advanced-how-to-'
|
301
301
|
'make-skypilot-use-all-global-regions')
|
302
302
|
error_msg += faq_msg + _get_all_supported_regions_str()
|
sky/clouds/vsphere.py
CHANGED
@@ -266,7 +266,7 @@ class Vsphere(clouds.Cloud):
|
|
266
266
|
'Run the following commands:'
|
267
267
|
f'\n{cls._INDENT_PREFIX} $ pip install skypilot[vSphere]'
|
268
268
|
f'\n{cls._INDENT_PREFIX}Credentials may also need to be set. '
|
269
|
-
'For more details. See https://skypilot.
|
269
|
+
'For more details. See https://docs.skypilot.co/en/latest/getting-started/installation.html#vmware-vsphere' # pylint: disable=line-too-long
|
270
270
|
f'{common_utils.format_exception(e, use_bracket=True)}')
|
271
271
|
|
272
272
|
required_keys = ['name', 'username', 'password', 'clusters']
|
sky/data/storage.py
CHANGED
@@ -1157,7 +1157,7 @@ class S3Store(AbstractStore):
|
|
1157
1157
|
'Storage \'store: s3\' specified, but ' \
|
1158
1158
|
'AWS access is disabled. To fix, enable '\
|
1159
1159
|
'AWS by running `sky check`. More info: '\
|
1160
|
-
'https://skypilot.
|
1160
|
+
'https://docs.skypilot.co/en/latest/getting-started/installation.html.' # pylint: disable=line-too-long
|
1161
1161
|
)
|
1162
1162
|
|
1163
1163
|
@classmethod
|
@@ -1588,7 +1588,7 @@ class GcsStore(AbstractStore):
|
|
1588
1588
|
'Storage \'store: gcs\' specified, but '
|
1589
1589
|
'GCP access is disabled. To fix, enable '
|
1590
1590
|
'GCP by running `sky check`. '
|
1591
|
-
'More info: https://skypilot.
|
1591
|
+
'More info: https://docs.skypilot.co/en/latest/getting-started/installation.html.') # pylint: disable=line-too-long
|
1592
1592
|
|
1593
1593
|
@classmethod
|
1594
1594
|
def validate_name(cls, name: str) -> str:
|
@@ -2110,7 +2110,7 @@ class AzureBlobStore(AbstractStore):
|
|
2110
2110
|
'Storage "store: azure" specified, but '
|
2111
2111
|
'Azure access is disabled. To fix, enable '
|
2112
2112
|
'Azure by running `sky check`. More info: '
|
2113
|
-
'https://skypilot.
|
2113
|
+
'https://docs.skypilot.co/en/latest/getting-started/installation.html.' # pylint: disable=line-too-long
|
2114
2114
|
)
|
2115
2115
|
|
2116
2116
|
@classmethod
|
@@ -2813,7 +2813,7 @@ class R2Store(AbstractStore):
|
|
2813
2813
|
'Storage \'store: r2\' specified, but ' \
|
2814
2814
|
'Cloudflare R2 access is disabled. To fix, '\
|
2815
2815
|
'enable Cloudflare R2 by running `sky check`. '\
|
2816
|
-
'More info: https://skypilot.
|
2816
|
+
'More info: https://docs.skypilot.co/en/latest/getting-started/installation.html.' # pylint: disable=line-too-long
|
2817
2817
|
)
|
2818
2818
|
|
2819
2819
|
def initialize(self):
|
sky/provision/gcp/constants.py
CHANGED
@@ -142,7 +142,7 @@ FIREWALL_RULES_TEMPLATE = [
|
|
142
142
|
]
|
143
143
|
|
144
144
|
# A list of permissions required to run SkyPilot on GCP.
|
145
|
-
# Keep this in sync with https://skypilot.
|
145
|
+
# Keep this in sync with https://docs.skypilot.co/en/latest/cloud-setup/cloud-permissions/gcp.html # pylint: disable=line-too-long
|
146
146
|
VM_MINIMAL_PERMISSIONS = [
|
147
147
|
'compute.disks.create',
|
148
148
|
'compute.disks.list',
|
@@ -180,6 +180,7 @@ def _raise_pod_scheduling_errors(namespace, context, new_nodes):
|
|
180
180
|
# case we will need to update this logic.
|
181
181
|
# TODO(Doyoung): Update the error message raised
|
182
182
|
# with the multi-host TPU support.
|
183
|
+
gpu_resource_key = kubernetes_utils.get_gpu_resource_key() # pylint: disable=line-too-long
|
183
184
|
if 'Insufficient google.com/tpu' in event_message:
|
184
185
|
extra_msg = (
|
185
186
|
f'Verify if '
|
@@ -192,14 +193,15 @@ def _raise_pod_scheduling_errors(namespace, context, new_nodes):
|
|
192
193
|
pod,
|
193
194
|
extra_msg,
|
194
195
|
details=event_message))
|
195
|
-
elif (('Insufficient
|
196
|
+
elif ((f'Insufficient {gpu_resource_key}'
|
196
197
|
in event_message) or
|
197
198
|
('didn\'t match Pod\'s node affinity/selector'
|
198
199
|
in event_message)):
|
199
200
|
extra_msg = (
|
200
|
-
f'Verify if '
|
201
|
-
f'{pod.spec.node_selector[label_key]}'
|
202
|
-
'
|
201
|
+
f'Verify if any node matching label '
|
202
|
+
f'{pod.spec.node_selector[label_key]} and '
|
203
|
+
f'sufficient resource {gpu_resource_key} '
|
204
|
+
f'is available in the cluster.')
|
203
205
|
raise config_lib.KubernetesError(
|
204
206
|
_lack_resource_msg('GPU',
|
205
207
|
pod,
|
@@ -722,13 +724,13 @@ def _create_pods(region: str, cluster_name_on_cloud: str,
|
|
722
724
|
'Continuing without using nvidia RuntimeClass.\n'
|
723
725
|
'If you are on a K3s cluster, manually '
|
724
726
|
'override runtimeClassName in ~/.sky/config.yaml. '
|
725
|
-
'For more details, refer to https://skypilot.
|
727
|
+
'For more details, refer to https://docs.skypilot.co/en/latest/reference/config.html') # pylint: disable=line-too-long
|
726
728
|
|
727
729
|
needs_gpus = False
|
728
730
|
limits = pod_spec['spec']['containers'][0].get('resources',
|
729
731
|
{}).get('limits')
|
730
732
|
if limits is not None:
|
731
|
-
needs_gpus = limits.get(kubernetes_utils.
|
733
|
+
needs_gpus = limits.get(kubernetes_utils.get_gpu_resource_key(), 0) > 0
|
732
734
|
|
733
735
|
# TPU pods provisioned on GKE use the default containerd runtime.
|
734
736
|
# Reference: https://cloud.google.com/kubernetes-engine/docs/how-to/migrate-containerd#overview # pylint: disable=line-too-long
|
@@ -438,7 +438,7 @@ def detect_accelerator_resource(
|
|
438
438
|
nodes = get_kubernetes_nodes(context)
|
439
439
|
for node in nodes:
|
440
440
|
cluster_resources.update(node.status.allocatable.keys())
|
441
|
-
has_accelerator = (
|
441
|
+
has_accelerator = (get_gpu_resource_key() in cluster_resources or
|
442
442
|
TPU_RESOURCE_KEY in cluster_resources)
|
443
443
|
|
444
444
|
return has_accelerator, cluster_resources
|
@@ -972,7 +972,7 @@ def is_kubeconfig_exec_auth(
|
|
972
972
|
'~/.sky/config.yaml:\n'
|
973
973
|
' kubernetes:\n'
|
974
974
|
' remote_identity: SERVICE_ACCOUNT\n'
|
975
|
-
' More: https://skypilot.
|
975
|
+
' More: https://docs.skypilot.co/en/latest/'
|
976
976
|
'reference/config.html')
|
977
977
|
return True, exec_msg
|
978
978
|
return False, None
|
@@ -2253,10 +2253,11 @@ def get_node_accelerator_count(attribute_dict: dict) -> int:
|
|
2253
2253
|
Number of accelerators allocated or available from the node. If no
|
2254
2254
|
resource is found, it returns 0.
|
2255
2255
|
"""
|
2256
|
-
|
2256
|
+
gpu_resource_name = get_gpu_resource_key()
|
2257
|
+
assert not (gpu_resource_name in attribute_dict and
|
2257
2258
|
TPU_RESOURCE_KEY in attribute_dict)
|
2258
|
-
if
|
2259
|
-
return int(attribute_dict[
|
2259
|
+
if gpu_resource_name in attribute_dict:
|
2260
|
+
return int(attribute_dict[gpu_resource_name])
|
2260
2261
|
elif TPU_RESOURCE_KEY in attribute_dict:
|
2261
2262
|
return int(attribute_dict[TPU_RESOURCE_KEY])
|
2262
2263
|
return 0
|
@@ -2415,3 +2416,18 @@ def process_skypilot_pods(
|
|
2415
2416
|
num_pods = len(cluster.pods)
|
2416
2417
|
cluster.resources_str = f'{num_pods}x {cluster.resources}'
|
2417
2418
|
return list(clusters.values()), jobs_controllers, serve_controllers
|
2419
|
+
|
2420
|
+
|
2421
|
+
def get_gpu_resource_key():
|
2422
|
+
"""Get the GPU resource name to use in kubernetes.
|
2423
|
+
The function first checks for an environment variable.
|
2424
|
+
If defined, it uses its value; otherwise, it returns the default value.
|
2425
|
+
Args:
|
2426
|
+
name (str): Default GPU resource name, default is "nvidia.com/gpu".
|
2427
|
+
Returns:
|
2428
|
+
str: The selected GPU resource name.
|
2429
|
+
"""
|
2430
|
+
# Retrieve GPU resource name from environment variable, if set.
|
2431
|
+
# Else use default.
|
2432
|
+
# E.g., can be nvidia.com/gpu-h100, amd.com/gpu etc.
|
2433
|
+
return os.getenv('CUSTOM_GPU_RESOURCE_KEY', default=GPU_RESOURCE_KEY)
|
sky/setup_files/setup.py
CHANGED
@@ -186,6 +186,6 @@ setuptools.setup(
|
|
186
186
|
'Homepage': 'https://github.com/skypilot-org/skypilot',
|
187
187
|
'Issues': 'https://github.com/skypilot-org/skypilot/issues',
|
188
188
|
'Discussion': 'https://github.com/skypilot-org/skypilot/discussions',
|
189
|
-
'Documentation': 'https://skypilot.
|
189
|
+
'Documentation': 'https://docs.skypilot.co/',
|
190
190
|
},
|
191
191
|
)
|
sky/skypilot_config.py
CHANGED
@@ -238,7 +238,7 @@ def _try_load_config() -> None:
|
|
238
238
|
_dict,
|
239
239
|
schemas.get_config_schema(),
|
240
240
|
f'Invalid config YAML ({config_path}). See: '
|
241
|
-
'https://skypilot.
|
241
|
+
'https://docs.skypilot.co/en/latest/reference/config.html. ' # pylint: disable=line-too-long
|
242
242
|
'Error: ',
|
243
243
|
skip_none=False)
|
244
244
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
#!/bin/bash
|
2
|
-
# Refer to https://skypilot.
|
2
|
+
# Refer to https://docs.skypilot.co/en/latest/reservations/existing-machines.html for details on how to use this script.
|
3
3
|
set -e
|
4
4
|
|
5
5
|
# Colors for nicer UX
|
@@ -101,7 +101,7 @@ def label():
|
|
101
101
|
# Get the list of nodes with GPUs
|
102
102
|
gpu_nodes = []
|
103
103
|
for node in nodes:
|
104
|
-
if kubernetes_utils.
|
104
|
+
if kubernetes_utils.get_gpu_resource_key() in node.status.capacity:
|
105
105
|
gpu_nodes.append(node)
|
106
106
|
|
107
107
|
print(f'Found {len(gpu_nodes)} GPU nodes in the cluster')
|
@@ -115,7 +115,7 @@ def label():
|
|
115
115
|
print('Continuing without using nvidia RuntimeClass. '
|
116
116
|
'This may fail on K3s clusters. '
|
117
117
|
'For more details, refer to K3s deployment notes at: '
|
118
|
-
'https://skypilot.
|
118
|
+
'https://docs.skypilot.co/en/latest/reference/kubernetes/kubernetes-setup.html') # pylint: disable=line-too-long
|
119
119
|
nvidia_exists = False
|
120
120
|
|
121
121
|
if nvidia_exists:
|
@@ -142,7 +142,7 @@ def label():
|
|
142
142
|
if len(gpu_nodes) == 0:
|
143
143
|
print('No GPU nodes found in the cluster. If you have GPU nodes, '
|
144
144
|
'please ensure that they have the label '
|
145
|
-
f'`{kubernetes_utils.
|
145
|
+
f'`{kubernetes_utils.get_gpu_resource_key()}: <number of GPUs>`')
|
146
146
|
else:
|
147
147
|
print('GPU labeling started - this may take 10 min or more to complete.'
|
148
148
|
'\nTo check the status of GPU labeling jobs, run '
|
@@ -1,13 +1,13 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: skypilot-nightly
|
3
|
-
Version: 1.0.0.
|
3
|
+
Version: 1.0.0.dev20241219
|
4
4
|
Summary: SkyPilot: An intercloud broker for the clouds
|
5
5
|
Author: SkyPilot Team
|
6
6
|
License: Apache 2.0
|
7
7
|
Project-URL: Homepage, https://github.com/skypilot-org/skypilot
|
8
8
|
Project-URL: Issues, https://github.com/skypilot-org/skypilot/issues
|
9
9
|
Project-URL: Discussion, https://github.com/skypilot-org/skypilot/discussions
|
10
|
-
Project-URL: Documentation, https://skypilot.
|
10
|
+
Project-URL: Documentation, https://docs.skypilot.co/
|
11
11
|
Classifier: Programming Language :: Python :: 3.7
|
12
12
|
Classifier: Programming Language :: Python :: 3.8
|
13
13
|
Classifier: Programming Language :: Python :: 3.9
|
@@ -145,7 +145,7 @@ Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
|
|
145
145
|
</p>
|
146
146
|
|
147
147
|
<p align="center">
|
148
|
-
<a href="https://skypilot.
|
148
|
+
<a href="https://docs.skypilot.co/">
|
149
149
|
<img alt="Documentation" src="https://readthedocs.org/projects/skypilot/badge/?version=latest">
|
150
150
|
</a>
|
151
151
|
|
@@ -182,7 +182,7 @@ Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
|
|
182
182
|
<summary>Archived</summary>
|
183
183
|
|
184
184
|
- [Jul 2024] [**Finetune**](./llm/llama-3_1-finetuning/) and [**serve**](./llm/llama-3_1/) **Llama 3.1** on your infra
|
185
|
-
- [Apr 2024] Serve and finetune [**Llama 3**](https://skypilot.
|
185
|
+
- [Apr 2024] Serve and finetune [**Llama 3**](https://docs.skypilot.co/en/latest/gallery/llms/llama-3.html) on any cloud or Kubernetes: [**example**](./llm/llama-3/)
|
186
186
|
- [Mar 2024] Serve and deploy [**Databricks DBRX**](https://www.databricks.com/blog/introducing-dbrx-new-state-art-open-llm) on your infra: [**example**](./llm/dbrx/)
|
187
187
|
- [Feb 2024] Speed up your LLM deployments with [**SGLang**](https://github.com/sgl-project/sglang) for 5x throughput on SkyServe: [**example**](./llm/sglang/)
|
188
188
|
- [Dec 2023] Using [**LoRAX**](https://github.com/predibase/lorax) to serve 1000s of finetuned LLMs on a single instance in the cloud: [**example**](./llm/lorax/)
|
@@ -199,17 +199,17 @@ Requires-Dist: pyvmomi==8.0.1.0.2; extra == "all"
|
|
199
199
|
SkyPilot is a framework for running AI and batch workloads on any infra, offering unified execution, high cost savings, and high GPU availability.
|
200
200
|
|
201
201
|
SkyPilot **abstracts away infra burdens**:
|
202
|
-
- Launch [dev clusters](https://skypilot.
|
202
|
+
- Launch [dev clusters](https://docs.skypilot.co/en/latest/examples/interactive-development.html), [jobs](https://docs.skypilot.co/en/latest/examples/managed-jobs.html), and [serving](https://docs.skypilot.co/en/latest/serving/sky-serve.html) on any infra
|
203
203
|
- Easy job management: queue, run, and auto-recover many jobs
|
204
204
|
|
205
205
|
SkyPilot **supports multiple clusters, clouds, and hardware** ([the Sky](https://arxiv.org/abs/2205.07147)):
|
206
206
|
- Bring your reserved GPUs, Kubernetes clusters, or 12+ clouds
|
207
|
-
- [Flexible provisioning](https://skypilot.
|
207
|
+
- [Flexible provisioning](https://docs.skypilot.co/en/latest/examples/auto-failover.html) of GPUs, TPUs, CPUs, with auto-retry
|
208
208
|
|
209
209
|
SkyPilot **cuts your cloud costs & maximizes GPU availability**:
|
210
|
-
* [Autostop](https://skypilot.
|
211
|
-
* [Managed Spot](https://skypilot.
|
212
|
-
* [Optimizer](https://skypilot.
|
210
|
+
* [Autostop](https://docs.skypilot.co/en/latest/reference/auto-stop.html): automatic cleanup of idle resources
|
211
|
+
* [Managed Spot](https://docs.skypilot.co/en/latest/examples/managed-jobs.html): 3-6x cost savings using spot instances, with preemption auto-recovery
|
212
|
+
* [Optimizer](https://docs.skypilot.co/en/latest/examples/auto-failover.html): 2x cost savings by auto-picking the cheapest & most available infra
|
213
213
|
|
214
214
|
SkyPilot supports your existing GPU, TPU, and CPU workloads, with no code changes.
|
215
215
|
|
@@ -218,29 +218,29 @@ Install with pip:
|
|
218
218
|
# Choose your clouds:
|
219
219
|
pip install -U "skypilot[kubernetes,aws,gcp,azure,oci,lambda,runpod,fluidstack,paperspace,cudo,ibm,scp]"
|
220
220
|
```
|
221
|
-
To get the latest features and fixes, use the nightly build or [install from source](https://skypilot.
|
221
|
+
To get the latest features and fixes, use the nightly build or [install from source](https://docs.skypilot.co/en/latest/getting-started/installation.html):
|
222
222
|
```bash
|
223
223
|
# Choose your clouds:
|
224
224
|
pip install "skypilot-nightly[kubernetes,aws,gcp,azure,oci,lambda,runpod,fluidstack,paperspace,cudo,ibm,scp]"
|
225
225
|
```
|
226
226
|
|
227
|
-
[Current supported infra](https://skypilot.
|
227
|
+
[Current supported infra](https://docs.skypilot.co/en/latest/getting-started/installation.html) (Kubernetes; AWS, GCP, Azure, OCI, Lambda Cloud, Fluidstack, RunPod, Cudo, Paperspace, Cloudflare, Samsung, IBM, VMware vSphere):
|
228
228
|
<p align="center">
|
229
229
|
<img alt="SkyPilot" src="https://raw.githubusercontent.com/skypilot-org/skypilot/master/docs/source/images/cloud-logos-light.png" width=85%>
|
230
230
|
</p>
|
231
231
|
|
232
232
|
|
233
233
|
## Getting Started
|
234
|
-
You can find our documentation [here](https://skypilot.
|
235
|
-
- [Installation](https://skypilot.
|
236
|
-
- [Quickstart](https://skypilot.
|
237
|
-
- [CLI reference](https://skypilot.
|
234
|
+
You can find our documentation [here](https://docs.skypilot.co/).
|
235
|
+
- [Installation](https://docs.skypilot.co/en/latest/getting-started/installation.html)
|
236
|
+
- [Quickstart](https://docs.skypilot.co/en/latest/getting-started/quickstart.html)
|
237
|
+
- [CLI reference](https://docs.skypilot.co/en/latest/reference/cli.html)
|
238
238
|
|
239
239
|
## SkyPilot in 1 Minute
|
240
240
|
|
241
241
|
A SkyPilot task specifies: resource requirements, data to be synced, setup commands, and the task commands.
|
242
242
|
|
243
|
-
Once written in this [**unified interface**](https://skypilot.
|
243
|
+
Once written in this [**unified interface**](https://docs.skypilot.co/en/latest/reference/yaml-spec.html) (YAML or Python API), the task can be launched on any available cloud. This avoids vendor lock-in, and allows easily moving jobs to a different provider.
|
244
244
|
|
245
245
|
Paste the following into a file `my_task.yaml`:
|
246
246
|
|
@@ -271,7 +271,7 @@ Prepare the workdir by cloning:
|
|
271
271
|
git clone https://github.com/pytorch/examples.git ~/torch_examples
|
272
272
|
```
|
273
273
|
|
274
|
-
Launch with `sky launch` (note: [access to GPU instances](https://skypilot.
|
274
|
+
Launch with `sky launch` (note: [access to GPU instances](https://docs.skypilot.co/en/latest/cloud-setup/quota.html) is needed for this example):
|
275
275
|
```bash
|
276
276
|
sky launch my_task.yaml
|
277
277
|
```
|
@@ -288,10 +288,10 @@ SkyPilot then performs the heavy-lifting for you, including:
|
|
288
288
|
</p>
|
289
289
|
|
290
290
|
|
291
|
-
Refer to [Quickstart](https://skypilot.
|
291
|
+
Refer to [Quickstart](https://docs.skypilot.co/en/latest/getting-started/quickstart.html) to get started with SkyPilot.
|
292
292
|
|
293
293
|
## More Information
|
294
|
-
To learn more, see [Concept: Sky Computing](https://docs.skypilot.co/en/latest/sky-computing.html), [SkyPilot docs](https://skypilot.
|
294
|
+
To learn more, see [Concept: Sky Computing](https://docs.skypilot.co/en/latest/sky-computing.html), [SkyPilot docs](https://docs.skypilot.co/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:
|
{skypilot_nightly-1.0.0.dev20241218.dist-info → skypilot_nightly-1.0.0.dev20241219.dist-info}/RECORD
RENAMED
@@ -1,7 +1,7 @@
|
|
1
|
-
sky/__init__.py,sha256=
|
1
|
+
sky/__init__.py,sha256=krA3cOtwbQbyUXIrK-6-yKyafcq4AYGQjRNYAUISXhs,5944
|
2
2
|
sky/admin_policy.py,sha256=hPo02f_A32gCqhUueF0QYy1fMSSKqRwYEg_9FxScN_s,3248
|
3
3
|
sky/authentication.py,sha256=kACHmiZgWgRpYd1wx1ofbXRMErfMcFmWrkw4a9NxYrY,20988
|
4
|
-
sky/check.py,sha256=
|
4
|
+
sky/check.py,sha256=Gg_62eCyNNYxu6oFiQTMr4XXJf7MjfZMdYOVS-v0SOc,9465
|
5
5
|
sky/cli.py,sha256=j8r2Vc8gGWTQ81D3JM2fvFbFHA9bn7rLESj2UWBke28,214240
|
6
6
|
sky/cloud_stores.py,sha256=RjFgmRhUh1Kk__f6g3KxzLp9s7dA0pFK4W1AukEuUaw,21153
|
7
7
|
sky/core.py,sha256=TQnSe7-bod1qmOwBArk9a2PVCWFlJZX9Ahn2FUHt7M8,38615
|
@@ -12,26 +12,26 @@ sky/global_user_state.py,sha256=m2LJsXkh8eAvvz0ADnSP6idfYWZTA_Xi3uxwR3DrJxo,3024
|
|
12
12
|
sky/optimizer.py,sha256=GjvKQIBtY3NlULzau_9tfa7V2KYVJRrmNrjKVIWCPIQ,59753
|
13
13
|
sky/resources.py,sha256=4T-zQK0OSLC1z5-sLFluEQJ_Y8CAJX3jb4ZSPedwy1s,70352
|
14
14
|
sky/sky_logging.py,sha256=SSHibLotMOQKYX_XKj4Va2PTt6dKGZNCWvGm3FuM-Sc,5373
|
15
|
-
sky/skypilot_config.py,sha256=
|
15
|
+
sky/skypilot_config.py,sha256=FN93hSG-heQCHBnemlIK2TwrJngKbpx4vMXNUzPIzV8,9087
|
16
16
|
sky/status_lib.py,sha256=J7Jb4_Dz0v2T64ttOdyUgpokvl4S0sBJrMfH7Fvo51A,1457
|
17
17
|
sky/task.py,sha256=KDsTBIxYpkCOPHv3_ei5H3LDMiGHvDeS9_2HeL6yyLA,49766
|
18
18
|
sky/adaptors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
19
|
sky/adaptors/aws.py,sha256=jz3E8YyeGscgLZvFE6A1SkxpH6o_inZ-0NiXdRnxSGA,6863
|
20
20
|
sky/adaptors/azure.py,sha256=yjM8nAPW-mlSXfmA8OmJNnSIrZ9lQx2-GxiI-TIVrwE,21910
|
21
|
-
sky/adaptors/cloudflare.py,sha256=
|
21
|
+
sky/adaptors/cloudflare.py,sha256=5NUvRGZ1gNf6xwL4CfsjekQTAsTsQQCH7l3tQIhkFxQ,7587
|
22
22
|
sky/adaptors/common.py,sha256=VhgAFPx-GmhXoob8B1YvqGC2BXs2HwtqoA8oFMaqkbc,2551
|
23
23
|
sky/adaptors/cudo.py,sha256=WGvIQrlzJkGDe02Ve7pygA56tHwUc4kwS3XHW8kMFAA,239
|
24
24
|
sky/adaptors/docker.py,sha256=_kzpZ0fkWHqqQAVVl0llTsCE31KYz3Sjn8psTBQHVkA,468
|
25
25
|
sky/adaptors/gcp.py,sha256=OQ9RaqjR0r0iaWYpjvEtIx5vnEhyB4LhUCwbtdxsmVk,3115
|
26
26
|
sky/adaptors/ibm.py,sha256=H87vD6izq_wQI8oQC7cx9iVtRgPi_QkAcrfa1Z3PNqU,4906
|
27
27
|
sky/adaptors/kubernetes.py,sha256=5pRyPmXYpA0CrU5JFjh88TxC9TNemIaSUkSvaXysrCY,6510
|
28
|
-
sky/adaptors/oci.py,sha256=
|
28
|
+
sky/adaptors/oci.py,sha256=stQ-BRukZsk_r4yjdeVedeHTJSW4lYSlLBMJPBCTfig,1772
|
29
29
|
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=iBs5gnMaaUoH2OIQ3xhAjWdrJWqj8T61Za9TGsBFpvQ,7515
|
33
33
|
sky/backends/backend_utils.py,sha256=gWLucPCYroR0qlsRXP7FXjgo2I9CEf_cZB_eR67Rdl8,135440
|
34
|
-
sky/backends/cloud_vm_ray_backend.py,sha256=
|
34
|
+
sky/backends/cloud_vm_ray_backend.py,sha256=CA-54E-t-4LZN2YstZtN0bv8rYuC4ltvBbQ2IkbXIVg,239223
|
35
35
|
sky/backends/docker_utils.py,sha256=Hyw1YY20EyghhEbYx6O2FIMDcGkNzBzV9TM7LFynei8,8358
|
36
36
|
sky/backends/local_docker_backend.py,sha256=nSYCjms3HOPjPNOrcCqsUKm1WV3AAovRFjEQ7hcEXW4,17021
|
37
37
|
sky/backends/wheel_utils.py,sha256=CUVOwlBtQjOMv-RSDGx2jMQ0M1D0w9ZPm0TDafJwBDI,8180
|
@@ -40,25 +40,25 @@ sky/benchmark/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
40
|
sky/benchmark/benchmark_state.py,sha256=X8CXmuU9KgsDRhKedhFgjeRMUFWtQsjFs1qECvPG2yg,8723
|
41
41
|
sky/benchmark/benchmark_utils.py,sha256=eb-i6zYoo-Zkod-T9qtCu1FcYLw--Yyos1SyibUPZNE,26194
|
42
42
|
sky/clouds/__init__.py,sha256=WuNIJEnZmBO72tU5awgaaL3rdvFRSkgaYNNeuY68dXo,1356
|
43
|
-
sky/clouds/aws.py,sha256=
|
43
|
+
sky/clouds/aws.py,sha256=EDhoMe6P20HisrPzi9yGG0y5ePvCFy4GsLeSA8DirBw,49637
|
44
44
|
sky/clouds/azure.py,sha256=KtnnNZn4ZEr7xndBHxX91v0YXSI1QWPgIefuM1zDUBA,30784
|
45
45
|
sky/clouds/cloud.py,sha256=NIODnzroLwMA3VJq3DOFt1voUoZJB8aielpDkX61iD0,35240
|
46
46
|
sky/clouds/cloud_registry.py,sha256=oLoYFjm_SDTgdHokY7b6A5Utq80HXRQNxV0fLjDdVsQ,2361
|
47
|
-
sky/clouds/cudo.py,sha256=
|
47
|
+
sky/clouds/cudo.py,sha256=TjlgTklsNhbzpTaqEZ5TudnH7YW9aJpkt4xyAhyaKj0,13094
|
48
48
|
sky/clouds/fluidstack.py,sha256=u2I6jXEtTqgqRWi2EafMsKqc8VkUq1cR6CSDUvk72_U,12407
|
49
|
-
sky/clouds/gcp.py,sha256=
|
49
|
+
sky/clouds/gcp.py,sha256=Y3q0abfg0LNVGGGk2gcO5xsWfKjx3dbX5AhP0NqQ5FU,54683
|
50
50
|
sky/clouds/ibm.py,sha256=0ArRTQx1_DpTNGByFhukzFedEDzmVjBsGiiques1bQ0,21447
|
51
|
-
sky/clouds/kubernetes.py,sha256=
|
51
|
+
sky/clouds/kubernetes.py,sha256=9TZEPujxdn1qE_39Gc3M0X6HiJBxnIymS25DB0x-avg,31550
|
52
52
|
sky/clouds/lambda_cloud.py,sha256=42AmcN2X_wdBMuAw606nR_pQCBAy5QFiAo711_WRqDE,12672
|
53
|
-
sky/clouds/oci.py,sha256=
|
54
|
-
sky/clouds/paperspace.py,sha256=
|
55
|
-
sky/clouds/runpod.py,sha256=
|
53
|
+
sky/clouds/oci.py,sha256=3-ubBlzVdt0rLDQqaQAg-DUAv3Sal2OcQd6u6bgd3Ks,26546
|
54
|
+
sky/clouds/paperspace.py,sha256=F0Sj1RcqRb5fPjrr8qbdeY-JdfAHcRPc902pZOi4erw,10889
|
55
|
+
sky/clouds/runpod.py,sha256=Wtaarp27_LTu5_E2agC7tTr2vhN1D4sblr2vZTT4vBI,11580
|
56
56
|
sky/clouds/scp.py,sha256=JHyMqkAAqr9lJq79IVjj3rU1g-ZCCGLZTJEzIhYsw7c,15845
|
57
|
-
sky/clouds/vsphere.py,sha256=
|
57
|
+
sky/clouds/vsphere.py,sha256=rrNf6_uHy4ukjHwaN35XVh2-Xj9k43-QGQkiEXyHYJk,12273
|
58
58
|
sky/clouds/service_catalog/__init__.py,sha256=p4V0GGeumT8yt01emqDM7Au45H5jvPfGNqdI6L2W3uM,14750
|
59
59
|
sky/clouds/service_catalog/aws_catalog.py,sha256=j33lNC5GXWK6CiGWZORCnumGlRODmCAT2_lfWp0YtBc,13106
|
60
60
|
sky/clouds/service_catalog/azure_catalog.py,sha256=5Q51x_WEKvQ2YSgJvZHRH3URlbwIstYuwpjaWW_wJlw,8149
|
61
|
-
sky/clouds/service_catalog/common.py,sha256=
|
61
|
+
sky/clouds/service_catalog/common.py,sha256=Q7_80ARg5oXJ5CE1_5CcV28GkvaYX9Lj1ND4JHsMAQQ,27702
|
62
62
|
sky/clouds/service_catalog/config.py,sha256=ylzqewdEBjDg4awvFek6ldYmFrnvD2bVGLZuLPvEVYA,1793
|
63
63
|
sky/clouds/service_catalog/constants.py,sha256=u_SjIr3gJI6P-xpRgNAzZG2Z4M5UfE1PL7z4atfQncE,411
|
64
64
|
sky/clouds/service_catalog/cudo_catalog.py,sha256=V_takvL6dWTGQaTLCEvjKIotCDPnMujiNUZ87kZKGVI,4673
|
@@ -91,7 +91,7 @@ sky/data/__init__.py,sha256=Nhaf1NURisXpZuwWANa2IuCyppIuc720FRwqSE2oEwY,184
|
|
91
91
|
sky/data/data_transfer.py,sha256=MBmjey9_p2L3IKNKTi8um09SlZe32n4wK3CkVnlTVvo,7346
|
92
92
|
sky/data/data_utils.py,sha256=-P5GsDH_m4slrCz4vHdgiFezIys8ufzvhEKePJwfjFc,28597
|
93
93
|
sky/data/mounting_utils.py,sha256=HwBGg1NmX-2IJZV_6h2r1U3ajTGOyfmA3MqboA7znqU,11004
|
94
|
-
sky/data/storage.py,sha256=
|
94
|
+
sky/data/storage.py,sha256=fNXjY-Nct7M_Tl5tJC97rMHi52ikRrzB-eKR4lmnNFc,163875
|
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
|
@@ -131,16 +131,16 @@ sky/provision/fluidstack/fluidstack_utils.py,sha256=Y21y2IAiHPLk_b-Lp-ld26SZSfWA
|
|
131
131
|
sky/provision/fluidstack/instance.py,sha256=iZK0dNFsRTlazh-2el3N9GDjPvZDtyCn8kWb4vAEzcU,13709
|
132
132
|
sky/provision/gcp/__init__.py,sha256=zlgjR2JoaGD7sStGStMRu9bJ62f-8NKEIyb-bFHBlzM,528
|
133
133
|
sky/provision/gcp/config.py,sha256=i0PhR1ybGErQiPT8cD6E5OFB7LD6sub4Rc-mhgTREVI,33340
|
134
|
-
sky/provision/gcp/constants.py,sha256=
|
134
|
+
sky/provision/gcp/constants.py,sha256=9eLZatVSW2uGqxrvFGaWK2A_Ab0o_4S4GdgUuI7mfsk,7441
|
135
135
|
sky/provision/gcp/instance.py,sha256=AMnJz6xDwYqIHmDfJfENTG_ID6uhjD_2VhlWw8FJp_s,24934
|
136
136
|
sky/provision/gcp/instance_utils.py,sha256=veRBr6Oziv0KaUdC4acuWeaOremNV0gMYCCHaSvY7c8,70943
|
137
137
|
sky/provision/gcp/mig_utils.py,sha256=oFpcFZoapHMILSE4iIm8V5bxP1RhbMHRF7cciqq8qAk,7883
|
138
138
|
sky/provision/kubernetes/__init__.py,sha256=y6yVfii81WYG3ROxv4hiIj-ydinS5-xGxLvXnARVQoI,719
|
139
139
|
sky/provision/kubernetes/config.py,sha256=WEKcFXXhe89bLGAvoMiBvTDxdxkpTIA6ezrj2vmzldc,29072
|
140
|
-
sky/provision/kubernetes/instance.py,sha256=
|
140
|
+
sky/provision/kubernetes/instance.py,sha256=2pju1RDzH5vOXbOTgPzCToGdCjmqIouhA0wRUFytLnc,50257
|
141
141
|
sky/provision/kubernetes/network.py,sha256=EpNjRQ131CXepqbdkoRKFu4szVrm0oKEpv1l8EgOkjU,12364
|
142
142
|
sky/provision/kubernetes/network_utils.py,sha256=t1FS3K400fetH7cBuRgQJZl5_jEeMshsvsYmnMUcq8k,11399
|
143
|
-
sky/provision/kubernetes/utils.py,sha256=
|
143
|
+
sky/provision/kubernetes/utils.py,sha256=PZ1hrgmzZnwtGGLNrT6PXG8Ke9geNGpdEr1OUew8sqQ,102869
|
144
144
|
sky/provision/kubernetes/manifests/smarter-device-manager-configmap.yaml,sha256=AMzYzlY0JIlfBWj5eX054Rc1XDW2thUcLSOGMJVhIdA,229
|
145
145
|
sky/provision/kubernetes/manifests/smarter-device-manager-daemonset.yaml,sha256=RtTq4F1QUmR2Uunb6zuuRaPhV7hpesz4saHjn3Ncsb4,2010
|
146
146
|
sky/provision/lambda_cloud/__init__.py,sha256=6EEvSgtUeEiup9ivIFevHmgv0GqleroO2X0K7TRa2nE,612
|
@@ -192,7 +192,7 @@ sky/serve/service.py,sha256=gVem2vX8XuR_1wTqwrzbszQAbjzjDP2ddd787aynT9g,12017
|
|
192
192
|
sky/serve/service_spec.py,sha256=34dMQ37INHltBzWaxHl3y_o9X3wLOCWA5jUhmhH1II4,14740
|
193
193
|
sky/setup_files/MANIFEST.in,sha256=WF0T89NLichHxZDDSQzvSpiONtAEFyur2MPmGczgTIo,555
|
194
194
|
sky/setup_files/dependencies.py,sha256=-_9ekkrmrU9vF7I9cqz_xP55qaSZ-qz2KfGVgQDQTTY,5903
|
195
|
-
sky/setup_files/setup.py,sha256=
|
195
|
+
sky/setup_files/setup.py,sha256=HMqAIxHrhtQUOlm6_Iz5E_bL4dUvsYgXc9YVQIFayPs,7417
|
196
196
|
sky/skylet/LICENSE,sha256=BnFrJSvUFpMUoH5mOpWnEvaC5R6Uux8W6WXgrte8iYg,12381
|
197
197
|
sky/skylet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
198
198
|
sky/skylet/attempt_skylet.py,sha256=GZ6ITjjA0m-da3IxXXfoHR6n4pjp3X3TOXUqVvSrV0k,2136
|
@@ -271,17 +271,17 @@ sky/utils/cli_utils/status_utils.py,sha256=2HrH6IBJCJ__AbuZ0ooIEgarBKIVIA5M3myE5
|
|
271
271
|
sky/utils/kubernetes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
272
272
|
sky/utils/kubernetes/create_cluster.sh,sha256=VLXfazav9XCMQmeKVqhuOQzt2vM6G1jgnvvb0SHUFno,7773
|
273
273
|
sky/utils/kubernetes/delete_cluster.sh,sha256=BSccHF43GyepDNf-FZcenzHzpXXATkVD92vgn1lWPgk,927
|
274
|
-
sky/utils/kubernetes/deploy_remote_cluster.sh,sha256=
|
274
|
+
sky/utils/kubernetes/deploy_remote_cluster.sh,sha256=LzrhZbZ8W399U_0IktTi3Elb0w91oq267e4Wk5oUfb4,8471
|
275
275
|
sky/utils/kubernetes/generate_kind_config.py,sha256=_TNLnifA_r7-CRq083IP1xjelYqiLjzQX9ohuqYpDH8,3187
|
276
276
|
sky/utils/kubernetes/generate_kubeconfig.sh,sha256=MBvXJio0PeujZSCXiRKE_pa6HCTiU9qBzR1WrXccVSY,10477
|
277
|
-
sky/utils/kubernetes/gpu_labeler.py,sha256=
|
277
|
+
sky/utils/kubernetes/gpu_labeler.py,sha256=Jm_9PgrDxnqD9fn0STGwd427dZu0i_v17OTPgdScKO8,7004
|
278
278
|
sky/utils/kubernetes/k8s_gpu_labeler_job.yaml,sha256=k0TBoQ4zgf79-sVkixKSGYFHQ7ZWF5gdVIZPupCCo9A,1224
|
279
279
|
sky/utils/kubernetes/k8s_gpu_labeler_setup.yaml,sha256=VLKT2KKimZu1GDg_4AIlIt488oMQvhRZWwsj9vBbPUg,3812
|
280
280
|
sky/utils/kubernetes/rsync_helper.sh,sha256=h4YwrPFf9727CACnMJvF3EyK_0OeOYKKt4su_daKekw,1256
|
281
281
|
sky/utils/kubernetes/ssh_jump_lifecycle_manager.py,sha256=RFLJ3k7MR5UN4SKHykQ0lV9SgXumoULpKYIAt1vh-HU,6560
|
282
|
-
skypilot_nightly-1.0.0.
|
283
|
-
skypilot_nightly-1.0.0.
|
284
|
-
skypilot_nightly-1.0.0.
|
285
|
-
skypilot_nightly-1.0.0.
|
286
|
-
skypilot_nightly-1.0.0.
|
287
|
-
skypilot_nightly-1.0.0.
|
282
|
+
skypilot_nightly-1.0.0.dev20241219.dist-info/LICENSE,sha256=emRJAvE7ngL6x0RhQvlns5wJzGI3NEQ_WMjNmd9TZc4,12170
|
283
|
+
skypilot_nightly-1.0.0.dev20241219.dist-info/METADATA,sha256=Qwsffd0lEButuGjy9A45S2sRaE6HoB7wNUdEptVqFOw,20149
|
284
|
+
skypilot_nightly-1.0.0.dev20241219.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
285
|
+
skypilot_nightly-1.0.0.dev20241219.dist-info/entry_points.txt,sha256=StA6HYpuHj-Y61L2Ze-hK2IcLWgLZcML5gJu8cs6nU4,36
|
286
|
+
skypilot_nightly-1.0.0.dev20241219.dist-info/top_level.txt,sha256=qA8QuiNNb6Y1OF-pCUtPEr6sLEwy2xJX06Bd_CrtrHY,4
|
287
|
+
skypilot_nightly-1.0.0.dev20241219.dist-info/RECORD,,
|
File without changes
|
{skypilot_nightly-1.0.0.dev20241218.dist-info → skypilot_nightly-1.0.0.dev20241219.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|