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

38번째 줄: 38번째 줄:
==참고==
==참고==
* 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]]
[[분류: Kubernetes]]
[[분류: AWS]]
[[분류: AWS]]

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

1 개요

쿠버네티스 PV - AWS EBS 예시
쿠버네티스 PV - awsElasticBlockStore
kind: PersistentVolume
apiVersion: v1
metadata:
  name: test2-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 }}