mirror of
https://gitlab.com/arm-research/smarter/smarter-device-manager.git
synced 2024-11-21 18:23:34 +00:00
54 lines
1.5 KiB
YAML
54 lines
1.5 KiB
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: smarter-device-management
|
|
namespace: default
|
|
spec:
|
|
# Mark this pod as a critical add-on; when enabled, the critical add-on
|
|
# scheduler reserves resources for critical add-on pods so that they can
|
|
# be rescheduled after a failure.
|
|
# See https://kubernetes.io/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods/
|
|
priorityClassName: "system-node-critical"
|
|
hostNetwork: true
|
|
dnsPolicy: ClusterFirstWithHostNet
|
|
hostname: smarter-device-management
|
|
nodeName: smarter-jetson-xavier-4bcc2584
|
|
containers:
|
|
- name: smarter-device-manager
|
|
image: registry.gitlab.com/arm-research/smarter/smarter-device-manager/smarter-device-manager:IMAGE_ID
|
|
imagePullPolicy: IfNotPresent
|
|
securityContext:
|
|
allowPrivilegeEscalation: false
|
|
capabilities:
|
|
drop: ["ALL"]
|
|
resources:
|
|
limits:
|
|
cpu: 100m
|
|
memory: 10Mi
|
|
requests:
|
|
cpu: 10m
|
|
memory: 10Mi
|
|
volumeMounts:
|
|
- name: device-plugin
|
|
mountPath: /var/lib/kubelet/device-plugins
|
|
- name: dev-dir
|
|
mountPath: /dev
|
|
- name: sys-dir
|
|
mountPath: /sys
|
|
- name: config
|
|
mountPath: /root/config
|
|
volumes:
|
|
- name: device-plugin
|
|
hostPath:
|
|
path: /var/lib/rancher/k3s/agent/kubelet/device-plugins
|
|
- name: dev-dir
|
|
hostPath:
|
|
path: /dev
|
|
- name: sys-dir
|
|
hostPath:
|
|
path: /sys
|
|
- name: config
|
|
configMap:
|
|
name: smarter-device-manager-xavier
|
|
terminationGracePeriodSeconds: 30
|