[[["이해하기 쉬움","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-08-31(UTC)"],[],[],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."]]