2018-07-18 14:48:43 +00:00
|
|
|
kind: Service
|
|
|
|
apiVersion: v1
|
|
|
|
metadata:
|
|
|
|
name: csi-cephfsplugin-attacher
|
|
|
|
labels:
|
|
|
|
app: csi-cephfsplugin-attacher
|
|
|
|
spec:
|
|
|
|
selector:
|
|
|
|
app: csi-cephfsplugin-attacher
|
|
|
|
ports:
|
|
|
|
- name: dummy
|
|
|
|
port: 12345
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: StatefulSet
|
|
|
|
apiVersion: apps/v1beta1
|
|
|
|
metadata:
|
|
|
|
name: csi-cephfsplugin-attacher
|
|
|
|
spec:
|
|
|
|
serviceName: "csi-cephfsplugin-attacher"
|
|
|
|
replicas: 1
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: csi-cephfsplugin-attacher
|
|
|
|
spec:
|
|
|
|
serviceAccount: csi-attacher
|
|
|
|
containers:
|
|
|
|
- name: csi-cephfsplugin-attacher
|
2018-11-29 18:16:19 +00:00
|
|
|
image: quay.io/k8scsi/csi-attacher:v1.0.0
|
2018-07-18 14:48:43 +00:00
|
|
|
args:
|
|
|
|
- "--v=5"
|
|
|
|
- "--csi-address=$(ADDRESS)"
|
|
|
|
env:
|
|
|
|
- name: ADDRESS
|
2018-12-04 20:08:11 +00:00
|
|
|
value: /var/lib/kubelet/plugins_registry/csi-cephfsplugin/csi.sock
|
2018-07-18 14:48:43 +00:00
|
|
|
imagePullPolicy: "IfNotPresent"
|
|
|
|
volumeMounts:
|
|
|
|
- name: socket-dir
|
2018-12-04 20:08:11 +00:00
|
|
|
mountPath: /var/lib/kubelet/plugins_registry/csi-cephfsplugin
|
2018-07-18 14:48:43 +00:00
|
|
|
volumes:
|
|
|
|
- name: socket-dir
|
|
|
|
hostPath:
|
2018-12-04 20:08:11 +00:00
|
|
|
path: /var/lib/kubelet/plugins_registry/csi-cephfsplugin
|
2018-07-18 14:48:43 +00:00
|
|
|
type: DirectoryOrCreate
|