본문 바로가기

반응형

쿠버네티스 볼륨

C276x260 쿠버네티스 볼륨(Volume) - 정적 프로비저닝(Static Provisioning) / nfs 쿠버네티스 정적 프로비저닝(Static Provisioning)nfs 서버 구성(kube-control1) - nfs 서버 구성 : https://sangchul.kr/432nfs 클라이언트 구성(kube-node1, kube-node2, kube-node3)sudo apt install -y nfs-commonshowmount -e 192.168.56.11$ showmount -e 192.168.56.11Export list for 192.168.56.11:/nfs-directory/shares-data1 192.168.56.0/24PV(Persistent Volume) 생성nfs-pv1.yaml 파일 작성vim nfs-pv1.yamlapiVersion: v1kind: PersistentVolumeme.. 더보기
C276x260 쿠버네티스 볼륨(Volume) - hostPath 볼륨 쿠버네티스 hostPath 볼륨hostPath 볼륨hostPath 볼륨 생성hostPath1.yaml 파일 작성apiVersion: apps/v1kind: ReplicaSetmetadata: name: myapp-rs-hostpathspec: replicas: 2 selector: matchLabels: app: myapp-rs-hostpath template: metadata: labels: app: myapp-rs-hostpath spec: containers: - name: web-server image: nginx:alpine volumeMounts: - name: web.. 더보기
C276x260 쿠버네티스 볼륨(Volume) - emptyDir 볼륨 쿠버네티스 볼륨(Volume)사용 사능한 볼륨 목록emptyDir임시로 데이터를 저장하는 빈 볼륨(디렉터리)gitRepo내부적으로 emptyDir 기능을 이용하여 초기에 git 리포지토리의 내용을 채워서 제공하는 볼륨. 더 이상 사용되지 않음(Deprecated)hostPath쿠버네티스 클러스터 노드(호스트)의 파일 시스템을 제공하는 볼륨네트워크 스토리지 볼륨nfs, cinder, cephfs, iscsi, glusterfs, quobyte, rbd, flexVolume, vsphereVolume, photonPersistentDisk클라우드 스토리지 볼륨gcePersistentDisk(GCE Persistent Disk), awsElasticBlockStore(AWS EBS Volume), azureD.. 더보기

728x90
반응형