2018-07-18 14:48:43 +00:00
|
|
|
kind: Service
|
|
|
|
apiVersion: v1
|
|
|
|
metadata:
|
|
|
|
name: csi-rbdplugin-provisioner
|
|
|
|
labels:
|
|
|
|
app: csi-rbdplugin-provisioner
|
|
|
|
spec:
|
|
|
|
selector:
|
|
|
|
app: csi-rbdplugin-provisioner
|
|
|
|
ports:
|
|
|
|
- name: dummy
|
|
|
|
port: 12345
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: StatefulSet
|
|
|
|
apiVersion: apps/v1beta1
|
|
|
|
metadata:
|
|
|
|
name: csi-rbdplugin-provisioner
|
|
|
|
spec:
|
|
|
|
serviceName: "csi-rbdplugin-provisioner"
|
|
|
|
replicas: 1
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: csi-rbdplugin-provisioner
|
|
|
|
spec:
|
2019-01-23 15:05:15 +00:00
|
|
|
serviceAccount: rbd-csi-provisioner
|
2018-07-18 14:48:43 +00:00
|
|
|
containers:
|
|
|
|
- name: csi-provisioner
|
2019-01-16 18:52:45 +00:00
|
|
|
image: quay.io/k8scsi/csi-provisioner:canary
|
2018-07-18 14:48:43 +00:00
|
|
|
args:
|
|
|
|
- "--csi-address=$(ADDRESS)"
|
|
|
|
- "--v=5"
|
|
|
|
env:
|
|
|
|
- name: ADDRESS
|
2019-01-23 15:05:15 +00:00
|
|
|
value: /var/lib/kubelet/plugins/csi-rbdplugin/csi-provisioner.sock
|
2018-07-18 14:48:43 +00:00
|
|
|
imagePullPolicy: "IfNotPresent"
|
|
|
|
volumeMounts:
|
|
|
|
- name: socket-dir
|
2019-01-22 16:31:55 +00:00
|
|
|
mountPath: /var/lib/kubelet/plugins/csi-rbdplugin
|
2019-01-23 15:05:15 +00:00
|
|
|
- name: csi-rbdplugin
|
|
|
|
securityContext:
|
|
|
|
privileged: true
|
|
|
|
capabilities:
|
|
|
|
add: ["SYS_ADMIN"]
|
|
|
|
image: quay.io/cephcsi/rbdplugin:v1.0.0
|
|
|
|
args :
|
|
|
|
- "--nodeid=$(NODE_ID)"
|
|
|
|
- "--endpoint=$(CSI_ENDPOINT)"
|
|
|
|
- "--v=5"
|
|
|
|
- "--drivername=csi-rbdplugin"
|
|
|
|
- "--containerized=true"
|
|
|
|
- "--metadatastorage=k8s_configmap"
|
|
|
|
env:
|
|
|
|
- name: HOST_ROOTFS
|
|
|
|
value: "/rootfs"
|
|
|
|
- name: NODE_ID
|
|
|
|
valueFrom:
|
|
|
|
fieldRef:
|
|
|
|
fieldPath: spec.nodeName
|
|
|
|
- name: POD_NAMESPACE
|
|
|
|
valueFrom:
|
|
|
|
fieldRef:
|
|
|
|
fieldPath: metadata.namespace
|
|
|
|
- name: CSI_ENDPOINT
|
|
|
|
value: unix://var/lib/kubelet/plugins/csi-rbdplugin/csi-provisioner.sock
|
|
|
|
imagePullPolicy: "IfNotPresent"
|
|
|
|
volumeMounts:
|
|
|
|
- name: socket-dir
|
|
|
|
mountPath: /var/lib/kubelet/plugins/csi-rbdplugin
|
|
|
|
- mountPath: /dev
|
|
|
|
name: host-dev
|
|
|
|
- mountPath: /rootfs
|
|
|
|
name: host-rootfs
|
|
|
|
- mountPath: /sys
|
|
|
|
name: host-sys
|
|
|
|
- mountPath: /lib/modules
|
|
|
|
name: lib-modules
|
|
|
|
readOnly: true
|
2018-07-18 14:48:43 +00:00
|
|
|
volumes:
|
2019-01-23 15:05:15 +00:00
|
|
|
- name: host-dev
|
|
|
|
hostPath:
|
|
|
|
path: /dev
|
|
|
|
- name: host-rootfs
|
|
|
|
hostPath:
|
|
|
|
path: /
|
|
|
|
- name: host-sys
|
|
|
|
hostPath:
|
|
|
|
path: /sys
|
|
|
|
- name: lib-modules
|
|
|
|
hostPath:
|
|
|
|
path: /lib/modules
|
2018-07-18 14:48:43 +00:00
|
|
|
- name: socket-dir
|
|
|
|
hostPath:
|
2019-01-22 16:31:55 +00:00
|
|
|
path: /var/lib/kubelet/plugins/csi-rbdplugin
|
2018-07-18 14:48:43 +00:00
|
|
|
type: DirectoryOrCreate
|