2018-01-09 18:59:50 +00:00
|
|
|
# This YAML defines all API objects to create RBAC roles for csi node plugin.
|
|
|
|
|
|
|
|
apiVersion: v1
|
|
|
|
kind: ServiceAccount
|
|
|
|
metadata:
|
2018-03-18 14:08:39 +00:00
|
|
|
name: csi-cephfsplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: ClusterRole
|
|
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
|
|
metadata:
|
2018-03-18 14:08:39 +00:00
|
|
|
name: csi-cephfsplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
rules:
|
2018-02-06 18:30:05 +00:00
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["nodes"]
|
|
|
|
verbs: ["get", "list", "update"]
|
2018-03-18 14:08:39 +00:00
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["namespaces"]
|
|
|
|
verbs: ["get", "list"]
|
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["persistentvolumes"]
|
|
|
|
verbs: ["get", "list", "watch", "update"]
|
|
|
|
- apiGroups: ["storage.k8s.io"]
|
|
|
|
resources: ["volumeattachments"]
|
|
|
|
verbs: ["get", "list", "watch", "update"]
|
2018-01-09 18:59:50 +00:00
|
|
|
---
|
|
|
|
kind: ClusterRoleBinding
|
|
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
|
|
metadata:
|
2018-03-18 14:08:39 +00:00
|
|
|
name: csi-cephfsplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
subjects:
|
|
|
|
- kind: ServiceAccount
|
2018-03-18 14:08:39 +00:00
|
|
|
name: csi-cephfsplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
namespace: default
|
|
|
|
roleRef:
|
|
|
|
kind: ClusterRole
|
2018-03-18 14:08:39 +00:00
|
|
|
name: csi-cephfsplugin
|
|
|
|
apiGroup: rbac.authorization.k8s.io
|
2018-01-09 18:59:50 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
# This YAML file contains driver-registrar & csi driver nodeplugin API objects,
|
2018-03-05 11:59:47 +00:00
|
|
|
# which are necessary to run csi nodeplugin for cephfs.
|
2018-01-09 18:59:50 +00:00
|
|
|
|
|
|
|
kind: DaemonSet
|
|
|
|
apiVersion: apps/v1beta2
|
|
|
|
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:
|
2018-03-18 14:08:39 +00:00
|
|
|
serviceAccount: csi-cephfsplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
hostNetwork: true
|
|
|
|
containers:
|
|
|
|
- name: driver-registrar
|
2018-03-13 09:25:50 +00:00
|
|
|
image: quay.io/k8scsi/driver-registrar:v0.2.0
|
2018-01-09 18:59:50 +00:00
|
|
|
args:
|
|
|
|
- "--v=5"
|
|
|
|
- "--csi-address=$(ADDRESS)"
|
|
|
|
env:
|
|
|
|
- name: ADDRESS
|
2018-03-18 14:08:39 +00:00
|
|
|
value: /var/lib/kubelet/plugins/csi-cephfsplugin/csi.sock
|
2018-01-09 18:59:50 +00:00
|
|
|
- name: KUBE_NODE_NAME
|
|
|
|
valueFrom:
|
|
|
|
fieldRef:
|
|
|
|
fieldPath: spec.nodeName
|
|
|
|
volumeMounts:
|
|
|
|
- name: socket-dir
|
2018-03-18 14:08:39 +00:00
|
|
|
mountPath: /var/lib/kubelet/plugins/csi-cephfsplugin
|
|
|
|
- name: csi-cephfsplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
securityContext:
|
|
|
|
privileged: true
|
|
|
|
capabilities:
|
|
|
|
add: ["SYS_ADMIN"]
|
|
|
|
allowPrivilegeEscalation: true
|
2018-03-09 16:03:31 +00:00
|
|
|
image: cephfsplugin:latest
|
2018-01-09 18:59:50 +00:00
|
|
|
args :
|
|
|
|
- "--nodeid=$(NODE_ID)"
|
|
|
|
- "--endpoint=$(CSI_ENDPOINT)"
|
|
|
|
- "--v=5"
|
2018-03-18 14:08:39 +00:00
|
|
|
- "--drivername=csi-cephfsplugin"
|
2018-01-09 18:59:50 +00:00
|
|
|
env:
|
|
|
|
- name: NODE_ID
|
|
|
|
valueFrom:
|
|
|
|
fieldRef:
|
|
|
|
fieldPath: spec.nodeName
|
|
|
|
- name: CSI_ENDPOINT
|
2018-03-18 14:08:39 +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
|
2018-03-18 14:08:39 +00:00
|
|
|
mountPath: /var/lib/kubelet/plugins/csi-cephfsplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
- name: pods-mount-dir
|
|
|
|
mountPath: /var/lib/kubelet/pods
|
|
|
|
mountPropagation: "Bidirectional"
|
|
|
|
- mountPath: /sys
|
|
|
|
name: host-sys
|
|
|
|
- mountPath: /lib/modules
|
|
|
|
name: lib-modules
|
|
|
|
readOnly: true
|
|
|
|
volumes:
|
|
|
|
- name: plugin-dir
|
|
|
|
hostPath:
|
2018-03-18 14:08:39 +00:00
|
|
|
path: /var/lib/kubelet/plugins/csi-cephfsplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
type: DirectoryOrCreate
|
|
|
|
- name: pods-mount-dir
|
|
|
|
hostPath:
|
|
|
|
path: /var/lib/kubelet/pods
|
|
|
|
type: Directory
|
|
|
|
- name: socket-dir
|
|
|
|
hostPath:
|
2018-03-18 14:08:39 +00:00
|
|
|
path: /var/lib/kubelet/plugins/csi-cephfsplugin
|
2018-01-09 18:59:50 +00:00
|
|
|
type: DirectoryOrCreate
|
|
|
|
- name: host-sys
|
|
|
|
hostPath:
|
|
|
|
path: /sys
|
|
|
|
- name: lib-modules
|
|
|
|
hostPath:
|
|
|
|
path: /lib/modules
|