쿠버네티스 PV - GCE PersistentDisk 예시

Jmnote (토론 | 기여)님의 2019년 9월 22일 (일) 23:38 판 (새 문서: ==개요== ;쿠버네티스 PV - GCE PersistentDisk 예시 <source lang='yaml'> apiVersion: v1 kind: PersistentVolume metadata: name: test-volume labels: failure-domain.beta....)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

쿠버네티스 PV - GCE PersistentDisk 예시
apiVersion: v1
kind: PersistentVolume
metadata:
  name: test-volume
  labels:
    failure-domain.beta.kubernetes.io/zone: us-central1-a__us-central1-b
spec:
  capacity:
    storage: 400Gi
  accessModes:
  - ReadWriteOnce
  gcePersistentDisk:
    pdName: my-data-disk
    fsType: ext4

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}