K8s OpenEBS (Storage Class)

GisangLee·2024년 3월 17일
0

k8d

목록 보기
24/29

EBS 설치

k create ns openebs
k apply -f https://openebs.github.io/charts/openebs-operator-lite.yaml
k apply -f https://openebs.github.io/charts/openebs-lite-sc.yaml
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: pvc-1
spec:
  accessModes:
  - ReadWriteOnce
  resources:
    requests:
      storage: 1G
  storageClassName: "openebs-hostpath"
profile
포폴 및 이력서 : https://gisanglee.github.io/web-porfolio/

0개의 댓글