mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
9ba501617d
Fixes: #157 Signed-off-by: Madhu Rajanna <mrajanna@redhat.com>
46 lines
1.1 KiB
YAML
46 lines
1.1 KiB
YAML
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:
|
|
serviceAccount: rbd-csi-attacher
|
|
containers:
|
|
- name: csi-rbdplugin-attacher
|
|
image: quay.io/k8scsi/csi-attacher:v1.0.1
|
|
args:
|
|
- "--v=5"
|
|
- "--csi-address=$(ADDRESS)"
|
|
env:
|
|
- name: ADDRESS
|
|
value: /var/lib/kubelet/plugins/csi-rbdplugin/csi.sock
|
|
imagePullPolicy: "IfNotPresent"
|
|
volumeMounts:
|
|
- name: socket-dir
|
|
mountPath: /var/lib/kubelet/plugins/csi-rbdplugin
|
|
volumes:
|
|
- name: socket-dir
|
|
hostPath:
|
|
path: /var/lib/kubelet/plugins/csi-rbdplugin
|
|
type: DirectoryOrCreate
|