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

7번째 줄: 7번째 줄:
apiVersion: v1
apiVersion: v1
metadata:
metadata:
   name: test2-pv
   name: test-pv
spec:
spec:
   capacity:
   capacity:

2019년 9월 23일 (월) 00:35 판

1 개요

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

2 같이 보기

3 참고

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