"쿠버네티스 PV - AWS EBS 예시"의 두 판 사이의 차이

(새 문서: ==개요== ;쿠버네티스 PV - AWS EBS 예시 <source lang='yaml'> kind: PersistentVolume apiVersion: v1 metadata: name: test2 labels: type: amazonEBS spec: capacity:...)
 
7번째 줄: 7번째 줄:
metadata:
metadata:
   name: test2
   name: test2
  labels:
    type: amazonEBS
spec:
spec:
   capacity:
   capacity:
     storage: 1Gi
     storage: 1Gi
accessModes:
  accessModes:
  - ReadWriteOnce
    - ReadWriteOnce
awsElasticBlockStore:
  awsElasticBlockStore:
  volumeID: vol-0b402cb854e070fad
    volumeID: vol-0b402cb854e070fad
  fsType: ext4
    #fsType: ext4
</source>
</source>



2019년 9월 22일 (일) 23:30 판

1 개요

쿠버네티스 PV - AWS EBS 예시
kind: PersistentVolume
apiVersion: v1
metadata:
  name: test2
spec:
  capacity:
    storage: 1Gi
  accessModes:
    - ReadWriteOnce
  awsElasticBlockStore:
    volumeID: vol-0b402cb854e070fad
    #fsType: ext4

2 같이 보기

3 참고

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