mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
deploy: add resize support to NFS-provisioner deployment
Resizing is handled by the csi-resizer container, which needs to run in the provisioner Pod. In addition to the container, the StorageClass also needs to allow volume expansion. Signed-off-by: Niels de Vos <ndevos@redhat.com>
This commit is contained in:
parent
36e51402cb
commit
891a840aa6
@ -54,6 +54,22 @@ spec:
|
||||
volumeMounts:
|
||||
- name: socket-dir
|
||||
mountPath: /csi
|
||||
- name: csi-resizer
|
||||
image: registry.k8s.io/sig-storage/csi-resizer:v1.4.0
|
||||
args:
|
||||
- "--csi-address=$(ADDRESS)"
|
||||
- "--v=5"
|
||||
- "--timeout=150s"
|
||||
- "--leader-election"
|
||||
- "--retry-interval-start=500ms"
|
||||
- "--handle-volume-inuse-error=false"
|
||||
env:
|
||||
- name: ADDRESS
|
||||
value: unix:///csi/csi-provisioner.sock
|
||||
imagePullPolicy: "IfNotPresent"
|
||||
volumeMounts:
|
||||
- name: socket-dir
|
||||
mountPath: /csi
|
||||
- name: csi-nfsplugin
|
||||
# for stable functionality replace canary with latest release version
|
||||
image: quay.io/cephcsi/cephcsi:canary
|
||||
|
@ -46,4 +46,4 @@ parameters:
|
||||
volumeNamePrefix: nfs-export-
|
||||
|
||||
reclaimPolicy: Delete
|
||||
allowVolumeExpansion: false
|
||||
allowVolumeExpansion: true
|
||||
|
Loading…
Reference in New Issue
Block a user