mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
47 lines
1.2 KiB
YAML
47 lines
1.2 KiB
YAML
|
kind: Service
|
||
|
apiVersion: v1
|
||
|
metadata:
|
||
|
name: csi-cephfsplugin-provisioner
|
||
|
labels:
|
||
|
app: csi-cephfsplugin-provisioner
|
||
|
spec:
|
||
|
selector:
|
||
|
app: csi-cephfsplugin-provisioner
|
||
|
ports:
|
||
|
- name: dummy
|
||
|
port: 12345
|
||
|
|
||
|
---
|
||
|
kind: StatefulSet
|
||
|
apiVersion: apps/v1beta1
|
||
|
metadata:
|
||
|
name: csi-cephfsplugin-provisioner
|
||
|
spec:
|
||
|
serviceName: "csi-cephfsplugin-provisioner"
|
||
|
replicas: 1
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: csi-cephfsplugin-provisioner
|
||
|
spec:
|
||
|
serviceAccount: csi-provisioner
|
||
|
containers:
|
||
|
- name: csi-provisioner
|
||
|
image: quay.io/k8scsi/csi-provisioner:v0.3.0
|
||
|
args:
|
||
|
- "--provisioner=csi-cephfsplugin"
|
||
|
- "--csi-address=$(ADDRESS)"
|
||
|
- "--v=5"
|
||
|
env:
|
||
|
- name: ADDRESS
|
||
|
value: /var/lib/kubelet/plugins/csi-cephfsplugin/csi.sock
|
||
|
imagePullPolicy: "IfNotPresent"
|
||
|
volumeMounts:
|
||
|
- name: socket-dir
|
||
|
mountPath: /var/lib/kubelet/plugins/csi-cephfsplugin
|
||
|
volumes:
|
||
|
- name: socket-dir
|
||
|
hostPath:
|
||
|
path: /var/lib/kubelet/plugins/csi-cephfsplugin
|
||
|
type: DirectoryOrCreate
|