2022-03-30 08:06:07 +00:00
|
|
|
---
|
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: DaemonSet
|
|
|
|
metadata:
|
2022-07-26 10:32:40 +00:00
|
|
|
name: csi-nfsplugin
|
2022-03-30 08:06:07 +00:00
|
|
|
spec:
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
2022-07-26 10:32:40 +00:00
|
|
|
app: csi-nfsplugin
|
2022-03-30 08:06:07 +00:00
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
2022-07-26 10:32:40 +00:00
|
|
|
app: csi-nfsplugin
|
2022-03-30 08:06:07 +00:00
|
|
|
spec:
|
2022-07-26 10:32:40 +00:00
|
|
|
serviceAccountName: nfs-csi-nodeplugin
|
|
|
|
priorityClassName: system-node-critical
|
|
|
|
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
|
2022-03-30 08:06:07 +00:00
|
|
|
containers:
|
2022-07-26 10:32:40 +00:00
|
|
|
- name: csi-nfsplugin
|
2022-03-30 08:06:07 +00:00
|
|
|
securityContext:
|
|
|
|
privileged: true
|
2022-07-26 10:32:40 +00:00
|
|
|
capabilities:
|
|
|
|
add: ["SYS_ADMIN"]
|
|
|
|
allowPrivilegeEscalation: true
|
|
|
|
# for stable functionality replace canary with latest release version
|
|
|
|
image: quay.io/cephcsi/cephcsi:canary
|
|
|
|
args:
|
|
|
|
- "--nodeid=$(NODE_ID)"
|
|
|
|
- "--type=nfs"
|
|
|
|
- "--nodeserver=true"
|
|
|
|
- "--endpoint=$(CSI_ENDPOINT)"
|
|
|
|
- "--v=5"
|
|
|
|
- "--drivername=nfs.csi.ceph.com"
|
|
|
|
- "--enableprofiling=false"
|
2022-03-30 08:06:07 +00:00
|
|
|
env:
|
2022-07-26 10:32:40 +00:00
|
|
|
- name: POD_IP
|
|
|
|
valueFrom:
|
|
|
|
fieldRef:
|
|
|
|
fieldPath: status.podIP
|
2022-03-30 08:06:07 +00:00
|
|
|
- name: NODE_ID
|
|
|
|
valueFrom:
|
|
|
|
fieldRef:
|
|
|
|
fieldPath: spec.nodeName
|
|
|
|
- name: CSI_ENDPOINT
|
|
|
|
value: unix:///csi/csi.sock
|
2022-07-26 10:32:40 +00:00
|
|
|
imagePullPolicy: "IfNotPresent"
|
2022-03-30 08:06:07 +00:00
|
|
|
volumeMounts:
|
2022-07-26 10:32:40 +00:00
|
|
|
- name: socket-dir
|
|
|
|
mountPath: /csi
|
|
|
|
- name: mountpoint-dir
|
|
|
|
mountPath: /var/lib/kubelet/pods
|
2022-03-30 08:06:07 +00:00
|
|
|
mountPropagation: Bidirectional
|
2022-07-26 10:32:40 +00:00
|
|
|
- name: plugin-dir
|
|
|
|
mountPath: /var/lib/kubelet/plugins
|
|
|
|
mountPropagation: "Bidirectional"
|
|
|
|
- name: host-sys
|
|
|
|
mountPath: /sys
|
|
|
|
- name: etc-selinux
|
|
|
|
mountPath: /etc/selinux
|
|
|
|
readOnly: true
|
|
|
|
- name: lib-modules
|
|
|
|
mountPath: /lib/modules
|
|
|
|
readOnly: true
|
|
|
|
- name: host-dev
|
|
|
|
mountPath: /dev
|
|
|
|
- name: host-mount
|
|
|
|
mountPath: /run/mount
|
|
|
|
- name: ceph-config
|
|
|
|
mountPath: /etc/ceph/
|
|
|
|
- name: ceph-csi-config
|
|
|
|
mountPath: /etc/ceph-csi-config/
|
2024-02-14 12:23:11 +00:00
|
|
|
- name: driver-registrar
|
|
|
|
# This is necessary only for systems with SELinux, where
|
|
|
|
# non-privileged sidecar containers cannot access unix domain socket
|
|
|
|
# created by privileged CSI driver container.
|
|
|
|
securityContext:
|
|
|
|
privileged: true
|
|
|
|
allowPrivilegeEscalation: true
|
2024-07-17 07:01:52 +00:00
|
|
|
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.11.1
|
2024-02-14 12:23:11 +00:00
|
|
|
args:
|
|
|
|
- "--v=1"
|
|
|
|
- "--csi-address=/csi/csi.sock"
|
|
|
|
- "--kubelet-registration-path=/var/lib/kubelet/plugins/nfs.csi.ceph.com/csi.sock"
|
|
|
|
env:
|
|
|
|
- name: KUBE_NODE_NAME
|
|
|
|
valueFrom:
|
|
|
|
fieldRef:
|
|
|
|
fieldPath: spec.nodeName
|
|
|
|
volumeMounts:
|
|
|
|
- name: socket-dir
|
|
|
|
mountPath: /csi
|
|
|
|
- name: registration-dir
|
|
|
|
mountPath: /registration
|
2022-03-30 08:06:07 +00:00
|
|
|
volumes:
|
2022-07-26 10:32:40 +00:00
|
|
|
- name: socket-dir
|
|
|
|
hostPath:
|
|
|
|
path: /var/lib/kubelet/plugins/nfs.csi.ceph.com/
|
2022-03-30 08:06:07 +00:00
|
|
|
type: DirectoryOrCreate
|
2022-07-26 10:32:40 +00:00
|
|
|
- name: registration-dir
|
|
|
|
hostPath:
|
|
|
|
path: /var/lib/kubelet/plugins_registry/
|
2022-03-30 08:06:07 +00:00
|
|
|
type: Directory
|
2022-07-26 10:32:40 +00:00
|
|
|
- name: mountpoint-dir
|
|
|
|
hostPath:
|
|
|
|
path: /var/lib/kubelet/pods
|
|
|
|
type: DirectoryOrCreate
|
|
|
|
- name: plugin-dir
|
|
|
|
hostPath:
|
|
|
|
path: /var/lib/kubelet/plugins
|
2022-03-30 08:06:07 +00:00
|
|
|
type: Directory
|
2022-07-26 10:32:40 +00:00
|
|
|
- name: host-sys
|
|
|
|
hostPath:
|
|
|
|
path: /sys
|
|
|
|
- name: etc-selinux
|
|
|
|
hostPath:
|
|
|
|
path: /etc/selinux
|
|
|
|
- name: lib-modules
|
|
|
|
hostPath:
|
|
|
|
path: /lib/modules
|
|
|
|
- name: host-dev
|
|
|
|
hostPath:
|
|
|
|
path: /dev
|
|
|
|
- name: host-mount
|
|
|
|
hostPath:
|
|
|
|
path: /run/mount
|
|
|
|
- name: ceph-config
|
|
|
|
configMap:
|
|
|
|
name: ceph-config
|
|
|
|
- name: ceph-csi-config
|
|
|
|
configMap:
|
|
|
|
name: ceph-csi-config
|