[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["難以理解","hardToUnderstand","thumb-down"],["資訊或程式碼範例有誤","incorrectInformationOrSampleCode","thumb-down"],["缺少我需要的資訊/範例","missingTheInformationSamplesINeed","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2025-09-01 (世界標準時間)。"],[],[],null,["# Using SSD persistent disks\n\n[Autopilot](/kubernetes-engine/docs/concepts/autopilot-overview) [Standard](/kubernetes-engine/docs/concepts/choose-cluster-mode)\n\n*** ** * ** ***\n\nThis page explains how to create dynamic [PersistentVolume](/kubernetes-engine/docs/concepts/persistent-volumes)\nresources that are backed by [SSD persistent disks](/compute/docs/disks).\n\nSSD persistent disks\n--------------------\n\nBy default, [dynamically provisioned PersistentVolumes](/kubernetes-engine/docs/concepts/persistent-volumes#dynamic_provisioning)\nuse the [default `StorageClass`](/kubernetes-engine/docs/concepts/persistent-volumes#storageclasses)\nand are backed by standard hard disks. If you need faster SSDs, you can use the\n`premium-rwo` storage class from the [Compute Engine persistent disk CSI Driver](/kubernetes-engine/docs/how-to/persistent-volumes/gce-pd-csi-driver)\nto provision your volumes. This can be done by setting the `storageClassName`\nfield to `premium-rwo` in your `PersistentVolumeClaim` as shown in the following\nexample: \n\n # ssd-claim.yaml\n apiVersion: v1\n kind: PersistentVolumeClaim\n metadata:\n name: my-volume\n spec:\n storageClassName: premium-rwo\n accessModes:\n - ReadWriteOnce\n resources:\n requests:\n storage: 30Gi\n\nTo create the `my-volume` PersistentVolumeClaim object, use the following\n`kubectl apply` command: \n\n kubectl apply -f ssd-claim.yaml\n\nWhen you create this `PersistentVolumeClaim` object with `kubectl apply`,\nKubernetes dynamically creates a corresponding `PersistentVolume` object."]]