gpu-manager icon indicating copy to clipboard operation
gpu-manager copied to clipboard

Service startup error is reported, and the log is as follows ,Unable to set Type=notify in systemd service file

Open khw934 opened this issue 4 years ago • 0 comments

E0129 10:10:02.830263 1564241 server.go:133] Unable to set Type=notify in systemd service file?

image

image

selector: matchLabels: name: gpu-manager-ds template: metadata: # This annotation is deprecated. Kept here for backward compatibility # See https://kubernetes.io/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods/ annotations: scheduler.alpha.kubernetes.io/critical-pod: "" labels: name: gpu-manager-ds spec: serviceAccount: gpu-manager tolerations: # This toleration is deprecated. Kept here for backward compatibility # See https://kubernetes.io/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods/ - key: CriticalAddonsOnly operator: Exists - key: tencent.com/vcuda-core operator: Exists effect: NoSchedule # 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" # only run node has gpu device nodeSelector: nvidia-device-enable: enable hostPID: true containers: - image: thomassong/gpu-manager:1.1.4 imagePullPolicy: Never name: gpu-manager securityContext: privileged: true ports: - containerPort: 5678 volumeMounts: - name: device-plugin mountPath: /var/lib/kubelet/device-plugins - name: vdriver mountPath: /etc/gpu-manager/vdriver - name: vmdata mountPath: /etc/gpu-manager/vm - name: log mountPath: /var/log/gpu-manager - name: checkpoint mountPath: /etc/gpu-manager/checkpoint - name: run-dir mountPath: /var/run - name: cgroup mountPath: /sys/fs/cgroup readOnly: true - name: usr-directory mountPath: /usr/local/host readOnly: true - name: kube-root mountPath: /root/.kube readOnly: true env: - name: LOG_LEVEL value: "5" - name: EXTRA_FLAGS value: "--logtostderr=false --cgroup-driver=systemd --kubeconfig=/etc/kubernetes/scheduler.conf" "gpu-manager.yaml" 118L, 4084C

khw934 avatar Jan 29 '22 12:01 khw934