今日來紀錄下,在GKE上面使用PV、PVE要如何擴展空間
在這篇論壇文件中,提到了擴展空間的細節,簡要的說:
StorageClass
新增此設定allowVolumeExpansion: true
先準備一個resizing.yaml
檔案
spec:
accessModes:
- ReadWriteOnce
dataSource: null
resources:
requests:
storage: 100Gi # 原本 50Gi
透過kubectl patch
更新PVC
kubectl patch --patch "$(cat ./resizing.yaml)" pvc-1
# 這麼做是為了方便您,要更新數個以上的 PVC
刪除pod
,擴展實際空間。
kubectl delete pod -l app=demo-pod
以上,大致如此,每個環境不一定完全相同,仍是著重於您的實作面。