2019-02-07 09:59:26 +00:00
|
|
|
---
|
2018-01-09 18:59:50 +00:00
|
|
|
kind: DaemonSet
|
2019-06-19 09:05:44 +00:00
|
|
|
apiVersion: apps/v1
|
2018-01-09 18:59:50 +00:00
|
|
|
metadata:
|
2018-03-18 14:08:39 +00:00
|
|
|
name: csi-cephfsplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
spec:
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
2018-03-18 14:08:39 +00:00
|
|
|
app: csi-cephfsplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
2018-03-18 14:08:39 +00:00
|
|
|
app: csi-cephfsplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
spec:
|
2019-01-23 15:05:15 +00:00
|
|
|
serviceAccount: cephfs-csi-nodeplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
hostNetwork: true
|
2018-09-19 14:37:58 +00:00
|
|
|
# to use e.g. Rook orchestrated cluster, and mons' FQDN is
|
|
|
|
# resolved through k8s service, set dns policy to cluster first
|
2019-02-07 09:59:26 +00:00
|
|
|
dnsPolicy: ClusterFirstWithHostNet
|
2018-01-09 18:59:50 +00:00
|
|
|
containers:
|
|
|
|
- name: driver-registrar
|
2019-06-02 09:31:34 +00:00
|
|
|
image: quay.io/k8scsi/csi-node-driver-registrar:v1.1.0
|
2018-01-09 18:59:50 +00:00
|
|
|
args:
|
|
|
|
- "--v=5"
|
2019-01-22 16:31:55 +00:00
|
|
|
- "--csi-address=/csi/csi.sock"
|
2019-03-13 05:09:58 +00:00
|
|
|
- "--kubelet-registration-path=/var/lib/kubelet/plugins/cephfs.csi.ceph.com/csi.sock"
|
2019-01-22 16:31:55 +00:00
|
|
|
lifecycle:
|
|
|
|
preStop:
|
|
|
|
exec:
|
2019-02-07 09:59:26 +00:00
|
|
|
command: [
|
|
|
|
"/bin/sh", "-c",
|
|
|
|
"rm -rf /registration/csi-cephfsplugin \
|
|
|
|
/registration/csi-cephfsplugin-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
|
2018-09-10 19:16:17 +00:00
|
|
|
- name: registration-dir
|
|
|
|
mountPath: /registration
|
2018-03-18 14:08:39 +00:00
|
|
|
- name: csi-cephfsplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
securityContext:
|
|
|
|
privileged: true
|
|
|
|
capabilities:
|
|
|
|
add: ["SYS_ADMIN"]
|
|
|
|
allowPrivilegeEscalation: true
|
2019-05-24 11:03:33 +00:00
|
|
|
# for stable functionality replace canary with latest release version
|
|
|
|
image: quay.io/cephcsi/cephcsi:canary
|
2019-02-07 09:59:26 +00:00
|
|
|
args:
|
2018-01-09 18:59:50 +00:00
|
|
|
- "--nodeid=$(NODE_ID)"
|
2019-05-24 11:03:33 +00:00
|
|
|
- "--type=cephfs"
|
2018-01-09 18:59:50 +00:00
|
|
|
- "--endpoint=$(CSI_ENDPOINT)"
|
|
|
|
- "--v=5"
|
2019-03-13 05:09:58 +00:00
|
|
|
- "--drivername=cephfs.csi.ceph.com"
|
2019-01-07 14:21:35 +00:00
|
|
|
- "--metadatastorage=k8s_configmap"
|
2019-03-29 08:12:09 +00:00
|
|
|
- "--mountcachedir=/mount-cache-dir"
|
2018-01-09 18:59:50 +00:00
|
|
|
env:
|
|
|
|
- name: NODE_ID
|
|
|
|
valueFrom:
|
|
|
|
fieldRef:
|
|
|
|
fieldPath: spec.nodeName
|
2018-12-19 14:31:26 +00:00
|
|
|
- name: POD_NAMESPACE
|
|
|
|
valueFrom:
|
|
|
|
fieldRef:
|
|
|
|
fieldPath: metadata.namespace
|
2018-01-09 18:59:50 +00:00
|
|
|
- name: CSI_ENDPOINT
|
2019-03-18 06:50:06 +00:00
|
|
|
value: unix:///csi/csi.sock
|
2018-01-09 18:59:50 +00:00
|
|
|
imagePullPolicy: "IfNotPresent"
|
|
|
|
volumeMounts:
|
2019-03-29 08:12:09 +00:00
|
|
|
- name: mount-cache-dir
|
|
|
|
mountPath: /mount-cache-dir
|
2018-01-09 18:59:50 +00:00
|
|
|
- name: plugin-dir
|
2019-03-18 06:50:06 +00:00
|
|
|
mountPath: /csi
|
2018-12-14 20:16:11 +00:00
|
|
|
- name: csi-plugins-dir
|
|
|
|
mountPath: /var/lib/kubelet/plugins/kubernetes.io/csi
|
|
|
|
mountPropagation: "Bidirectional"
|
2018-01-09 18:59:50 +00:00
|
|
|
- name: pods-mount-dir
|
|
|
|
mountPath: /var/lib/kubelet/pods
|
|
|
|
mountPropagation: "Bidirectional"
|
2018-12-14 20:06:42 +00:00
|
|
|
- name: host-sys
|
|
|
|
mountPath: /sys
|
2018-03-22 15:51:39 +00:00
|
|
|
- name: lib-modules
|
|
|
|
mountPath: /lib/modules
|
2018-01-09 18:59:50 +00:00
|
|
|
readOnly: true
|
2018-03-22 15:51:39 +00:00
|
|
|
- name: host-dev
|
|
|
|
mountPath: /dev
|
2019-05-28 19:03:18 +00:00
|
|
|
- name: ceph-csi-config
|
|
|
|
mountPath: /etc/ceph-csi-config/
|
2018-01-09 18:59:50 +00:00
|
|
|
volumes:
|
2019-03-29 08:12:09 +00:00
|
|
|
- name: mount-cache-dir
|
|
|
|
emptyDir: {}
|
2018-01-09 18:59:50 +00:00
|
|
|
- name: plugin-dir
|
|
|
|
hostPath:
|
2019-03-13 05:09:58 +00:00
|
|
|
path: /var/lib/kubelet/plugins/cephfs.csi.ceph.com/
|
2018-01-09 18:59:50 +00:00
|
|
|
type: DirectoryOrCreate
|
2018-12-14 20:16:11 +00:00
|
|
|
- name: csi-plugins-dir
|
|
|
|
hostPath:
|
|
|
|
path: /var/lib/kubelet/plugins/kubernetes.io/csi
|
|
|
|
type: DirectoryOrCreate
|
2018-09-10 19:16:17 +00:00
|
|
|
- name: registration-dir
|
|
|
|
hostPath:
|
2018-12-04 20:08:11 +00:00
|
|
|
path: /var/lib/kubelet/plugins_registry/
|
2018-09-10 19:16:17 +00:00
|
|
|
type: Directory
|
2018-01-09 18:59:50 +00:00
|
|
|
- name: pods-mount-dir
|
|
|
|
hostPath:
|
|
|
|
path: /var/lib/kubelet/pods
|
|
|
|
type: Directory
|
|
|
|
- name: host-sys
|
|
|
|
hostPath:
|
|
|
|
path: /sys
|
|
|
|
- name: lib-modules
|
|
|
|
hostPath:
|
|
|
|
path: /lib/modules
|
2018-03-22 15:51:39 +00:00
|
|
|
- name: host-dev
|
|
|
|
hostPath:
|
|
|
|
path: /dev
|
2019-05-28 19:03:18 +00:00
|
|
|
- name: ceph-csi-config
|
|
|
|
configMap:
|
|
|
|
name: ceph-csi-config
|