ceph-csi/deploy/rbd/kubernetes/csi-rbdplugin.yaml

123 lines
3.8 KiB
YAML
Raw Normal View History

---
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:
serviceAccount: rbd-csi-nodeplugin
2018-01-09 18:59:50 +00:00
hostNetwork: true
hostPID: true
# to use e.g. Rook orchestrated cluster, and mons' FQDN is
# resolved through k8s service, set dns policy to cluster first
dnsPolicy: ClusterFirstWithHostNet
2018-01-09 18:59:50 +00:00
containers:
- name: driver-registrar
2019-01-22 16:31:55 +00:00
image: quay.io/k8scsi/csi-node-driver-registrar:v1.0.2
2018-01-09 18:59:50 +00:00
args:
- "--v=5"
2019-01-22 16:31:55 +00:00
- "--csi-address=/csi/csi.sock"
- "--kubelet-registration-path=/var/lib/kubelet/plugins/rbd.csi.ceph.com/csi.sock"
2019-01-22 16:31:55 +00:00
lifecycle:
preStop:
exec:
command: [
"/bin/sh", "-c",
"rm -rf /registration/rbd.csi.ceph.com \
/registration/rbd.csi.ceph.com-reg.sock"
]
2018-01-09 18:59:50 +00:00
env:
- name: KUBE_NODE_NAME
valueFrom:
fieldRef:
fieldPath: spec.nodeName
volumeMounts:
2019-01-22 16:31:55 +00:00
- name: plugin-dir
mountPath: /csi
- name: registration-dir
mountPath: /registration
- name: csi-rbdplugin
2018-01-09 18:59:50 +00:00
securityContext:
privileged: true
capabilities:
add: ["SYS_ADMIN"]
allowPrivilegeEscalation: true
# for stable functionality replace canary with latest release version
image: quay.io/cephcsi/cephcsi:canary
args:
2018-01-09 18:59:50 +00:00
- "--nodeid=$(NODE_ID)"
- "--type=rbd"
2018-01-09 18:59:50 +00:00
- "--endpoint=$(CSI_ENDPOINT)"
- "--v=5"
- "--drivername=rbd.csi.ceph.com"
2018-12-19 14:26:16 +00:00
- "--containerized=true"
2018-01-09 18:59:50 +00:00
env:
- name: HOST_ROOTFS
value: "/rootfs"
2018-01-09 18:59:50 +00:00
- name: NODE_ID
valueFrom:
fieldRef:
fieldPath: spec.nodeName
- name: CSI_ENDPOINT
value: unix:///csi/csi.sock
2018-01-09 18:59:50 +00:00
imagePullPolicy: "IfNotPresent"
volumeMounts:
- name: plugin-dir
mountPath: /csi
2018-01-09 18:59:50 +00:00
- name: pods-mount-dir
mountPath: /var/lib/kubelet/pods
mountPropagation: "Bidirectional"
- name: plugin-mount-dir
mountPath: /var/lib/kubelet/plugins/kubernetes.io/csi/volumeDevices/
mountPropagation: "Bidirectional"
2018-01-09 18:59:50 +00:00
- mountPath: /dev
name: host-dev
- mountPath: /rootfs
name: host-rootfs
2018-01-09 18:59:50 +00:00
- mountPath: /sys
name: host-sys
- mountPath: /lib/modules
name: lib-modules
readOnly: true
- name: ceph-csi-config
mountPath: /etc/ceph-csi-config/
2018-01-09 18:59:50 +00:00
volumes:
- name: plugin-dir
hostPath:
path: /var/lib/kubelet/plugins/rbd.csi.ceph.com
2018-01-09 18:59:50 +00:00
type: DirectoryOrCreate
2018-11-01 01:03:03 +00:00
- name: plugin-mount-dir
hostPath:
2018-11-01 01:03:03 +00:00
path: /var/lib/kubelet/plugins/kubernetes.io/csi/volumeDevices/
type: DirectoryOrCreate
- name: registration-dir
hostPath:
path: /var/lib/kubelet/plugins_registry/
type: Directory
2018-01-09 18:59:50 +00:00
- name: pods-mount-dir
hostPath:
path: /var/lib/kubelet/pods
type: Directory
- name: host-dev
hostPath:
path: /dev
- name: host-rootfs
hostPath:
path: /
2018-01-09 18:59:50 +00:00
- name: host-sys
hostPath:
path: /sys
- name: lib-modules
hostPath:
2018-07-18 14:48:43 +00:00
path: /lib/modules
- name: ceph-csi-config
configMap:
name: ceph-csi-config