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

113 lines
3.6 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:
2018-07-18 14:48:43 +00:00
serviceAccount: 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
image: quay.io/k8scsi/driver-registrar:canary
2018-01-09 18:59:50 +00:00
args:
- "--v=5"
- "--csi-address=$(ADDRESS)"
- "--kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)"
2018-01-09 18:59:50 +00:00
env:
- name: ADDRESS
value: /var/lib/kubelet/plugins_registry/csi-rbdplugin/csi.sock
- name: DRIVER_REG_SOCK_PATH
value: /var/lib/kubelet/plugins_registry/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
mountPath: /var/lib/kubelet/plugins_registry/csi-rbdplugin
- 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
image: quay.io/cephcsi/rbdplugin:v1.0.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-12-19 14:26:16 +00:00
- "--containerized=true"
- "--metadatastorage=k8s_configmap"
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
2018-12-19 14:26:16 +00:00
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
2018-01-09 18:59:50 +00:00
- name: CSI_ENDPOINT
value: unix://var/lib/kubelet/plugins_registry/csi-rbdplugin/csi.sock
2018-01-09 18:59:50 +00:00
imagePullPolicy: "IfNotPresent"
volumeMounts:
- name: plugin-dir
mountPath: /var/lib/kubelet/plugins_registry/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: /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
volumes:
- name: plugin-dir
hostPath:
path: /var/lib/kubelet/plugins_registry/csi-rbdplugin
2018-01-09 18:59:50 +00:00
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: socket-dir
hostPath:
path: /var/lib/kubelet/plugins_registry/csi-rbdplugin
2018-01-09 18:59:50 +00:00
type: DirectoryOrCreate
- 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