2019-02-07 09:59:26 +00:00
|
|
|
---
|
2018-07-18 14:48:43 +00:00
|
|
|
kind: Service
|
|
|
|
apiVersion: v1
|
|
|
|
metadata:
|
|
|
|
name: csi-rbdplugin-attacher
|
|
|
|
labels:
|
|
|
|
app: csi-rbdplugin-attacher
|
|
|
|
spec:
|
|
|
|
selector:
|
|
|
|
app: csi-rbdplugin-attacher
|
|
|
|
ports:
|
|
|
|
- name: dummy
|
|
|
|
port: 12345
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: StatefulSet
|
|
|
|
apiVersion: apps/v1beta1
|
|
|
|
metadata:
|
|
|
|
name: csi-rbdplugin-attacher
|
|
|
|
spec:
|
|
|
|
serviceName: "csi-rbdplugin-attacher"
|
|
|
|
replicas: 1
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: csi-rbdplugin-attacher
|
|
|
|
spec:
|
2019-01-23 15:05:15 +00:00
|
|
|
serviceAccount: rbd-csi-attacher
|
2018-07-18 14:48:43 +00:00
|
|
|
containers:
|
|
|
|
- name: csi-rbdplugin-attacher
|
2019-02-04 08:47:01 +00:00
|
|
|
image: quay.io/k8scsi/csi-attacher:v1.0.1
|
2018-07-18 14:48:43 +00:00
|
|
|
args:
|
|
|
|
- "--v=5"
|
|
|
|
- "--csi-address=$(ADDRESS)"
|
|
|
|
env:
|
|
|
|
- name: ADDRESS
|
2019-03-18 06:50:06 +00:00
|
|
|
value: unix:///csi/csi-attacher.sock
|
2018-07-18 14:48:43 +00:00
|
|
|
imagePullPolicy: "IfNotPresent"
|
|
|
|
volumeMounts:
|
|
|
|
- name: socket-dir
|
2019-03-18 06:50:06 +00:00
|
|
|
mountPath: /csi
|
2018-07-18 14:48:43 +00:00
|
|
|
volumes:
|
|
|
|
- name: socket-dir
|
|
|
|
hostPath:
|
2019-03-13 05:09:58 +00:00
|
|
|
path: /var/lib/kubelet/plugins/rbd.csi.ceph.com
|
2018-07-18 14:48:43 +00:00
|
|
|
type: DirectoryOrCreate
|