2018-01-09 18:59:50 +00:00
|
|
|
kind: DaemonSet
|
|
|
|
apiVersion: apps/v1beta2
|
|
|
|
metadata:
|
2018-03-06 22:33:57 +00:00
|
|
|
name: csi-rbdplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
spec:
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
2018-03-06 22:33:57 +00:00
|
|
|
app: csi-rbdplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
2018-03-06 22:33:57 +00:00
|
|
|
app: csi-rbdplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
spec:
|
2018-07-18 14:48:43 +00:00
|
|
|
serviceAccount: csi-nodeplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
hostNetwork: true
|
|
|
|
containers:
|
|
|
|
- name: driver-registrar
|
2018-07-18 14:48:43 +00:00
|
|
|
image: quay.io/k8scsi/driver-registrar:v0.3.0
|
2018-01-09 18:59:50 +00:00
|
|
|
args:
|
|
|
|
- "--v=5"
|
|
|
|
- "--csi-address=$(ADDRESS)"
|
2018-09-10 19:16:17 +00:00
|
|
|
- "--kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)"
|
2018-01-09 18:59:50 +00:00
|
|
|
env:
|
|
|
|
- name: ADDRESS
|
2018-03-06 22:33:57 +00:00
|
|
|
value: /var/lib/kubelet/plugins/csi-rbdplugin/csi.sock
|
2018-09-10 19:16:17 +00:00
|
|
|
- name: DRIVER_REG_SOCK_PATH
|
|
|
|
value: /var/lib/kubelet/plugins/csi-rbdplugin/csi.sock
|
2018-01-09 18:59:50 +00:00
|
|
|
- name: KUBE_NODE_NAME
|
|
|
|
valueFrom:
|
|
|
|
fieldRef:
|
|
|
|
fieldPath: spec.nodeName
|
|
|
|
volumeMounts:
|
|
|
|
- name: socket-dir
|
2018-03-06 22:33:57 +00:00
|
|
|
mountPath: /var/lib/kubelet/plugins/csi-rbdplugin
|
2018-09-10 19:16:17 +00:00
|
|
|
- name: registration-dir
|
|
|
|
mountPath: /registration
|
2018-03-06 22:33:57 +00:00
|
|
|
- name: csi-rbdplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
securityContext:
|
|
|
|
privileged: true
|
|
|
|
capabilities:
|
|
|
|
add: ["SYS_ADMIN"]
|
|
|
|
allowPrivilegeEscalation: true
|
2018-07-18 14:48:43 +00:00
|
|
|
image: quay.io/cephcsi/rbdplugin:v0.3.0
|
2018-01-09 18:59:50 +00:00
|
|
|
args :
|
|
|
|
- "--nodeid=$(NODE_ID)"
|
|
|
|
- "--endpoint=$(CSI_ENDPOINT)"
|
|
|
|
- "--v=5"
|
2018-03-06 22:33:57 +00:00
|
|
|
- "--drivername=csi-rbdplugin"
|
2018-01-09 18:59:50 +00:00
|
|
|
env:
|
|
|
|
- name: NODE_ID
|
|
|
|
valueFrom:
|
|
|
|
fieldRef:
|
|
|
|
fieldPath: spec.nodeName
|
|
|
|
- name: CSI_ENDPOINT
|
2018-03-06 22:33:57 +00:00
|
|
|
value: unix://var/lib/kubelet/plugins/csi-rbdplugin/csi.sock
|
2018-01-09 18:59:50 +00:00
|
|
|
imagePullPolicy: "IfNotPresent"
|
|
|
|
volumeMounts:
|
|
|
|
- name: plugin-dir
|
2018-03-06 22:33:57 +00:00
|
|
|
mountPath: /var/lib/kubelet/plugins/csi-rbdplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
- name: pods-mount-dir
|
|
|
|
mountPath: /var/lib/kubelet/pods
|
|
|
|
mountPropagation: "Bidirectional"
|
|
|
|
- mountPath: /dev
|
|
|
|
name: host-dev
|
|
|
|
- mountPath: /sys
|
|
|
|
name: host-sys
|
|
|
|
- mountPath: /lib/modules
|
|
|
|
name: lib-modules
|
|
|
|
readOnly: true
|
|
|
|
volumes:
|
|
|
|
- name: plugin-dir
|
|
|
|
hostPath:
|
2018-03-06 22:33:57 +00:00
|
|
|
path: /var/lib/kubelet/plugins/csi-rbdplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
type: DirectoryOrCreate
|
2018-09-10 19:16:17 +00:00
|
|
|
- name: registration-dir
|
|
|
|
hostPath:
|
|
|
|
path: /var/lib/kubelet/plugins/
|
|
|
|
type: Directory
|
2018-01-09 18:59:50 +00:00
|
|
|
- name: pods-mount-dir
|
|
|
|
hostPath:
|
|
|
|
path: /var/lib/kubelet/pods
|
|
|
|
type: Directory
|
|
|
|
- name: socket-dir
|
|
|
|
hostPath:
|
2018-03-06 22:33:57 +00:00
|
|
|
path: /var/lib/kubelet/plugins/csi-rbdplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
type: DirectoryOrCreate
|
|
|
|
- name: host-dev
|
|
|
|
hostPath:
|
|
|
|
path: /dev
|
|
|
|
- name: host-sys
|
|
|
|
hostPath:
|
|
|
|
path: /sys
|
|
|
|
- name: lib-modules
|
|
|
|
hostPath:
|
2018-07-18 14:48:43 +00:00
|
|
|
path: /lib/modules
|