ceph-csi/deploy/cephfs/kubernetes/csi-cephfsplugin.yaml

107 lines
3.5 KiB
YAML
Raw Normal View History

2018-01-09 18:59:50 +00:00
kind: DaemonSet
apiVersion: apps/v1beta2
metadata:
name: csi-cephfsplugin
2018-01-09 18:59:50 +00:00
spec:
selector:
matchLabels:
app: csi-cephfsplugin
2018-01-09 18:59:50 +00:00
template:
metadata:
labels:
app: csi-cephfsplugin
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
# 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/csi-cephfsplugin/csi.sock"
lifecycle:
preStop:
exec:
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
- name: registration-dir
mountPath: /registration
- name: csi-cephfsplugin
2018-01-09 18:59:50 +00:00
securityContext:
privileged: true
capabilities:
add: ["SYS_ADMIN"]
allowPrivilegeEscalation: true
image: quay.io/cephcsi/cephfsplugin:v1.0.0
2018-01-09 18:59:50 +00:00
args :
- "--nodeid=$(NODE_ID)"
- "--endpoint=$(CSI_ENDPOINT)"
- "--v=5"
- "--drivername=csi-cephfsplugin"
- "--metadatastorage=k8s_configmap"
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-01-22 16:31:55 +00:00
value: unix://var/lib/kubelet/plugins/csi-cephfsplugin/csi.sock
2018-01-09 18:59:50 +00:00
imagePullPolicy: "IfNotPresent"
volumeMounts:
- name: plugin-dir
2019-01-22 16:31:55 +00:00
mountPath: /var/lib/kubelet/plugins/csi-cephfsplugin
- 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"
- name: host-sys
mountPath: /sys
- name: lib-modules
mountPath: /lib/modules
2018-01-09 18:59:50 +00:00
readOnly: true
- name: host-dev
mountPath: /dev
2018-01-09 18:59:50 +00:00
volumes:
- name: plugin-dir
hostPath:
2019-01-22 16:31:55 +00:00
path: /var/lib/kubelet/plugins/csi-cephfsplugin/
2018-01-09 18:59:50 +00:00
type: DirectoryOrCreate
- name: csi-plugins-dir
hostPath:
path: /var/lib/kubelet/plugins/kubernetes.io/csi
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-sys
hostPath:
path: /sys
- name: lib-modules
hostPath:
path: /lib/modules
- name: host-dev
hostPath:
path: /dev