skypilot-nightly 1.0.0.dev20250410__py3-none-any.whl → 1.0.0.dev20250412__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/oci.py +2 -2
- sky/authentication.py +2 -2
- sky/backends/backend_utils.py +1 -1
- sky/backends/cloud_vm_ray_backend.py +3 -3
- sky/check.py +1 -1
- sky/cli.py +51 -47
- sky/client/cli.py +51 -47
- sky/client/common.py +4 -2
- sky/client/sdk.py +60 -27
- sky/clouds/aws.py +2 -2
- sky/clouds/cloud.py +3 -2
- sky/clouds/kubernetes.py +20 -3
- sky/clouds/nebius.py +2 -4
- sky/clouds/oci.py +2 -2
- sky/clouds/utils/oci_utils.py +1 -1
- sky/core.py +12 -17
- sky/data/mounting_utils.py +34 -10
- sky/exceptions.py +1 -1
- sky/execution.py +5 -4
- sky/jobs/client/sdk.py +5 -0
- sky/optimizer.py +1 -2
- sky/provision/instance_setup.py +3 -1
- sky/provision/kubernetes/config.py +41 -36
- sky/provision/kubernetes/instance.py +4 -7
- sky/provision/kubernetes/manifests/fusermount-server-daemonset.yaml +54 -0
- sky/provision/kubernetes/network_utils.py +1 -1
- sky/provision/kubernetes/utils.py +51 -35
- sky/serve/client/sdk.py +6 -0
- sky/server/common.py +16 -1
- sky/server/constants.py +5 -0
- sky/server/requests/payloads.py +2 -0
- sky/setup_files/dependencies.py +1 -1
- sky/skylet/constants.py +2 -2
- sky/skypilot_config.py +197 -70
- sky/templates/kubernetes-ray.yml.j2 +66 -25
- sky/templates/websocket_proxy.py +41 -2
- sky/utils/config_utils.py +1 -1
- sky/utils/controller_utils.py +1 -1
- sky/utils/kubernetes/generate_kubeconfig.sh +2 -2
- sky/utils/kubernetes/rsync_helper.sh +26 -11
- {skypilot_nightly-1.0.0.dev20250410.dist-info → skypilot_nightly-1.0.0.dev20250412.dist-info}/METADATA +3 -1
- {skypilot_nightly-1.0.0.dev20250410.dist-info → skypilot_nightly-1.0.0.dev20250412.dist-info}/RECORD +47 -48
- sky/provision/kubernetes/manifests/smarter-device-manager-configmap.yaml +0 -10
- sky/provision/kubernetes/manifests/smarter-device-manager-daemonset.yaml +0 -68
- {skypilot_nightly-1.0.0.dev20250410.dist-info → skypilot_nightly-1.0.0.dev20250412.dist-info}/WHEEL +0 -0
- {skypilot_nightly-1.0.0.dev20250410.dist-info → skypilot_nightly-1.0.0.dev20250412.dist-info}/entry_points.txt +0 -0
- {skypilot_nightly-1.0.0.dev20250410.dist-info → skypilot_nightly-1.0.0.dev20250412.dist-info}/licenses/LICENSE +0 -0
- {skypilot_nightly-1.0.0.dev20250410.dist-info → skypilot_nightly-1.0.0.dev20250412.dist-info}/top_level.txt +0 -0
@@ -1,68 +0,0 @@
|
|
1
|
-
# A daemonset for the smarter-device-manager agent. Used to expose FUSE devices
|
2
|
-
# to SkyPilot pods, bypassing the need to run SkyPilot pods as privileged.
|
3
|
-
# From smarter-device-manager daemonset: https://gitlab.com/arm-research/smarter/smarter-device-manager/-/blob/master/smarter-device-manager-ds.yaml
|
4
|
-
apiVersion: apps/v1
|
5
|
-
kind: DaemonSet
|
6
|
-
metadata:
|
7
|
-
name: smarter-device-manager
|
8
|
-
labels:
|
9
|
-
name: smarter-device-manager
|
10
|
-
role: agent
|
11
|
-
parent: skypilot
|
12
|
-
spec:
|
13
|
-
selector:
|
14
|
-
matchLabels:
|
15
|
-
name: smarter-device-manager
|
16
|
-
updateStrategy:
|
17
|
-
type: RollingUpdate
|
18
|
-
template:
|
19
|
-
metadata:
|
20
|
-
labels:
|
21
|
-
name: smarter-device-manager
|
22
|
-
parent: skypilot
|
23
|
-
annotations:
|
24
|
-
node.kubernetes.io/bootstrap-checkpoint: "true"
|
25
|
-
spec:
|
26
|
-
hostname: smarter-device-management
|
27
|
-
hostNetwork: true
|
28
|
-
dnsPolicy: ClusterFirstWithHostNet
|
29
|
-
tolerations:
|
30
|
-
- effect: NoSchedule
|
31
|
-
operator: Exists
|
32
|
-
containers:
|
33
|
-
- name: smarter-device-manager
|
34
|
-
image: us-central1-docker.pkg.dev/skypilot-375900/skypilotk8s/smarter-device-manager:v1.1.2
|
35
|
-
imagePullPolicy: IfNotPresent
|
36
|
-
securityContext:
|
37
|
-
allowPrivilegeEscalation: false
|
38
|
-
capabilities:
|
39
|
-
drop: ["ALL"]
|
40
|
-
resources:
|
41
|
-
limits:
|
42
|
-
cpu: 100m
|
43
|
-
memory: 15Mi
|
44
|
-
requests:
|
45
|
-
cpu: 10m
|
46
|
-
memory: 15Mi
|
47
|
-
volumeMounts:
|
48
|
-
- name: device-plugin
|
49
|
-
mountPath: /var/lib/kubelet/device-plugins
|
50
|
-
- name: dev-dir
|
51
|
-
mountPath: /dev
|
52
|
-
- name: sys-dir
|
53
|
-
mountPath: /sys
|
54
|
-
- name: config
|
55
|
-
mountPath: /root/config
|
56
|
-
volumes:
|
57
|
-
- name: device-plugin
|
58
|
-
hostPath:
|
59
|
-
path: /var/lib/kubelet/device-plugins
|
60
|
-
- name: dev-dir
|
61
|
-
hostPath:
|
62
|
-
path: /dev
|
63
|
-
- name: sys-dir
|
64
|
-
hostPath:
|
65
|
-
path: /sys
|
66
|
-
- name: config
|
67
|
-
configMap:
|
68
|
-
name: smarter-device-manager
|
{skypilot_nightly-1.0.0.dev20250410.dist-info → skypilot_nightly-1.0.0.dev20250412.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|