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

(새 문서: ==개요== ;쿠버네티스 PV - AWS EBS 예시 <source lang='yaml'> kind: PersistentVolume apiVersion: v1 metadata: name: test2 labels: type: amazonEBS spec: capacity:...)
 
 
(사용자 2명의 중간 판 13개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
;쿠버네티스 PV - AWS EBS 예시
;쿠버네티스 PV - AWS EBS 예시
;쿠버네티스 PV - awsElasticBlockStore


<source lang='yaml'>
<syntaxhighlight lang='yaml'>
kind: PersistentVolume
kind: PersistentVolume
apiVersion: v1
apiVersion: v1
metadata:
metadata:
   name: test2
   name: test-pv
  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
</syntaxhighlight>
</source>
<syntaxhighlight lang='yaml'>
apiVersion: v1
kind: PersistentVolume
metadata:
  name: pv0001
spec:
  capacity:
    storage: 5Gi
  accessModes:
    - ReadWriteOnce
   awsElasticBlockStore:
    fsType: ext4  
    volumeID: vol-f37a03aa
</syntaxhighlight>


==같이 보기==
==같이 보기==
* [[AWS EBS]]
* [[쿠버네티스 PV]]
* [[쿠버네티스 PV]]
* [[쿠버네티스 PV - GCE PersistentDisk 예시]]


==참고==
==참고==
* https://medium.com/pablo-perez/launching-a-pod-with-an-existing-ebs-volume-mounted-in-k8s-7b5506fa7fa3
* https://medium.com/pablo-perez/launching-a-pod-with-an-existing-ebs-volume-mounted-in-k8s-7b5506fa7fa3
* https://docs.okd.io/latest/install_config/persistent_storage/persistent_storage_aws.html


[[분류: Kubernetes]]
[[분류:K8s PV]]
[[분류:AWS]]

2022년 1월 2일 (일) 20:37 기준 최신판

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 }}