我创建了一个使用 vsphere 作为后端存储 privider 的 pvc:
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: hello-world-logs
namespace: mbe
labels:
app: hello-world
spec:
storageClassName: vsphere
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
但是当我试图将有问题的 pvc 调整为 2Gi 时,我收到以下消息:
Ignoring the PVC: didn't find a plugin capable of expanding the volume; waiting for an external controller to process this PVC
PS:我添加allowVolumeExpansion: true
到我的存储类对象。我的 k8s 版本:1.18
我应该怎么做才能使它工作?
任何帮助都会非常感激!
谢谢你。